diff --git a/infrastructure/loadtest/.env.template b/infrastructure/loadtest/.env.template new file mode 100644 index 0000000..4907233 --- /dev/null +++ b/infrastructure/loadtest/.env.template @@ -0,0 +1 @@ +BACKEND_ADDRESS=http://backend:8080 diff --git a/services/loadtest/.dockerignore b/services/loadtest/.dockerignore new file mode 100644 index 0000000..5e1afeb --- /dev/null +++ b/services/loadtest/.dockerignore @@ -0,0 +1,38 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Code coverage profiles and other test artifacts +*.out +coverage.* +*.coverprofile +profile.cov + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env + +# Editor/IDE +# .idea/ +# .vscode/ + +# App binary +main + +# Gitignore +.gitignore diff --git a/services/loadtest/.env.template b/services/loadtest/.env.template new file mode 100644 index 0000000..0ca15de --- /dev/null +++ b/services/loadtest/.env.template @@ -0,0 +1,4 @@ +# Change all vars before going to production and remove all comments (!) +# Below all environment variables and default values + +BACKEND_ADDRESS=http://localhost:8080 diff --git a/services/loadtest/.gitignore b/services/loadtest/.gitignore new file mode 100644 index 0000000..f9f041d --- /dev/null +++ b/services/loadtest/.gitignore @@ -0,0 +1,35 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Code coverage profiles and other test artifacts +*.out +coverage.* +*.coverprofile +profile.cov + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env + +# Editor/IDE +# .idea/ +# .vscode/ + +# App binary +main diff --git a/services/loadtest/Dockerfile b/services/loadtest/Dockerfile new file mode 100644 index 0000000..6bc84e1 --- /dev/null +++ b/services/loadtest/Dockerfile @@ -0,0 +1,28 @@ +ARG GOARCH=amd64 + +# Stage 1: Build go binary +FROM docker.io/golang:1.24-alpine AS build + +WORKDIR /build + +COPY . . + +RUN go mod download + +ARG GOARCH + +RUN CGO_ENABLED=0 GOARCH=$GOARCH go build -o loadtest + + +# Stage 2: Run go binary +FROM docker.io/alpine:3.22 + +WORKDIR /app + +COPY --from=build /build/loadtest . + +COPY . . + +EXPOSE 5001 + +CMD [ "./loadtest", "--port", "5001" ] diff --git a/services/loadtest/README.md b/services/loadtest/README.md new file mode 100644 index 0000000..3bd76b4 --- /dev/null +++ b/services/loadtest/README.md @@ -0,0 +1,68 @@ +# AdNova Loadtest + +## Prerequisites + +Ensure you have the following installed on your system: + +- [Go](https://go.dev/) (1.24 recommended) +- [Docker](https://www.docker.com/) (for containerized setup, latest version recommended) + +## Basic setup + +### Installation + +#### Clone the project + +#### Go to the project directory + +```bash +cd AdNova/services/loadtest +``` + +#### Customize environment + +```bash +cp .env.template .env +``` + +And setup env vars according to your needs. + +#### Install dependencies + +```bash +go mod download +``` + +#### Running + +```bash +go run main.go +``` + +## Containerized setup + +### Clone the project + +### Go to the project directory + +```bash +cd AdNova/services/loadtest +``` + +### Build docker image + +```bash +docker build -t adnova-loadtest . +``` + +### Customize environment + +Customize environment with `docker run` command, for all environment vars and default values see [.env.template](./.env.template). + +### Run docker image + +```bash +docker run -p 5001:5001 --name adnova-loadtest adnova-loadtest +``` + +Loadtest will be available on [127.0.0.1:5001](http://127.0.0.1:5001). diff --git a/services/loadtest/go.mod b/services/loadtest/go.mod new file mode 100644 index 0000000..cedc1f8 --- /dev/null +++ b/services/loadtest/go.mod @@ -0,0 +1,8 @@ +module loadtest + +go 1.24.5 + +require ( + github.com/gorilla/mux v1.8.1 + github.com/gorilla/websocket v1.5.3 +) diff --git a/services/loadtest/go.sum b/services/loadtest/go.sum new file mode 100644 index 0000000..7ed87b7 --- /dev/null +++ b/services/loadtest/go.sum @@ -0,0 +1,4 @@ +github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= +github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= +github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg= +github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= diff --git a/services/loadtest/main.go b/services/loadtest/main.go new file mode 100644 index 0000000..fa922d3 --- /dev/null +++ b/services/loadtest/main.go @@ -0,0 +1,788 @@ +package main + +import ( + "bytes" + "context" + "encoding/json" + "flag" + "fmt" + "html/template" + "io" + "log" + "math/rand" + "net/http" + "os" + "strings" + "sync" + "time" + + "github.com/gorilla/mux" + "github.com/gorilla/websocket" +) + +// --- Mock Data Structures --- + +type Client struct { + ClientID string `json:"client_id"` + Login string `json:"login"` + Age int `json:"age"` + Location string `json:"location"` + Gender string `json:"gender"` +} + +type Advertiser struct { + AdvertiserID string `json:"advertiser_id"` + Name string `json:"name"` +} + +type MLScore struct { + AdvertiserId string `json:"advertiser_id"` + ClientID string `json:"client_id"` + Score int64 `json:"score"` +} + +type Campaign struct { + Targeting struct { + Gender string `json:"gender,omitempty"` + AgeFrom int `json:"age_from,omitempty"` + AgeTo int `json:"age_to,omitempty"` + Location string `json:"location,omitempty"` + } `json:"targeting"` + AdTitle string `json:"ad_title"` + AdText string `json:"ad_text"` + ImpressionsLimit int `json:"impressions_limit"` + ClicksLimit int `json:"clicks_limit"` + CostPerImpression float64 `json:"cost_per_impression"` + CostPerClick float64 `json:"cost_per_click"` + StartDate int64 `json:"start_date"` + EndDate int64 `json:"end_date"` +} + +type CampaignFileEntry struct { + AdvertiserID string `json:"advertiser_id"` + CampaignData Campaign `json:"campaign_data"` +} + +// --- Mock data filenames --- + +const clientsMockDataFile = "./mocks/bulk_clients.json" +const advertisersMockDataFile = "./mocks/bulk_advertisers.json" +const campaignsMockDataFile = "./mocks/campaigns.json" +const mlscoresMockDataFile = "./mocks/ml_scores.json" + +// --- In-Memory Data Store --- + +var ( + loadedClientIDs []string + dataMutex = &sync.RWMutex{} + backendAddress string +) + +// --- Mock Data Loading and Posting Logic --- + +func loadInitialMockIDs() { + dataMutex.Lock() + defer dataMutex.Unlock() + + loadedClientIDs = nil + + log.Println("Loading client IDs from local files...") + + readFile := func(filename string) ([]byte, error) { + content, err := os.ReadFile(filename) + if err != nil { + return nil, fmt.Errorf("error reading %s: %w", filename, err) + } + return content, nil + } + + clientsContent, err := readFile(clientsMockDataFile) + if err != nil { + log.Printf("Warning: Could not read %s for initial ID load: %v", clientsMockDataFile, err) + } else { + var tempClients []Client + if err := json.Unmarshal(clientsContent, &tempClients); err != nil { + log.Printf("Warning: Error unmarshaling %s for initial ID load: %v", clientsMockDataFile, err) + } else { + for _, c := range tempClients { + loadedClientIDs = append(loadedClientIDs, c.ClientID) + } + log.Printf("Loaded %d client IDs for stress testing.", len(loadedClientIDs)) + } + } +} + +func loadAndPostMocks() error { + log.Println("Attempting to load mock data from files and post to external backend:", backendAddress) + + readFile := func(filename string) ([]byte, error) { + content, err := os.ReadFile(filename) + if err != nil { + return nil, fmt.Errorf("error reading %s: %w", filename, err) + } + return content, nil + } + + postJSON := func(url string, data interface{}) error { + jsonData, err := json.Marshal(data) + if err != nil { + return fmt.Errorf("failed to marshal JSON for %s: %w", url, err) + } + req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonData)) + if err != nil { + return fmt.Errorf("failed to create request for %s: %w", url, err) + } + req.Header.Set("Content-Type", "application/json") + + client := &http.Client{ + Timeout: 60 * time.Second, + } + + resp, err := client.Do(req) + if err != nil { + return fmt.Errorf("failed to POST to %s: %w", url, err) + } + defer resp.Body.Close() + + if resp.StatusCode >= 400 { + body, _ := io.ReadAll(resp.Body) + return fmt.Errorf("POST to %s failed with status %d: %s", url, resp.StatusCode, string(body)) + } + return nil + } + + // 1. Load bulk_clients.json + clientsContent, err := readFile(clientsMockDataFile) + if err != nil { + return err + } + var tempClients []Client + if err := json.Unmarshal(clientsContent, &tempClients); err != nil { + return fmt.Errorf("error unmarshaling %s: %w", clientsMockDataFile, err) + } + if err := postJSON(fmt.Sprintf("%s/clients/bulk", backendAddress), tempClients); err != nil { + return fmt.Errorf("error posting bulk clients: %w", err) + } + log.Printf("Successfully posted %d clients to %s/clients/bulk", len(tempClients), backendAddress) + + // 2. Load bulk_advertisers.json + advertisersContent, err := readFile(advertisersMockDataFile) + if err != nil { + return err + } + var tempAdvertisers []Advertiser + if err := json.Unmarshal(advertisersContent, &tempAdvertisers); err != nil { + return fmt.Errorf("error unmarshaling %s: %w", advertisersMockDataFile, err) + } + if err := postJSON(fmt.Sprintf("%s/advertisers/bulk", backendAddress), tempAdvertisers); err != nil { + return fmt.Errorf("error posting bulk advertisers: %w", err) + } + log.Printf("Successfully posted %d advertisers to %s/advertisers/bulk", len(tempAdvertisers), backendAddress) + + // 3. Load campaigns.json + campaignsContent, err := readFile(campaignsMockDataFile) + if err != nil { + return err + } + var campaignDataList []CampaignFileEntry + if err := json.Unmarshal(campaignsContent, &campaignDataList); err != nil { + return fmt.Errorf("error unmarshaling %s: %w", campaignsMockDataFile, err) + } + + for i, entry := range campaignDataList { + if err := postJSON(fmt.Sprintf("%s/advertisers/%s/campaigns", backendAddress, entry.AdvertiserID), entry.CampaignData); err != nil { + log.Printf("Warning: Failed to post campaign for advertiser %s (entry %d): %v", entry.AdvertiserID, i, err) + } + } + log.Printf("Attempted to post campaigns for %d advertisers from %s", len(campaignDataList), campaignsMockDataFile) + + // 4. Load ml_scores.json + mlScoresContent, err := readFile(mlscoresMockDataFile) + if err != nil { + return err + } + var tempMLScores []MLScore + if err := json.Unmarshal(mlScoresContent, &tempMLScores); err != nil { + return fmt.Errorf("error unmarshaling %s: %w", mlscoresMockDataFile, err) + } + for i, score := range tempMLScores { + if err := postJSON(fmt.Sprintf("%s/ml-scores", backendAddress), score); err != nil { + log.Printf("Warning: Failed to post ML score %d (client %s): %v", i, score.ClientID, err) + } + } + log.Printf("Attempted to post %d ML scores one by one to %s/ml-scores", len(tempMLScores), backendAddress) + + log.Println("Mock data loading and posting process complete.") + return nil +} + +// --- WebSocket Hub --- + +var upgrader = websocket.Upgrader{ + ReadBufferSize: 1024, + WriteBufferSize: 1024, + CheckOrigin: func(r *http.Request) bool { return true }, +} + +type Hub struct { + clients map[*websocket.Conn]bool + broadcast chan []byte + register chan *websocket.Conn + unregister chan *websocket.Conn + mutex sync.Mutex +} + +func newHub() *Hub { + return &Hub{ + broadcast: make(chan []byte), + register: make(chan *websocket.Conn), + unregister: make(chan *websocket.Conn), + clients: make(map[*websocket.Conn]bool), + } +} + +func (h *Hub) run() { + for { + select { + case client := <-h.register: + h.mutex.Lock() + h.clients[client] = true + h.mutex.Unlock() + case client := <-h.unregister: + h.mutex.Lock() + if _, ok := h.clients[client]; ok { + delete(h.clients, client) + client.Close() + } + h.mutex.Unlock() + case message := <-h.broadcast: + h.mutex.Lock() + for client := range h.clients { + err := client.WriteMessage(websocket.TextMessage, message) + if err != nil { + log.Printf("error: %v", err) + client.Close() + delete(h.clients, client) + } + } + h.mutex.Unlock() + } + } +} + +var hub = newHub() + +// --- Load Generator --- + +type TestConfig struct { + BackendAddress string `json:"backendAddress"` + MaxRPS int `json:"maxRps"` + LoadProfile string `json:"loadProfile"` + FromRPS int `json:"fromRPS"` + ToRPS int `json:"toRPS"` + StepRPS int `json:"stepRps"` + StepDuration int `json:"stepDuration"` + OnceCount int `json:"onceCount"` +} + +type RequestResult struct { + StatusCode int + Latency time.Duration + Error bool +} + +type TestStats struct { + RPS int `json:"rps"` + Latency float64 `json:"latency"` + ErrorRate float64 `json:"errorRate"` + TotalReqs int64 `json:"totalReqs"` + TotalErrors int64 `json:"totalErrors"` + IsRunning bool `json:"isRunning"` +} + +type TestManager struct { + config TestConfig + isRunning bool + cancelFunc context.CancelFunc + mutex sync.Mutex + httpClient *http.Client +} + +var testManager = TestManager{ + httpClient: &http.Client{ + Timeout: 10 * time.Second, + Transport: &http.Transport{ + MaxIdleConns: 1000, + MaxIdleConnsPerHost: 1000, + IdleConnTimeout: 90 * time.Second, + }, + }, +} + +func (tm *TestManager) startTest(config TestConfig) { + tm.mutex.Lock() + if tm.isRunning { + tm.mutex.Unlock() + log.Println("Test already running.") + return + } + + tm.config = config + tm.isRunning = true + ctx, cancel := context.WithCancel(context.Background()) + tm.cancelFunc = cancel + tm.mutex.Unlock() + + go tm.runLoadGenerator(ctx) +} + +func (tm *TestManager) stopTest() { + tm.mutex.Lock() + if tm.isRunning && tm.cancelFunc != nil { + tm.cancelFunc() + tm.isRunning = false + } + tm.mutex.Unlock() +} + +func (tm *TestManager) runLoadGenerator(ctx context.Context) { + log.Printf("Starting test with config: %+v\n", tm.config) + + results := make(chan RequestResult, 10000) + var wg sync.WaitGroup + + var totalReqs, totalErrors int64 + go func() { + ticker := time.NewTicker(1 * time.Second) + defer ticker.Stop() + var reqsInSecond int + var totalLatency time.Duration + var errorsInSecond int + + for { + select { + case <-ctx.Done(): + return + case <-ticker.C: + avgLatency := 0.0 + if reqsInSecond > 0 { + avgLatency = float64(totalLatency.Milliseconds()) / float64(reqsInSecond) + } + errorRate := 0.0 + if reqsInSecond > 0 { + errorRate = float64(errorsInSecond) / float64(reqsInSecond) * 100 + } + + stats := TestStats{ + RPS: reqsInSecond, + Latency: avgLatency, + ErrorRate: errorRate, + TotalReqs: totalReqs, + TotalErrors: totalErrors, + IsRunning: true, + } + jsonStats, _ := json.Marshal(stats) + hub.broadcast <- jsonStats + + reqsInSecond = 0 + totalLatency = 0 + errorsInSecond = 0 + case res, ok := <-results: + if !ok { + return + } + totalReqs++ + reqsInSecond++ + totalLatency += res.Latency + if res.Error { + totalErrors++ + errorsInSecond++ + } + } + } + }() + + numWorkers := 1000 + if tm.config.MaxRPS > 0 && tm.config.MaxRPS < numWorkers { + numWorkers = tm.config.MaxRPS + } + + jobs := make(chan string, 10000) + + for i := 0; i < numWorkers; i++ { + wg.Add(1) + go func() { + defer wg.Done() + for { + select { + case <-ctx.Done(): + return + case url, ok := <-jobs: + if !ok { + return + } + start := time.Now() + req, _ := http.NewRequestWithContext(ctx, "GET", url, nil) + resp, err := tm.httpClient.Do(req) + latency := time.Since(start) + + if err != nil { + results <- RequestResult{StatusCode: 0, Latency: latency, Error: true} + continue + } + + results <- RequestResult{StatusCode: resp.StatusCode, Latency: latency, Error: resp.StatusCode >= 500} + resp.Body.Close() + } + } + }() + } + + go func() { + defer close(jobs) + + dataMutex.RLock() + if len(loadedClientIDs) == 0 { + log.Println("No client IDs loaded for stress test.") + dataMutex.RUnlock() + return + } + clientIDsForTest := make([]string, len(loadedClientIDs)) + copy(clientIDsForTest, loadedClientIDs) + dataMutex.RUnlock() + + log.Printf("Stress testing with %d client IDs.", len(clientIDsForTest)) + + switch tm.config.LoadProfile { + case "const": + ticker := time.NewTicker(time.Second / time.Duration(tm.config.MaxRPS)) + defer ticker.Stop() + for { + select { + case <-ctx.Done(): + return + case <-ticker.C: + clientID := clientIDsForTest[rand.Intn(len(clientIDsForTest))] + url := fmt.Sprintf("%s/ads?client_id=%s", tm.config.BackendAddress, clientID) + jobs <- url + } + } + case "line": + duration := 10 * time.Second + startTime := time.Now() + for { + select { + case <-ctx.Done(): + return + default: + elapsed := time.Since(startTime) + if elapsed >= duration { + elapsed = duration + } + + progress := float64(elapsed) / float64(duration) + currentRPS := float64(tm.config.FromRPS) + (float64(tm.config.ToRPS-tm.config.FromRPS) * progress) + + if currentRPS <= 0 { + currentRPS = 1 + } + + sleepDuration := time.Second / time.Duration(currentRPS) + time.Sleep(sleepDuration) + + clientID := clientIDsForTest[rand.Intn(len(clientIDsForTest))] + url := fmt.Sprintf("%s/ads?client_id=%s", tm.config.BackendAddress, clientID) + jobs <- url + + if elapsed >= duration { + constSleepDuration := time.Second / time.Duration(tm.config.ToRPS) + for { + select { + case <-ctx.Done(): + return + default: + time.Sleep(constSleepDuration) + clientID := clientIDsForTest[rand.Intn(len(clientIDsForTest))] + url := fmt.Sprintf("%s/ads?client_id=%s", tm.config.BackendAddress, clientID) + jobs <- url + } + } + } + } + } + case "step": + currentRPS := tm.config.FromRPS + for currentRPS <= tm.config.ToRPS { + log.Printf("Step load: %d RPS for %d seconds", currentRPS, tm.config.StepDuration) + stepEndTime := time.After(time.Duration(tm.config.StepDuration) * time.Second) + + sleepDuration := time.Second / time.Duration(currentRPS) + + stepLoop: + for { + select { + case <-ctx.Done(): + return + case <-stepEndTime: + break stepLoop + default: + time.Sleep(sleepDuration) + clientID := clientIDsForTest[rand.Intn(len(clientIDsForTest))] + url := fmt.Sprintf("%s/ads?client_id=%s", tm.config.BackendAddress, clientID) + jobs <- url + } + } + currentRPS += tm.config.StepRPS + if tm.config.StepRPS == 0 && currentRPS != tm.config.ToRPS { + break + } + } + case "once": + for i := 0; i < tm.config.OnceCount; i++ { + select { + case <-ctx.Done(): + return + default: + clientID := clientIDsForTest[rand.Intn(len(clientIDsForTest))] + url := fmt.Sprintf("%s/ads?client_id=%s", tm.config.BackendAddress, clientID) + jobs <- url + } + } + case "unlimited": + for { + select { + case <-ctx.Done(): + return + default: + clientID := clientIDsForTest[rand.Intn(len(clientIDsForTest))] + url := fmt.Sprintf("%s/ads?client_id=%s", tm.config.BackendAddress, clientID) + jobs <- url + } + } + } + }() + + wg.Wait() + close(results) + time.Sleep(1 * time.Second) + + tm.mutex.Lock() + tm.isRunning = false + tm.mutex.Unlock() + + finalStats := TestStats{IsRunning: false, TotalReqs: totalReqs, TotalErrors: totalErrors} + jsonStats, _ := json.Marshal(finalStats) + hub.broadcast <- jsonStats + log.Println("Test finished.") +} + +// --- HTTP Handlers --- + +func serveWs(w http.ResponseWriter, r *http.Request) { + conn, err := upgrader.Upgrade(w, r, nil) + if err != nil { + log.Println(err) + return + } + hub.register <- conn + + go func() { + defer func() { + hub.unregister <- conn + conn.Close() + }() + for { + if _, _, err := conn.NextReader(); err != nil { + break + } + } + }() +} + +func handleLoadMocks(w http.ResponseWriter, r *http.Request) { + if err := loadAndPostMocks(); err != nil { + http.Error(w, fmt.Sprintf("Failed to load mocks: %v", err), http.StatusInternalServerError) + return + } + w.WriteHeader(http.StatusOK) + json.NewEncoder(w).Encode(map[string]string{"status": "Mocks loaded successfully"}) +} + +func checkEndpoint(url string) bool { + req, err := http.NewRequest("GET", url, nil) + if err != nil { + log.Printf("Error creating request for %s: %v", url, err) + return false + } + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + defer cancel() + req = req.WithContext(ctx) + + resp, err := http.DefaultClient.Do(req) + if err != nil { + log.Printf("Error making request to %s: %v", url, err) + return false + } + defer resp.Body.Close() + + if resp.StatusCode != http.StatusOK { + log.Printf("Check for %s failed with status: %d", url, resp.StatusCode) + return false + } + + if strings.Contains(url, "/campaigns") { + bodyBytes, err := io.ReadAll(resp.Body) + if err != nil { + log.Printf("Error reading response body from %s: %v", url, err) + return false + } + var campaignsData []Campaign + if err := json.Unmarshal(bodyBytes, &campaignsData); err != nil { + log.Printf("Error unmarshaling campaign data from %s: %v", url, err) + return false + } + return len(campaignsData) > 0 + } + return true +} + +func handleCheckMocks(w http.ResponseWriter, r *http.Request) { + dataMutex.RLock() + defer dataMutex.RUnlock() + + status := make(map[string]bool) + + var tempClients []Client + clientsContent, err := os.ReadFile(clientsMockDataFile) + if err != nil { + log.Printf("Warning: Could not read %s for checks: %v", clientsMockDataFile, err) + } else { + json.Unmarshal(clientsContent, &tempClients) + } + + var tempAdvertisers []Advertiser + advertisersContent, err := os.ReadFile(advertisersMockDataFile) + if err != nil { + log.Printf("Warning: Could not read %s for checks: %v", advertisersMockDataFile, err) + } else { + json.Unmarshal(advertisersContent, &tempAdvertisers) + } + + clientsLoaded := false + if len(tempClients) >= 3 { + firstClient := tempClients[0].ClientID + medianClient := tempClients[len(tempClients)/2].ClientID + lastClient := tempClients[len(tempClients)-1].ClientID + + clientsLoaded = checkEndpoint(fmt.Sprintf("%s/clients/%s", backendAddress, firstClient)) && + checkEndpoint(fmt.Sprintf("%s/clients/%s", backendAddress, medianClient)) && + checkEndpoint(fmt.Sprintf("%s/clients/%s", backendAddress, lastClient)) + } else if len(tempClients) > 0 { + clientsLoaded = checkEndpoint(fmt.Sprintf("%s/clients/%s", backendAddress, tempClients[0].ClientID)) + } + status["clients"] = clientsLoaded + + advertisersLoaded := false + if len(tempAdvertisers) >= 3 { + firstAdvertiser := tempAdvertisers[0].AdvertiserID + medianAdvertiser := tempAdvertisers[len(tempAdvertisers)/2].AdvertiserID + lastAdvertiser := tempAdvertisers[len(tempAdvertisers)-1].AdvertiserID + + advertisersLoaded = checkEndpoint(fmt.Sprintf("%s/advertisers/%s", backendAddress, firstAdvertiser)) && + checkEndpoint(fmt.Sprintf("%s/advertisers/%s", backendAddress, medianAdvertiser)) && + checkEndpoint(fmt.Sprintf("%s/advertisers/%s", backendAddress, lastAdvertiser)) + } else if len(tempAdvertisers) > 0 { + advertisersLoaded = checkEndpoint(fmt.Sprintf("%s/advertisers/%s", backendAddress, tempAdvertisers[0].AdvertiserID)) + } + status["advertisers"] = advertisersLoaded + + campaignsLoaded := false + if len(tempAdvertisers) >= 3 { + firstAdvertiser := tempAdvertisers[0].AdvertiserID + medianAdvertiser := tempAdvertisers[len(tempAdvertisers)/2].AdvertiserID + lastAdvertiser := tempAdvertisers[len(tempAdvertisers)-1].AdvertiserID + + campaignsLoaded = checkEndpoint(fmt.Sprintf("%s/advertisers/%s/campaigns", backendAddress, firstAdvertiser)) && + checkEndpoint(fmt.Sprintf("%s/advertisers/%s/campaigns", backendAddress, medianAdvertiser)) && + checkEndpoint(fmt.Sprintf("%s/advertisers/%s/campaigns", backendAddress, lastAdvertiser)) + } else if len(tempAdvertisers) > 0 { + campaignsLoaded = checkEndpoint(fmt.Sprintf("%s/advertisers/%s/campaigns", backendAddress, tempAdvertisers[0].AdvertiserID)) + } + status["campaigns"] = campaignsLoaded + + _, err = os.ReadFile(mlscoresMockDataFile) + status["ml_scores"] = err == nil + if !status["ml_scores"] { + log.Printf("Warning: ML Scores file not found or readable, assuming not loaded for check.") + } + + w.Header().Set("Content-Type", "application/json") + json.NewEncoder(w).Encode(status) +} + +func handleStartTest(w http.ResponseWriter, r *http.Request) { + var config TestConfig + if err := json.NewDecoder(r.Body).Decode(&config); err != nil { + http.Error(w, err.Error(), http.StatusBadRequest) + return + } + config.BackendAddress = backendAddress + go testManager.startTest(config) + w.WriteHeader(http.StatusOK) + json.NewEncoder(w).Encode(map[string]string{"status": "Test started"}) +} + +func handleStopTest(w http.ResponseWriter, r *http.Request) { + testManager.stopTest() + w.WriteHeader(http.StatusOK) + json.NewEncoder(w).Encode(map[string]string{"status": "Test stopped"}) +} + +func main() { + rand.Seed(time.Now().UnixNano()) + + port := flag.String("port", "5002", "Port to run the server on") + flag.Parse() + + backendAddress = os.Getenv("BACKEND_ADDRESS") + if backendAddress == "" { + log.Println("BACKEND_ADDRESS environment variable not set. Defaulting to http://localhost:8080") + backendAddress = "http://localhost:8080" + } + + loadInitialMockIDs() + + go hub.run() + + r := mux.NewRouter() + + r.HandleFunc("/", serveUI) + r.HandleFunc("/ws", serveWs) + r.HandleFunc("/api/load-mocks", handleLoadMocks).Methods("POST") + r.HandleFunc("/api/check-mocks", handleCheckMocks).Methods("GET") + r.HandleFunc("/api/start-test", handleStartTest).Methods("POST") + r.HandleFunc("/api/stop-test", handleStopTest).Methods("POST") + + addr := ":" + *port + log.Printf("Server starting on port %s. Open http://localhost%s\n", *port, addr) + if err := http.ListenAndServe(addr, r); err != nil { + log.Fatal("ListenAndServe: ", err) + } +} + +// --- Embedded HTML UI --- + +func serveUI(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Content-Type", "text/html; charset=utf-8") + + t, err := template.ParseFiles("static/index.html") + if err != nil { + http.Error(w, "Could not load UI template", http.StatusInternalServerError) + return + } + + err = t.Execute(w, nil) + if err != nil { + http.Error(w, "Failed to render UI", http.StatusInternalServerError) + } +} diff --git a/services/loadtest/mocks/bulk_advertisers.json b/services/loadtest/mocks/bulk_advertisers.json new file mode 100644 index 0000000..91b5f81 --- /dev/null +++ b/services/loadtest/mocks/bulk_advertisers.json @@ -0,0 +1,122 @@ +[ + { + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "name": "Smart Inc" + }, + { + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "name": "Advanced Technologies" + }, + { + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "name": "Global Group" + }, + { + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "name": "Global Media" + }, + { + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "name": "Modern Systems" + }, + { + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "name": "Advanced Technologies" + }, + { + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "name": "Global Corp" + }, + { + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "name": "Tech Solutions" + }, + { + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "name": "Elite Group" + }, + { + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "name": "Modern Marketing" + }, + { + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "name": "Advanced Systems" + }, + { + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "name": "Premier Technologies" + }, + { + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "name": "Elite Partners" + }, + { + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "name": "Future Inc" + }, + { + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "name": "Modern Marketing" + }, + { + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "name": "Future Solutions" + }, + { + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "name": "Advanced Solutions" + }, + { + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "name": "Digital Solutions" + }, + { + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "name": "Tech Group" + }, + { + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "name": "Elite Systems" + }, + { + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "name": "Tech Inc" + }, + { + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "name": "Global Inc" + }, + { + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "name": "Smart Inc" + }, + { + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "name": "Advanced Corp" + }, + { + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "name": "Smart Advertising" + }, + { + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "name": "Digital Marketing" + }, + { + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "name": "Smart Group" + }, + { + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "name": "Advanced Systems" + }, + { + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "name": "Premier Advertising" + }, + { + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "name": "Modern Partners" + } +] diff --git a/services/loadtest/mocks/bulk_clients.json b/services/loadtest/mocks/bulk_clients.json new file mode 100644 index 0000000..acd69ff --- /dev/null +++ b/services/loadtest/mocks/bulk_clients.json @@ -0,0 +1,1465 @@ +[ + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "login": "vZ6ZW3yWpt@google.com", + "age": 38, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "login": "iCO2U0DmVI@mail.ru", + "age": 28, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "login": "gonp7DsJ2s@hotmail.com", + "age": 26, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "login": "ZNekTKbXVE@google.com", + "age": 36, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "login": "TfJLZcDqGy@outlook.com", + "age": 25, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "login": "VAvcdpSktF@gmail.com", + "age": 34, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "login": "4Ym45MIMlh@google.com", + "age": 34, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "login": "wDiCHqfRZO@outlook.com", + "age": 30, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "login": "WthtVDGoCF@hotmail.com", + "age": 49, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "login": "5Vzr8Nheeq@gmail.com", + "age": 47, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "login": "gosNuQs36b@tbank.ru", + "age": 49, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "login": "9S3w5loIl3@gmail.com", + "age": 35, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "login": "50YZ0jWqMm@google.com", + "age": 36, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "login": "cvsdZQmZH1@example.com", + "age": 31, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "login": "6CwMMDBv1t@outlook.com", + "age": 38, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "login": "nRcq6iyKbJ@hotmail.com", + "age": 42, + "location": "San Francisco", + "gender": "FEMALE" + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "login": "HzIfU2qhee@example.com", + "age": 26, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "login": "W6ucgZsccz@google.com", + "age": 44, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "login": "08NF9bfouG@tbank.ru", + "age": 68, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "login": "CNfZmc0Ovk@yandex.ru", + "age": 51, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "login": "A2aH1BXnzB@google.com", + "age": 55, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "login": "7nCBXLSzTg@gmail.com", + "age": 75, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "login": "o3WN3X0Gh9@outlook.com", + "age": 49, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "login": "sj4HPAq88S@hotmail.com", + "age": 27, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "login": "wjeV8R1iMG@mail.ru", + "age": 81, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "login": "72EpyO8z9r@google.com", + "age": 43, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "login": "miXKZjqai7@mail.ru", + "age": 82, + "location": "Denver", + "gender": "MALE" + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "login": "ll4N5epfUW@yandex.ru", + "age": 88, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "login": "KvHs1vKhcm@yandex.ru", + "age": 19, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "login": "8NUjdlgrk7@tbank.ru", + "age": 36, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "login": "BOXBnjzHI8@mail.ru", + "age": 47, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "login": "bvhjbM2OMp@mail.ru", + "age": 78, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "login": "pU8kbuCs8F@example.com", + "age": 65, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "login": "cVDDn1Zh2O@mail.ru", + "age": 46, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "login": "oNf0UfJGuT@outlook.com", + "age": 46, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "login": "GmoFDLJTdb@hotmail.com", + "age": 86, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "login": "kt2T4eqcXN@gmail.com", + "age": 72, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "login": "LTNo3NFlzI@gmail.com", + "age": 85, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "login": "BY17iKdvZW@example.com", + "age": 46, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "login": "a7SM7Gvj3x@tbank.ru", + "age": 64, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "login": "gGfkPL8Xkf@outlook.com", + "age": 48, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "login": "B4CvMjgPdN@google.com", + "age": 28, + "location": "Denver", + "gender": "MALE" + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "login": "lYechKTfCy@tbank.ru", + "age": 41, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "login": "1xhQbljxlE@example.com", + "age": 42, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "login": "tGPBCyIR9M@hotmail.com", + "age": 19, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "login": "buxobS9G1p@example.com", + "age": 81, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "login": "EjVP63CFIo@yandex.ru", + "age": 45, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "login": "Wpj35s3wYs@mail.ru", + "age": 20, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "login": "ESkHHkGPrK@yandex.ru", + "age": 87, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "login": "pwZU2w1F6u@google.com", + "age": 53, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "login": "W7paGanfLk@gmail.com", + "age": 87, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "login": "MIYfxafVkM@tbank.ru", + "age": 44, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "login": "sGPVyPJLFI@gmail.com", + "age": 31, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "login": "7vwekDuDoX@hotmail.com", + "age": 38, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "login": "Hun8LHTkYN@mail.ru", + "age": 81, + "location": "Denver", + "gender": "MALE" + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "login": "WmcLXlMfeE@example.com", + "age": 50, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "login": "pV6qHUwYZM@yandex.ru", + "age": 87, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "login": "hxu9jgChvY@outlook.com", + "age": 45, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "login": "JYN4zO7kkr@outlook.com", + "age": 79, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "login": "Rs26ziSoo3@mail.ru", + "age": 25, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "login": "MFcPMXuJFY@gmail.com", + "age": 84, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "login": "6TgrDLjhR6@mail.ru", + "age": 89, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "login": "ynZqkUHwWR@gmail.com", + "age": 59, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "login": "lRlzNPYAY3@hotmail.com", + "age": 43, + "location": "Seattle", + "gender": "FEMALE" + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "login": "t6C4KEK9aC@tbank.ru", + "age": 65, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "login": "3fdKF0Z2Ex@tbank.ru", + "age": 34, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "login": "9BQUH66dA7@yandex.ru", + "age": 20, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "login": "WQ9EBG1gxW@gmail.com", + "age": 77, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "login": "SoFIv0ha2c@example.com", + "age": 74, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "login": "XhGtszxmOa@example.com", + "age": 31, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "login": "Xs7Ia2j6PA@mail.ru", + "age": 48, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "login": "Q3t1dt4Udn@gmail.com", + "age": 62, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "login": "IJ3ll9beXd@google.com", + "age": 85, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "login": "cUmCTeluFF@tbank.ru", + "age": 82, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "login": "p13Om4G0V1@tbank.ru", + "age": 42, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "login": "On8OCFaboN@tbank.ru", + "age": 40, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "login": "ArUnwj9kQZ@example.com", + "age": 54, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "login": "2TnHDsz9Nw@outlook.com", + "age": 79, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "login": "zlAwes2nAj@google.com", + "age": 80, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "login": "P4WJFA0yIr@google.com", + "age": 35, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "login": "GCGYVgKur5@example.com", + "age": 83, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "login": "3WhbrU4UVO@tbank.ru", + "age": 46, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "login": "TEsvKtBuFv@tbank.ru", + "age": 62, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "login": "AHLHuH8lfG@gmail.com", + "age": 51, + "location": "San Francisco", + "gender": "FEMALE" + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "login": "7Y7liGDtHq@google.com", + "age": 34, + "location": "Denver", + "gender": "MALE" + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "login": "zdsDDm32xQ@hotmail.com", + "age": 23, + "location": "Miami", + "gender": "MALE" + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "login": "Dwad6cF0Sj@tbank.ru", + "age": 28, + "location": "San Francisco", + "gender": "FEMALE" + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "login": "ZEVWcXlRhK@outlook.com", + "age": 20, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "login": "BVsVURzHBD@hotmail.com", + "age": 37, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "login": "JqlIJuMJOn@tbank.ru", + "age": 37, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "login": "J0haPWt5wf@mail.ru", + "age": 54, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "login": "M89Uz320SH@gmail.com", + "age": 27, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "login": "zwktLdnx5m@outlook.com", + "age": 33, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "login": "npfO1wcrXr@outlook.com", + "age": 67, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "login": "OcztkAmDIf@gmail.com", + "age": 44, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "login": "xL7yALkrxm@yandex.ru", + "age": 34, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "login": "LRNVxhu7fm@google.com", + "age": 25, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "login": "is9JgSvCqX@outlook.com", + "age": 56, + "location": "Seattle", + "gender": "FEMALE" + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "login": "3XxcmMY4xW@mail.ru", + "age": 31, + "location": "Miami", + "gender": "MALE" + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "login": "S84Nehtwar@google.com", + "age": 83, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "login": "Rr7EbxefDr@yandex.ru", + "age": 34, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "login": "ssmfY1YdLz@hotmail.com", + "age": 73, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "login": "Roj4Opdx6e@yandex.ru", + "age": 43, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "login": "CJrEfHAHFW@gmail.com", + "age": 87, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "login": "LBou6zX79g@tbank.ru", + "age": 24, + "location": "Seattle", + "gender": "FEMALE" + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "login": "vluu2pLkFU@hotmail.com", + "age": 39, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "login": "fCQ6LEif0Y@tbank.ru", + "age": 60, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "login": "AwxWoPdYQ8@example.com", + "age": 34, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "login": "885Z78F8pP@tbank.ru", + "age": 68, + "location": "Denver", + "gender": "MALE" + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "login": "eJwiFBXd2c@gmail.com", + "age": 30, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "login": "2kAf07NDO0@gmail.com", + "age": 84, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "login": "1xGXUUtVQd@yandex.ru", + "age": 43, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "login": "t14fmtKQkA@example.com", + "age": 72, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "login": "N9Kl80RuBC@yandex.ru", + "age": 53, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "login": "zbToRAeZHk@google.com", + "age": 74, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "login": "3VO6YBNU0T@hotmail.com", + "age": 49, + "location": "Miami", + "gender": "MALE" + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "login": "4ihJ54GwV5@tbank.ru", + "age": 73, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "login": "ayMLHdoluj@yandex.ru", + "age": 41, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "login": "FwRUevPYv4@yandex.ru", + "age": 71, + "location": "San Francisco", + "gender": "FEMALE" + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "login": "0YiZiLNpdx@example.com", + "age": 76, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "login": "0VmrF8V4RJ@tbank.ru", + "age": 68, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "login": "oQDLEcqzmx@outlook.com", + "age": 55, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "login": "MpnPEt9cUT@hotmail.com", + "age": 45, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "login": "YUfeJ6TRlV@example.com", + "age": 67, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "login": "AhePKNgbld@tbank.ru", + "age": 63, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "login": "F8vbJXXyxo@mail.ru", + "age": 22, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "login": "oXPXNYdV9p@mail.ru", + "age": 73, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "login": "1y15ronhgq@mail.ru", + "age": 22, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "login": "u3y6hCtgdk@hotmail.com", + "age": 89, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "login": "ZWqfoaXRqC@outlook.com", + "age": 72, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "login": "6MR1JXfuPL@hotmail.com", + "age": 77, + "location": "Seattle", + "gender": "FEMALE" + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "login": "Ao0wbCZFCW@outlook.com", + "age": 80, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "login": "RCDO1kwUpv@hotmail.com", + "age": 44, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "login": "qfdGdignna@google.com", + "age": 76, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "login": "82dXfvVK03@gmail.com", + "age": 27, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "login": "0nSS3WFi1G@yandex.ru", + "age": 72, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "login": "LlzdQc9bD4@hotmail.com", + "age": 34, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "login": "Oy6o1DRzsd@google.com", + "age": 51, + "location": "Seattle", + "gender": "FEMALE" + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "login": "s1LIJesePi@tbank.ru", + "age": 30, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "login": "1YhOsWMvPT@gmail.com", + "age": 57, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "login": "F2DfctR3Uu@example.com", + "age": 79, + "location": "Seattle", + "gender": "FEMALE" + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "login": "rKIcdqte25@gmail.com", + "age": 82, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "login": "zXaOb0wjHq@mail.ru", + "age": 35, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "login": "WJxNCUisLu@example.com", + "age": 81, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "login": "qln4ZjNFJc@example.com", + "age": 75, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "login": "jXMRmnmMjA@google.com", + "age": 53, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "login": "noRelY5FUB@google.com", + "age": 82, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "login": "ZmuYCZ43WU@example.com", + "age": 63, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "login": "jbTyBY738T@gmail.com", + "age": 62, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "login": "cb6RyJbWYP@hotmail.com", + "age": 44, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "login": "fIi7Xp0kvA@google.com", + "age": 18, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "login": "DSwHLLRohG@mail.ru", + "age": 21, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "login": "LadPFCyFIc@google.com", + "age": 52, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "login": "Ro2cXcmamY@example.com", + "age": 53, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "login": "Oxexx0dhEH@tbank.ru", + "age": 52, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "login": "zFYHYQErcG@gmail.com", + "age": 50, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "login": "76cpyGPKjJ@example.com", + "age": 81, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "login": "coQel53upR@outlook.com", + "age": 79, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "login": "u03x6LJZTZ@gmail.com", + "age": 44, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "login": "gfTDsTHVHw@mail.ru", + "age": 37, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "login": "2NUz4ZXNiq@gmail.com", + "age": 90, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "login": "9lNUDfNDgI@gmail.com", + "age": 67, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "login": "dehJTPsZm2@tbank.ru", + "age": 51, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "login": "FhJKld8ion@outlook.com", + "age": 70, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "login": "rVKXdfttLi@google.com", + "age": 55, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "login": "JiRJHmgqss@gmail.com", + "age": 44, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "login": "ic0fwjScll@yandex.ru", + "age": 66, + "location": "Los Angeles", + "gender": "MALE" + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "login": "yA6tNpLvD1@tbank.ru", + "age": 52, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "login": "4ozJDiWGLU@tbank.ru", + "age": 75, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "login": "hm5z2HDK9V@tbank.ru", + "age": 58, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "login": "90lABMlyOO@yandex.ru", + "age": 64, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "login": "yGrteWJIZc@yandex.ru", + "age": 58, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "login": "8G41xcG8Oj@example.com", + "age": 75, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "login": "UkecKSu1tY@mail.ru", + "age": 73, + "location": "Denver", + "gender": "MALE" + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "login": "N5JJ5xGMAw@mail.ru", + "age": 27, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "login": "NL96UqsBYA@google.com", + "age": 74, + "location": "Denver", + "gender": "MALE" + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "login": "sIuRBTmlyT@gmail.com", + "age": 39, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "login": "mJIiG3KMEh@tbank.ru", + "age": 49, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "login": "ipTcQDxpCi@google.com", + "age": 60, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "login": "EpV21ZnK9c@google.com", + "age": 25, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "login": "PjgIFmBfkW@gmail.com", + "age": 67, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "login": "4PAHkptALS@tbank.ru", + "age": 36, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "login": "qi1d6xx2sL@example.com", + "age": 54, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "login": "JF5DeXdd3S@mail.ru", + "age": 59, + "location": "San Francisco", + "gender": "FEMALE" + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "login": "1kdaHlyT3P@example.com", + "age": 66, + "location": "Houston", + "gender": "MALE" + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "login": "m5HRP85Q9f@yandex.ru", + "age": 84, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "login": "NQbAbpvhHr@gmail.com", + "age": 28, + "location": "Seattle", + "gender": "FEMALE" + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "login": "amAsPoupUc@gmail.com", + "age": 18, + "location": "New York", + "gender": "FEMALE" + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "login": "YxBCs41g3i@google.com", + "age": 44, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "login": "EhGRLuNAHR@mail.ru", + "age": 85, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "login": "Fi3hQgmJ1R@gmail.com", + "age": 62, + "location": "Boston", + "gender": "FEMALE" + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "login": "yTH8eLXG3J@yandex.ru", + "age": 35, + "location": "Miami", + "gender": "FEMALE" + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "login": "DH5iXszF13@hotmail.com", + "age": 32, + "location": "Los Angeles", + "gender": "FEMALE" + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "login": "xlXTy903xF@google.com", + "age": 33, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "login": "pH5XT0FKRd@gmail.com", + "age": 56, + "location": "Boston", + "gender": "MALE" + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "login": "6HGyhegKGL@mail.ru", + "age": 81, + "location": "Chicago", + "gender": "MALE" + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "login": "fenVjVTToo@tbank.ru", + "age": 30, + "location": "Miami", + "gender": "MALE" + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "login": "5E20ubQcgh@mail.ru", + "age": 70, + "location": "Denver", + "gender": "FEMALE" + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "login": "6oeuheUlEg@example.com", + "age": 77, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "login": "EyMqkka0s3@google.com", + "age": 37, + "location": "Houston", + "gender": "FEMALE" + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "login": "j1odPPZLQ2@example.com", + "age": 18, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "login": "xeunbPGfWk@gmail.com", + "age": 46, + "location": "Chicago", + "gender": "FEMALE" + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "login": "k8IZb2Batm@outlook.com", + "age": 77, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "login": "4IzXFCt5g4@google.com", + "age": 80, + "location": "Austin", + "gender": "FEMALE" + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "login": "IxnVfsSB71@yandex.ru", + "age": 41, + "location": "New York", + "gender": "MALE" + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "login": "cNnSyoFhL6@google.com", + "age": 52, + "location": "Austin", + "gender": "MALE" + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "login": "h7exx1D9dP@example.com", + "age": 35, + "location": "Seattle", + "gender": "MALE" + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "login": "fkavkO0GWC@example.com", + "age": 46, + "location": "San Francisco", + "gender": "MALE" + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "login": "HRLpj4Exv4@google.com", + "age": 86, + "location": "Seattle", + "gender": "MALE" + } +] diff --git a/services/loadtest/mocks/campaigns.json b/services/loadtest/mocks/campaigns.json new file mode 100644 index 0000000..f304c46 --- /dev/null +++ b/services/loadtest/mocks/campaigns.json @@ -0,0 +1,572 @@ +[ + { + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "campaign_data": { + "impressions_limit": 8, + "clicks_limit": 8, + "cost_per_impression": 1.5, + "cost_per_click": 2.5, + "ad_title": "Amazing Offer", + "ad_text": "Get great savings now!", + "start_date": 0, + "end_date": 15, + "targeting": { + "gender": "MALE", + "age_from": 25, + "age_to": 40, + "location": "Chicago" + } + } + }, + { + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "campaign_data": { + "impressions_limit": 10, + "clicks_limit": 10, + "cost_per_impression": 1.2, + "cost_per_click": 2.8, + "ad_title": "Incredible Deal", + "ad_text": "Discover amazing quality!", + "start_date": 0, + "end_date": 20, + "targeting": { + "gender": "FEMALE", + "age_from": 30, + "age_to": 50, + "location": "New York" + } + } + }, + { + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "campaign_data": { + "impressions_limit": 6, + "clicks_limit": 6, + "cost_per_impression": 1.8, + "cost_per_click": 2.2, + "ad_title": "Best Service", + "ad_text": "Buy unique advantages today!", + "start_date": 0, + "end_date": 22, + "targeting": { + "gender": "ALL", + "age_from": 18, + "age_to": 60, + "location": "Los Angeles" + } + } + }, + { + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "campaign_data": { + "impressions_limit": 7, + "clicks_limit": 7, + "cost_per_impression": 1.1, + "cost_per_click": 2.9, + "ad_title": "Exclusive Opportunity", + "ad_text": "Try our new product now!", + "start_date": 0, + "end_date": 13, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "campaign_data": { + "impressions_limit": 9, + "clicks_limit": 9, + "cost_per_impression": 1.6, + "cost_per_click": 2.4, + "ad_title": "Special Features", + "ad_text": "Experience our service today!", + "start_date": 0, + "end_date": 11, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "campaign_data": { + "impressions_limit": 5, + "clicks_limit": 5, + "cost_per_impression": 1.3, + "cost_per_click": 2.1, + "ad_title": "Limited Time Offer", + "ad_text": "Get it before it's gone!", + "start_date": 0, + "end_date": 12, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "campaign_data": { + "impressions_limit": 6, + "clicks_limit": 6, + "cost_per_impression": 1.7, + "cost_per_click": 2.6, + "ad_title": "New Arrival", + "ad_text": "Check out our latest product!", + "start_date": 0, + "end_date": 14, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "campaign_data": { + "impressions_limit": 8, + "clicks_limit": 8, + "cost_per_impression": 1.9, + "cost_per_click": 2.3, + "ad_title": "Discover More", + "ad_text": "Find out what we offer!", + "start_date": 0, + "end_date": 16, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "campaign_data": { + "impressions_limit": 7, + "clicks_limit": 7, + "cost_per_impression": 1.4, + "cost_per_click": 2.8, + "ad_title": "Best Quality", + "ad_text": "Experience the best quality!", + "start_date": 0, + "end_date": 18, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "campaign_data": { + "impressions_limit": 9, + "clicks_limit": 9, + "cost_per_impression": 1.6, + "cost_per_click": 2.2, + "ad_title": "Limited Edition", + "ad_text": "Get it while it lasts!", + "start_date": 0, + "end_date": 15, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "campaign_data": { + "impressions_limit": 10, + "clicks_limit": 10, + "cost_per_impression": 1.2, + "cost_per_click": 2.9, + "ad_title": "Exclusive Access", + "ad_text": "Join us for exclusive access!", + "start_date": 0, + "end_date": 13, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "campaign_data": { + "impressions_limit": 6, + "clicks_limit": 6, + "cost_per_impression": 1.8, + "cost_per_click": 2.5, + "ad_title": "Best Experience", + "ad_text": "Experience the best with us!", + "start_date": 0, + "end_date": 14, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "campaign_data": { + "impressions_limit": 5, + "clicks_limit": 5, + "cost_per_impression": 1.5, + "cost_per_click": 2.7, + "ad_title": "Incredible Quality", + "ad_text": "Get the quality you deserve!", + "start_date": 0, + "end_date": 12, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "campaign_data": { + "impressions_limit": 7, + "clicks_limit": 7, + "cost_per_impression": 1.3, + "cost_per_click": 2.4, + "ad_title": "Best Value", + "ad_text": "Get the best value for your money!", + "start_date": 0, + "end_date": 11, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "campaign_data": { + "impressions_limit": 6, + "clicks_limit": 6, + "cost_per_impression": 1.9, + "cost_per_click": 2.6, + "ad_title": "Exclusive Offer", + "ad_text": "Don't miss out on this offer!", + "start_date": 0, + "end_date": 15, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "campaign_data": { + "impressions_limit": 8, + "clicks_limit": 8, + "cost_per_impression": 1.7, + "cost_per_click": 2.3, + "ad_title": "Limited Time Deal", + "ad_text": "Act fast to get this deal!", + "start_date": 0, + "end_date": 13, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "campaign_data": { + "impressions_limit": 9, + "clicks_limit": 9, + "cost_per_impression": 1.2, + "cost_per_click": 2.9, + "ad_title": "Discover Our Services", + "ad_text": "Find out what we can do for you!", + "start_date": 0, + "end_date": 14, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "campaign_data": { + "impressions_limit": 10, + "clicks_limit": 10, + "cost_per_impression": 1.5, + "cost_per_click": 2.8, + "ad_title": "Get Started Today", + "ad_text": "Join us and start saving!", + "start_date": 0, + "end_date": 12, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "campaign_data": { + "impressions_limit": 6, + "clicks_limit": 6, + "cost_per_impression": 1.8, + "cost_per_click": 2.5, + "ad_title": "Best Choice", + "ad_text": "Choose the best for your needs!", + "start_date": 0, + "end_date": 11, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "campaign_data": { + "impressions_limit": 7, + "clicks_limit": 7, + "cost_per_impression": 1.3, + "cost_per_click": 2.2, + "ad_title": "Exclusive Access", + "ad_text": "Get exclusive access to our services!", + "start_date": 0, + "end_date": 13, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "campaign_data": { + "impressions_limit": 8, + "clicks_limit": 8, + "cost_per_impression": 1.9, + "cost_per_click": 2.6, + "ad_title": "Best Quality", + "ad_text": "Experience the best quality!", + "start_date": 0, + "end_date": 15, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "campaign_data": { + "impressions_limit": 9, + "clicks_limit": 9, + "cost_per_impression": 1.4, + "cost_per_click": 2.3, + "ad_title": "Incredible Quality", + "ad_text": "Get the quality you deserve!", + "start_date": 0, + "end_date": 12, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "campaign_data": { + "impressions_limit": 10, + "clicks_limit": 10, + "cost_per_impression": 1.6, + "cost_per_click": 2.8, + "ad_title": "Discover Our Services", + "ad_text": "Find out what we can do for you!", + "start_date": 0, + "end_date": 14, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "campaign_data": { + "impressions_limit": 6, + "clicks_limit": 6, + "cost_per_impression": 1.2, + "cost_per_click": 2.9, + "ad_title": "Best Value", + "ad_text": "Get the best value for your money!", + "start_date": 0, + "end_date": 11, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "campaign_data": { + "impressions_limit": 7, + "clicks_limit": 7, + "cost_per_impression": 1.3, + "cost_per_click": 2.4, + "ad_title": "Exclusive Offer", + "ad_text": "Don't miss out on this offer!", + "start_date": 0, + "end_date": 12, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "campaign_data": { + "impressions_limit": 8, + "clicks_limit": 8, + "cost_per_impression": 1.9, + "cost_per_click": 2.6, + "ad_title": "Best Choice", + "ad_text": "Choose the best for your needs!", + "start_date": 0, + "end_date": 13, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "campaign_data": { + "impressions_limit": 9, + "clicks_limit": 9, + "cost_per_impression": 1.5, + "cost_per_click": 2.3, + "ad_title": "Incredible Quality", + "ad_text": "Get the quality you deserve!", + "start_date": 0, + "end_date": 14, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "campaign_data": { + "impressions_limit": 10, + "clicks_limit": 10, + "cost_per_impression": 1.6, + "cost_per_click": 2.8, + "ad_title": "Get Started Today", + "ad_text": "Join us and start saving!", + "start_date": 0, + "end_date": 12, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "campaign_data": { + "impressions_limit": 6, + "clicks_limit": 6, + "cost_per_impression": 1.2, + "cost_per_click": 2.9, + "ad_title": "Best Experience", + "ad_text": "Experience the best with us!", + "start_date": 0, + "end_date": 11, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + }, + { + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "campaign_data": { + "impressions_limit": 7, + "clicks_limit": 7, + "cost_per_impression": 1.3, + "cost_per_click": 2.2, + "ad_title": "Discover Our Services", + "ad_text": "Find out what we can do for you!", + "start_date": 0, + "end_date": 13, + "targeting": { + "gender": null, + "age_from": null, + "age_to": null, + "location": null + } + } + } +] diff --git a/services/loadtest/mocks/ml_scores.json b/services/loadtest/mocks/ml_scores.json new file mode 100644 index 0000000..61a8c90 --- /dev/null +++ b/services/loadtest/mocks/ml_scores.json @@ -0,0 +1,31352 @@ +[ + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8874 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6510 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4227 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 276 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5952 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6022 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7784 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9713 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4085 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6302 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 882 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8245 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7427 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 866 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2325 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 631 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7368 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4828 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7240 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7543 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9933 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8486 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2895 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2182 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 874 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6314 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9257 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8386 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 473 + }, + { + "client_id": "425495af-f78e-4cff-a808-e8f1a1973ff2", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6284 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3472 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7061 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6960 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 316 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 718 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6607 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2862 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5151 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9377 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5640 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8901 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8249 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6782 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2602 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8292 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2864 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7767 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7858 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4074 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9239 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9389 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9574 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9601 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3619 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 253 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5235 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9183 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 175 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2167 + }, + { + "client_id": "df332801-239d-4cb3-8039-a83d1a21af23", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 178 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5568 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6725 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6043 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 199 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3532 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 572 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4592 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4946 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4311 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 12 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5233 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9548 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1510 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4157 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7613 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4258 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9530 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6677 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1153 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 715 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6857 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5023 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3581 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5102 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3093 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4582 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8901 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2486 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7575 + }, + { + "client_id": "1cdc0419-44ac-489d-97d0-bd197cf36d24", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4851 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5837 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2940 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 374 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5459 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 479 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 327 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3607 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8542 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8940 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6889 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2400 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7823 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5626 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1208 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3181 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4326 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1952 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6614 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6842 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 570 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 827 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 907 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3108 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3045 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9751 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6849 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7673 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5403 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1355 + }, + { + "client_id": "d3a75bae-d75a-49ee-b368-1fc5e3d6306a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8562 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3694 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1185 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8014 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4273 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9316 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3432 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5843 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2889 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8887 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5837 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2996 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7856 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1057 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2876 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8369 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9253 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4516 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9125 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1775 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6668 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8796 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8657 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5579 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5459 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1265 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7725 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6111 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4493 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2144 + }, + { + "client_id": "e9d0aef2-d921-4792-aac1-0ddde7c3c443", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6134 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5369 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8734 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3605 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1354 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1115 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2608 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 953 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7848 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6827 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5171 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4077 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3370 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4751 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4343 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4001 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2855 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2085 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5235 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8701 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4794 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5369 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7998 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6787 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3716 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1928 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5324 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7637 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2324 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2727 + }, + { + "client_id": "c3f7f898-4d29-4a42-b929-49074e355945", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5025 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1134 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4768 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7509 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4336 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6155 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2662 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5884 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4910 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4080 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3976 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9455 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9830 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9740 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7777 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3946 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4455 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3001 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1943 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8484 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7972 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1969 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6841 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 31 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 140 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9827 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3199 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7437 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3813 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 825 + }, + { + "client_id": "272fe629-dcaa-4a7e-a849-5ce6b67845cc", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7327 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5480 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9678 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3810 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2277 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2512 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7488 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7116 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1950 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3399 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1373 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7496 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3389 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4658 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7434 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3807 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 197 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5213 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5381 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3973 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2516 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4508 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 520 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6108 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8448 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6915 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9649 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5738 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4009 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4475 + }, + { + "client_id": "8d9b8a5a-385b-4117-9d71-4db23c3dc408", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2409 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7899 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9992 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3655 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9977 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3889 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 953 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2138 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3783 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7698 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5379 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6452 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8688 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2349 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2749 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1098 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 190 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5650 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8678 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2572 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7788 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8419 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3643 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4696 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5615 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5255 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6489 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8185 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 634 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 16 + }, + { + "client_id": "289d4d05-2682-4d8d-8552-b9117e1162b5", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6808 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3297 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4187 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8540 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 141 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 938 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6049 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8358 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5396 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 737 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9116 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9910 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2507 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6964 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1610 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4979 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4477 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9588 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2466 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6701 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2684 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1155 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 209 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 808 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1625 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4659 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 622 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5395 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2436 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2130 + }, + { + "client_id": "ecc5e9d2-a984-4dec-b1aa-5f2fc331ecdc", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2181 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8848 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9745 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7165 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5666 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1138 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5851 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6598 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6036 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6162 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4089 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3382 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7423 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6679 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 818 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7634 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1221 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9951 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1059 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9167 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3113 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5247 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1400 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8029 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 953 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1924 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 381 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3755 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6016 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5745 + }, + { + "client_id": "8eb72ab8-6866-4c6d-a480-7d45be097d51", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4094 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 795 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7594 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4202 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5229 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3417 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5506 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7445 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3050 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1636 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8790 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4203 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1434 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5671 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1511 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4936 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5723 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2221 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5712 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1478 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8339 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2381 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5933 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9364 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6193 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7481 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4079 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6792 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 780 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4088 + }, + { + "client_id": "e9eef49d-b3a9-46f8-9902-36c54cc23262", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8555 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1381 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6252 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 423 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9590 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3217 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8419 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7524 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6631 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 714 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8937 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3256 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9801 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6628 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3112 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7502 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3577 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1779 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3537 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 869 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9547 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6611 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9817 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8943 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2889 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9538 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5786 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9031 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3652 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4637 + }, + { + "client_id": "f35a92e2-7b76-4c2d-b089-5858045f043b", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 719 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6026 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6033 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 191 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3737 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1001 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4839 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2955 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2233 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9333 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1576 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4852 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3278 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4052 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 510 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5986 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3228 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3525 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6724 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3450 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 933 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4073 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3004 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9304 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1755 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1380 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8981 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3322 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5955 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6586 + }, + { + "client_id": "99804214-3cdc-4941-933a-dfaf3e273712", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4400 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8625 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5862 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5595 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 622 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3754 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8387 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9157 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7261 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7971 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1098 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3919 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5810 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5272 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2683 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1709 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7155 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4308 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8658 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3781 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8824 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6102 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3213 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6101 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 753 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1464 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1466 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9714 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5405 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9966 + }, + { + "client_id": "eb4d9728-fb50-4197-bbd4-347533df28a9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2072 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5398 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8089 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1862 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6327 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9400 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7967 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3992 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4399 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6779 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8628 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7445 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1166 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4590 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4998 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5190 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3689 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7166 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9253 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2815 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4412 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5062 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 881 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9947 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9107 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7466 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8764 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9696 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5475 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 434 + }, + { + "client_id": "31c125c7-3901-466b-9958-ff60ba72ca7d", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 412 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6912 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3271 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1852 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5960 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5904 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7809 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9914 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1096 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4005 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4500 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3353 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7953 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2996 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2826 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1751 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7519 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9990 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4699 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6855 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5097 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 971 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7474 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5248 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4397 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3544 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2981 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1186 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5333 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5270 + }, + { + "client_id": "caaf5fce-2fb9-4042-88ef-28843d15c797", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2132 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7981 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2819 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7774 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2644 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1896 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2471 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4479 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1579 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2309 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6596 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3220 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3746 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5180 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2754 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6973 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 23 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7250 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4026 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6469 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2373 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9545 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4437 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5840 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8049 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6401 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8742 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7291 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 692 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2095 + }, + { + "client_id": "8b7ad095-a501-43c4-9385-027be5d28ab7", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1765 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3555 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2532 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8791 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8806 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2132 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3095 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7331 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9250 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6026 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9782 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3803 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2192 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4340 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3973 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1586 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2405 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9396 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2809 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1987 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4168 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9801 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3626 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5702 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8123 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7586 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6784 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9865 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6266 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6981 + }, + { + "client_id": "e72808e1-00f4-4c70-a25e-37b411a5c3be", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7690 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9465 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6804 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2385 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8429 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2942 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9747 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8899 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5550 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9890 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5518 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9650 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8829 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9211 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2162 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9961 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9304 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8913 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4215 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8198 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7635 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5768 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 777 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6053 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8410 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6201 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2125 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3995 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4302 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6094 + }, + { + "client_id": "4a47ab03-7293-4ff0-ac86-37c340b520c0", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9426 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2955 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4465 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6045 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8720 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 544 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5143 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1077 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2908 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5357 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1068 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 957 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6877 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4899 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6333 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6131 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4200 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3317 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1303 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1434 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6489 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2561 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8067 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8341 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6719 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 356 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4189 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7743 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7873 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9141 + }, + { + "client_id": "a0b27d5d-dbe3-48b0-916f-1deb335d1bfc", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1186 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1052 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8578 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7643 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9693 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9959 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9081 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5483 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 521 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3832 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1523 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7554 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7350 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 45 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5970 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 854 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7626 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 182 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7273 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7067 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9118 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1003 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3720 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 957 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4556 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5508 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7484 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 990 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 933 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7163 + }, + { + "client_id": "4da3da2b-e50c-43df-862b-ae29a0428743", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8804 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7246 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8189 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9908 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6550 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9461 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1928 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2033 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2945 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 387 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5455 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2308 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 528 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1828 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3000 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6686 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 774 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2550 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 404 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8517 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6616 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3736 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1011 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4114 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9486 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7236 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8846 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8379 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7263 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3501 + }, + { + "client_id": "a0e362c2-beea-478f-b79c-20c55d55f05d", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6440 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6050 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9866 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7512 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4645 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3354 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3442 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3812 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 987 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7921 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9897 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4786 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 252 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2724 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1137 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7665 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5932 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 538 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2480 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2463 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3084 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1686 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2992 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9390 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8663 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3761 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 348 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5008 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 465 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7283 + }, + { + "client_id": "24faf681-f8f6-4fc9-8885-6dcc50b24e25", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 683 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5406 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5732 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7478 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5333 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1768 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8427 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3914 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7501 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3434 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5763 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4303 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 126 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9011 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 157 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7874 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3808 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5821 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 479 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5497 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2741 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5507 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1413 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4004 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5975 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1513 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3108 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7758 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8290 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2359 + }, + { + "client_id": "2c75b637-4803-46c5-b8ef-2ea67f3128e8", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8600 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2404 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6175 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9273 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4716 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5626 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2019 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5652 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4465 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6134 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7913 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6323 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5747 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4314 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4363 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9746 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7186 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 620 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6213 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 497 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1977 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3703 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 332 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3843 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1280 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4905 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8695 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 54 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9254 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2602 + }, + { + "client_id": "d50962bf-a082-4c98-a89a-9671d5f601db", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9234 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4006 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 149 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7666 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7767 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2212 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8576 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3715 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2315 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3638 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6753 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2442 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4322 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4552 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7131 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2519 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 96 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7702 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8844 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1140 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1018 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3543 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9670 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2201 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6771 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4320 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8381 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 207 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5642 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3165 + }, + { + "client_id": "c2a38e19-fd54-4532-8877-62fbe3b8548f", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5803 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9569 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7151 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7801 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8031 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8555 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6252 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3367 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3859 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6909 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7309 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 564 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3946 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3167 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8541 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2577 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 108 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1962 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2300 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2288 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 567 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8491 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8421 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2105 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9329 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9021 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8997 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4192 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5764 + }, + { + "client_id": "d1147489-5580-415c-8510-f8c5d70c437b", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2711 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9850 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8059 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1926 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2874 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4819 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7632 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4484 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7757 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7064 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1225 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6342 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1442 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3635 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6207 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3823 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4481 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 877 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8620 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1788 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7258 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5512 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7015 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 740 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3152 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2091 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4779 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8031 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1735 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9073 + }, + { + "client_id": "cffb860a-3ea0-4415-a88f-b6a33a552658", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7906 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4591 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5125 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8340 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6669 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5547 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6363 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2950 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6587 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3593 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9272 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3445 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4896 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4727 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4694 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9290 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7045 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3894 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 152 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3460 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1492 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4344 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1430 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1148 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5996 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1358 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 569 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6379 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3618 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 319 + }, + { + "client_id": "4303d35b-9b61-4bd6-87aa-ab5638f50097", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9571 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9518 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6756 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3983 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2583 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 507 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5458 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3844 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1064 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 484 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4549 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6356 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7084 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8006 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3992 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 565 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9871 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4313 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2079 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2622 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9998 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 557 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3944 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4587 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 215 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3120 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4825 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7417 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3453 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 773 + }, + { + "client_id": "2aabdf07-0f8d-4211-985b-952e04b1df7a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3717 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8480 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3982 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5226 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7910 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6394 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5456 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 136 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4521 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4862 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1730 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4891 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9161 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2431 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9023 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7059 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6676 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 787 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3479 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1096 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8855 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9839 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4667 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1568 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6788 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 469 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7584 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2062 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9258 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5452 + }, + { + "client_id": "cccc5996-14f0-481f-8c3a-cfe5eb7aa733", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 618 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4723 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 921 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6111 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2508 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4055 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4145 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1729 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1987 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4184 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6577 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6262 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9266 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6876 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2179 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1945 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9419 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6804 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 670 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 111 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4774 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2063 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1936 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 861 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6759 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2833 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6749 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6411 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1142 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5621 + }, + { + "client_id": "8ad73698-9e99-499c-8324-a3a0c7dbf6e9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6446 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9137 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1107 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9442 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6961 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4179 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9696 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5136 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2707 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8736 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6033 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6539 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2853 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6837 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 327 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2916 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8059 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1510 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2186 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5519 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6958 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6302 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8767 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3344 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 668 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8519 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9475 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 451 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9243 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2137 + }, + { + "client_id": "6faff20f-cd2e-4f69-95af-a3fd7d655f41", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3948 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9842 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9852 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5838 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3837 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9286 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 892 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9755 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2682 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6176 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8543 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2121 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4747 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5824 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9513 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7263 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2191 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9073 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6462 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2841 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 452 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3111 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3539 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2306 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2969 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8630 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 338 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3989 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7754 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7298 + }, + { + "client_id": "d152e431-f638-4eae-81e6-8c75bdd82213", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6008 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3133 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2347 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8567 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4454 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2778 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9986 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5895 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5822 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4871 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3524 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4608 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3072 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5414 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6342 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9848 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3924 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1357 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3706 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6592 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5697 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1267 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8252 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8460 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6627 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6901 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3195 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2237 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1423 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8801 + }, + { + "client_id": "9554ed97-dff3-4ea0-b3a3-3abd23cda93a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9453 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9675 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 786 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7697 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6423 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9479 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1175 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5168 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9304 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3223 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4465 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6122 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7817 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4490 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1105 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8162 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 649 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1467 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9613 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8569 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1556 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4718 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8205 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9135 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4866 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7320 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5109 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2148 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2996 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8678 + }, + { + "client_id": "72155fcd-5fa6-4cba-a6ab-60d9e1ef07e4", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4933 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6978 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 233 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2641 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1924 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2349 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7584 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1446 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 933 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2081 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6329 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3965 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4686 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9626 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1218 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8002 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4396 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9888 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7071 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9069 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8165 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3717 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 767 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3441 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3539 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6324 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9727 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7193 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2286 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6739 + }, + { + "client_id": "4d0c621c-8b03-4ea7-b11a-bb48fb73d1b6", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5553 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6170 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7329 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4129 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4210 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8386 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2498 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2380 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1294 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6923 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7368 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1418 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6666 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2312 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5056 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7184 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2937 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2660 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4469 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9876 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4133 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8494 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6331 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5809 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5219 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7923 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2660 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 177 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1673 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4268 + }, + { + "client_id": "d82c3834-1cd2-48a1-b993-227da862cb89", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1590 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4142 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5090 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6498 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1555 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8422 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2884 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6275 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2601 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8268 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8891 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7905 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 855 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8075 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8290 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8180 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5285 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9604 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4268 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7100 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2561 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5673 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4010 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1336 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1201 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7447 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2195 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2728 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7302 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 408 + }, + { + "client_id": "6235a35a-d197-4452-85d0-857add7c6025", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8132 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2064 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7704 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9302 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5571 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1472 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1531 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6735 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7069 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3269 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 813 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6201 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4493 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2697 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2561 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6599 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3991 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2553 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5229 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3932 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2678 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3015 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2010 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9104 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6867 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3614 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7489 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2025 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3752 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2487 + }, + { + "client_id": "d969c1a5-a26d-4f9d-95de-08a8db235728", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2361 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3746 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6279 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9350 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9759 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8190 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5026 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6204 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9955 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8087 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7999 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3321 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3192 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2480 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 136 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4147 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 673 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9137 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 981 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8629 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9537 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3420 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9226 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3002 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4581 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9240 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7019 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5299 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 557 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5910 + }, + { + "client_id": "a2cb9392-bfff-4aeb-8ecd-c37e04737178", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8793 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5633 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9217 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8416 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9581 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 126 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8905 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 995 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2318 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8004 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3901 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8303 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 929 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5635 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6966 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8522 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9936 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2467 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4029 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9573 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4768 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2425 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1915 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8784 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5884 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1025 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4432 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6050 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2544 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1109 + }, + { + "client_id": "6cb1804c-b7d6-4975-92b2-704a731750b0", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4928 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7561 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8229 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4985 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3042 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6871 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 180 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8215 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2028 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2793 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6074 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1565 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9290 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3917 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4293 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7926 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3555 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2028 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2796 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1420 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2136 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5930 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6793 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1521 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8683 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2021 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1257 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9145 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2653 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8898 + }, + { + "client_id": "20a1419b-b3a6-426b-970c-241be573e09b", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 125 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7127 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 872 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5863 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2461 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3079 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5184 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8268 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1417 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5749 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3742 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9717 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5562 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1935 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4832 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 678 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1379 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7900 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 746 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6370 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5824 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9900 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8871 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6649 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5086 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4788 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3332 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6694 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 356 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6349 + }, + { + "client_id": "3b5b0dda-7000-4368-b8c2-51583d8c508c", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1109 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9972 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2150 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 477 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1235 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9370 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 426 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4333 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9329 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4088 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7076 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7261 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6817 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3137 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4008 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2036 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7533 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4421 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1523 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3752 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6785 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1990 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2921 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9784 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3266 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7753 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8925 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6161 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8614 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5924 + }, + { + "client_id": "e6f6bfac-e73b-4d50-a32a-e35e18c1a1db", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2079 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7248 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2878 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1659 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4509 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4261 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8641 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6617 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4863 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1548 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7716 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7838 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7702 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9197 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4468 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1338 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2700 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1571 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6497 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6731 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 313 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9900 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7973 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8462 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4523 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6593 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2376 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6374 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7515 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1157 + }, + { + "client_id": "b2ae2e02-d65a-43f5-bb2b-8b361bbb5db7", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4500 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8331 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6760 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 692 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4655 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3221 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 19 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5353 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7341 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1487 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6333 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1541 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6226 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1800 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6307 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 87 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7914 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5391 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3610 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5039 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6886 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4329 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3248 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2570 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 761 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8051 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7168 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1657 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4882 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 309 + }, + { + "client_id": "444fad98-cb09-414e-87c7-74e52910eacf", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8496 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7894 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 468 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6763 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4912 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9546 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8297 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6786 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1575 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4925 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1590 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9669 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6859 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7750 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2538 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9205 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2245 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7571 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7224 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8506 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4002 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5687 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5726 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1886 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4257 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5087 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5840 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3842 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 716 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2148 + }, + { + "client_id": "463a278e-132d-494d-8308-179fcc47d554", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9021 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 400 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8039 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2903 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 427 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1431 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9371 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7747 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2191 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7181 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6801 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7499 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4084 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5115 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2808 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7131 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9677 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8788 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3381 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5109 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6722 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8977 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8254 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3197 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9163 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1522 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4888 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7839 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2801 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6649 + }, + { + "client_id": "e14b2cf8-21a4-4867-8616-5346aff4b9c6", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 965 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6214 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4357 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9391 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7502 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5148 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8070 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 24 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6469 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7588 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1660 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8675 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2838 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1367 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3619 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2977 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9830 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4862 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8984 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2235 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6685 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6682 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7792 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2494 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3598 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1867 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5447 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8746 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5701 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7802 + }, + { + "client_id": "781fbb97-1dee-4d94-a9bc-6f2f710c0504", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 383 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6929 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 103 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5475 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3446 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9940 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8580 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3896 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7061 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5563 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 956 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4311 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1523 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7624 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 620 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 158 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9532 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6921 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6868 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3024 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2505 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 247 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 216 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8090 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 420 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 605 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9642 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 364 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4177 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1935 + }, + { + "client_id": "0cef63f0-44bc-44f8-9b07-f83855f2656d", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6911 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2661 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9473 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7910 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 855 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3628 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7525 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5297 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2903 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8022 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4638 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6427 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5665 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7386 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 951 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8573 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4797 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1800 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9588 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8014 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7764 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7035 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7977 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1042 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3316 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2972 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6687 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7797 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3143 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2810 + }, + { + "client_id": "9eb7ff8c-51d4-4f65-869e-052a15357d16", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7427 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5738 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4985 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3898 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7861 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9121 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8459 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7300 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2730 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2267 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3906 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9823 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5967 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4046 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3335 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3619 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5771 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4524 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8514 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6561 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1970 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4902 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9493 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3906 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 209 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8220 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6585 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9273 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 140 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6819 + }, + { + "client_id": "01cf789a-fe64-4a40-8205-86c8d8cbce0c", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2125 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 711 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2097 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2532 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7727 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6480 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9572 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4522 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5443 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8231 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1701 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 480 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4760 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5551 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8350 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2769 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5495 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7613 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4342 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6848 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8576 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 747 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1476 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2044 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1820 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7048 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9679 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 465 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3057 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6031 + }, + { + "client_id": "78f61a21-4f34-42a0-b927-68d181f24bde", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 610 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7635 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6496 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 515 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3151 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1888 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7255 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 150 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4277 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7856 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 484 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3399 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8714 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2437 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 202 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2004 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 637 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8390 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7736 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 468 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2458 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2361 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9473 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8186 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5724 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2655 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4193 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4565 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6081 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8308 + }, + { + "client_id": "9b7102be-d222-499b-851c-d9de9dc4a33d", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1083 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9784 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1081 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7042 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6662 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6783 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6082 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 629 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 501 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3919 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4499 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4837 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7415 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7668 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3674 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1484 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3037 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7251 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9600 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8153 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2104 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 861 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1878 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7442 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8307 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4432 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6157 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8401 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8479 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8272 + }, + { + "client_id": "cb529521-a171-4270-8119-3bdf1f630fcc", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1733 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3588 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9615 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9837 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 356 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6448 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5399 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 558 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4809 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3385 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8396 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8818 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6455 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8062 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8704 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6859 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8649 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2168 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7694 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8352 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 347 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 103 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2171 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8803 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9015 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9190 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6090 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9882 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3853 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6308 + }, + { + "client_id": "2d1d98a2-b82a-4a90-b6b7-261a2762b458", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 614 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5012 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6155 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7420 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4025 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 986 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4929 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 708 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 754 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4682 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3292 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9813 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 626 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6695 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1689 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9604 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8042 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1620 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2822 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4608 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4995 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9522 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8665 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5118 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2028 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9815 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4894 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8704 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6507 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3998 + }, + { + "client_id": "cf824aa6-fed0-44de-9d57-df8dc40b581a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 106 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8578 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1214 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4236 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8861 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9722 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5812 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 919 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3580 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4781 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5084 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5350 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 598 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7489 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1278 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5850 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4918 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4090 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9270 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3639 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7343 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5538 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4567 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1354 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5347 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2518 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8684 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3563 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 283 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5104 + }, + { + "client_id": "bcbb27a5-a10a-47e9-abeb-13afd0853184", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7124 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5483 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5606 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1588 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7865 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7161 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6287 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8278 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8317 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4361 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4666 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4652 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3137 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7944 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6986 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7319 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9376 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2142 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 861 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 383 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7976 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5110 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4482 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9460 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4349 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4594 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3856 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9600 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5831 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2441 + }, + { + "client_id": "806fdc59-0f5a-4983-a00d-9d339fb33256", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1362 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4493 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6680 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6321 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6923 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2872 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4542 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1225 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8627 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2808 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 790 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1014 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7010 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6441 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 726 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2465 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4126 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9860 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1342 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4921 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3737 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9446 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2516 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5738 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4625 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2881 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6948 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6302 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6439 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2413 + }, + { + "client_id": "7a32dde8-8e8a-47fb-8c6b-37dc27a10c4a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4644 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4976 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4794 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7218 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7539 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9049 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3734 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8646 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 52 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1512 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8225 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6170 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6261 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9591 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8573 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 534 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 107 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 821 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6464 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9024 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1200 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 404 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5158 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6576 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3881 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6926 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6152 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2326 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5719 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9775 + }, + { + "client_id": "24ca0493-f653-4d74-91c5-12daca050637", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3246 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9292 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2160 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2505 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2583 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9164 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9699 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 299 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4056 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4897 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7358 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3291 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5150 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1833 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5219 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 515 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 641 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4633 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1206 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8616 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8985 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6003 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 608 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7645 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8793 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3423 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3754 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5891 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4302 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6652 + }, + { + "client_id": "7b42d3ca-0c09-4dfb-8e7f-16afe8d09674", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6317 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4487 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4229 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7984 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8012 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9919 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2671 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2710 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3130 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8732 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9065 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3594 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7815 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2743 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1433 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2758 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5600 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3051 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1255 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1933 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7789 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7220 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 231 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 990 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6076 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1152 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2655 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2241 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4674 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6539 + }, + { + "client_id": "662e0ef8-ee33-4d85-8a26-724b1f8f0fe5", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2350 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 383 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6985 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 699 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 815 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6567 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9427 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8861 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6789 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4630 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9004 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8779 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1781 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1277 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5110 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4839 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3065 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8822 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4087 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 909 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2016 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5375 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7855 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1932 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6002 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1360 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4040 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3312 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9344 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2096 + }, + { + "client_id": "5cafe795-341c-4200-b22a-05c30aa82280", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4036 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3841 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9682 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9995 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5020 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2480 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3429 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7741 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2656 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5560 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8971 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7310 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1752 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3046 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5933 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9191 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1684 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5125 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6928 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9513 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3419 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9753 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8854 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6185 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8994 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3514 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 276 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5004 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1162 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6814 + }, + { + "client_id": "89aac43b-ad7d-4079-b8a1-920cd178f4c6", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1459 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3043 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8045 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9108 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 258 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 436 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 643 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 246 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5764 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2841 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 976 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7016 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2636 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4006 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4036 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3806 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9831 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6722 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7497 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3746 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 312 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 204 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8135 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2319 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3101 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2478 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4926 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4165 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5233 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7366 + }, + { + "client_id": "28854f47-2b30-48ff-8f70-6b548bf0fc28", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6361 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5986 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8742 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6223 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7314 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3694 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2593 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3064 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6964 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 806 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7738 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7817 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 149 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1847 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7172 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9533 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6574 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8580 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5028 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8848 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1008 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7331 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5602 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4135 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 269 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9283 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9785 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 902 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1611 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5555 + }, + { + "client_id": "714fb546-6198-4ff0-a3eb-9141b169a8cd", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9007 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 737 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9979 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2908 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5523 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3268 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1722 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1497 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6768 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3798 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1403 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9752 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3173 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7798 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5209 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2540 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8903 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1930 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4944 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2185 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 340 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6060 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1892 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5975 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 303 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6123 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4762 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 226 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4433 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2462 + }, + { + "client_id": "a6332c73-7ba6-4149-b7e5-b62630639368", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8053 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1120 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7179 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6769 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4365 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2038 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 16 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7087 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8980 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6416 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2815 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1500 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4858 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4818 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4650 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5154 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2612 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2740 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4751 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4321 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2005 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3538 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9179 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2238 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2493 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6353 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7582 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 226 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8235 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3670 + }, + { + "client_id": "a4066afa-f291-4b96-8962-6c24daad633f", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7503 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7534 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2968 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7889 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6077 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2169 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8319 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8493 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7101 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9307 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4714 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8471 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8615 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7210 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9865 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9839 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8150 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6142 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6248 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7568 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9629 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8947 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6868 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7019 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9539 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6007 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3521 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7559 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2185 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8094 + }, + { + "client_id": "31c7c70b-da91-4503-b578-c6bf774e2389", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4386 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8279 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5374 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 855 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2357 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1273 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7715 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6366 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5227 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7976 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8112 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9249 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8645 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7769 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5275 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6480 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1437 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8915 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3441 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7964 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2946 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7122 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7690 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1586 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 846 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 868 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8831 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1194 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5873 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5422 + }, + { + "client_id": "6cee9162-398b-4059-8e5f-89e01258d2f9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9433 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5964 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4529 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5414 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7564 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6833 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1531 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8912 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7314 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4938 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3647 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8437 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2445 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6425 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8257 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 469 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7450 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9919 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6483 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5481 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3828 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7127 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7174 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3002 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7443 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2936 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2928 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7676 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2225 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 14 + }, + { + "client_id": "ba298de0-3f93-404b-871e-0dc503a56a0a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7410 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4471 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7373 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6389 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2206 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5962 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7918 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1298 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4830 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 950 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3130 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4754 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 482 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6500 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1507 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1308 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1268 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3593 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1275 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2786 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1871 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 75 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9797 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4465 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6709 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5878 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 640 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 109 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8389 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7883 + }, + { + "client_id": "2fe595fb-7ae8-401b-a058-004fa7a8ee6a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9134 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4130 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1085 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9143 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8284 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 617 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9572 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 447 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4008 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1086 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5619 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7267 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4766 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9973 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5821 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7644 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4527 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7754 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9501 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8016 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5566 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1232 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3033 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2766 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1249 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4885 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4645 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3988 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 730 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9586 + }, + { + "client_id": "3522ffae-5665-4e0b-9701-3888482ef4de", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 945 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 653 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2129 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3438 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 846 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5973 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9889 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 670 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 749 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8846 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4757 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2289 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1278 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3078 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3281 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5508 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4465 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5540 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9500 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6475 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8086 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3101 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4214 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1412 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8727 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5005 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3060 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8814 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7852 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 539 + }, + { + "client_id": "14ca4710-008e-4929-a470-c645dcbd0824", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9332 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3886 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 152 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9353 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7529 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4320 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6115 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3450 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4352 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3742 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5554 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3193 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5785 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6735 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7831 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8587 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 580 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7905 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1357 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3674 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3264 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7356 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3323 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9563 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9778 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 329 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1700 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 658 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 417 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3891 + }, + { + "client_id": "96b1cd29-8f99-4ddd-aa25-525ac6d320b8", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8239 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1880 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7323 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2687 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9006 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5624 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6652 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1647 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6982 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9375 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4806 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6275 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7419 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4891 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7532 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4026 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7311 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9321 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1528 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6998 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 465 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7102 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5313 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8083 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7574 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4060 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2931 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1901 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5089 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6515 + }, + { + "client_id": "6b2bc023-92e9-4654-ba31-50cc6500b512", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2304 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1089 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8394 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8308 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7213 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7436 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2482 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3216 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6168 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8095 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6674 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9719 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6244 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8805 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1501 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6555 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5964 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2286 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1875 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3937 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 274 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 791 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6412 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8484 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9567 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4866 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5342 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5785 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1551 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6354 + }, + { + "client_id": "684cf8a7-3001-436e-a7e7-512df8f114c7", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3746 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 359 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4295 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4933 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9148 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2314 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7847 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7408 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8492 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2251 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8757 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1611 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9012 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 636 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4460 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2336 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5548 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8577 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 448 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5342 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4626 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 799 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6627 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2443 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5919 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9661 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8886 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4344 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1438 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4370 + }, + { + "client_id": "0efb64ef-2edc-418b-9fa1-f10709b8337c", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6910 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7383 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6944 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8094 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8683 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 467 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6541 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5316 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2264 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1123 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6693 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5757 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5803 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9825 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2441 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9242 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9264 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4019 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6512 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8638 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9204 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2631 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6715 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5817 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6298 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7738 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9374 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8601 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2927 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8069 + }, + { + "client_id": "71e94eed-7e21-4407-9f19-77b6a2139c84", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8657 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2948 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3172 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6790 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2687 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6230 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1547 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 749 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7775 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7188 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 235 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8676 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4919 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2656 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2626 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5758 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8574 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8610 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6218 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1772 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8042 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9244 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7312 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4687 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3982 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 746 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6569 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2722 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7913 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4935 + }, + { + "client_id": "e110c182-0b1d-4c3d-bd8f-921f1421a17a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7442 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2681 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9882 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8997 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1134 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9304 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3670 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2687 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7455 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1168 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2638 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2772 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3818 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2299 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1010 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4602 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3474 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9225 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 854 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9399 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 643 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3186 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9817 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4821 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6553 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9731 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3623 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3402 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1395 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5177 + }, + { + "client_id": "7519daff-d2e3-4c2d-bb45-c1e5b94892bf", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9596 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1125 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3297 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7523 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8751 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8131 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6916 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8872 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8969 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3652 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7162 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9953 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5861 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4539 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7725 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7070 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6720 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3216 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6765 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3456 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3790 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9814 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6705 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9524 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2048 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5272 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2639 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5107 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8344 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2614 + }, + { + "client_id": "81fccb05-5a66-4a77-ab72-b2be02b432a0", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6311 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 538 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2018 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8326 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5536 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8811 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9826 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9995 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2911 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2401 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 733 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1078 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3308 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5854 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8591 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7709 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9734 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2017 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3410 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1947 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1836 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9928 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1339 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2217 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3535 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6046 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7489 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8612 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8142 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5357 + }, + { + "client_id": "2b2b99c7-bbd2-48b7-93d9-e786ac6fd429", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8143 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7172 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1322 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6800 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8878 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3927 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7182 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2583 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 975 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2587 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6661 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2000 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1039 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2197 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8325 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3259 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6984 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6332 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8909 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5142 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9834 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8117 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 232 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3579 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7567 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3030 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3639 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1512 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3525 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3402 + }, + { + "client_id": "87f5f03b-f4f2-475f-b1cb-6201fb56da7a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6701 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2647 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8687 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9922 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2128 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9085 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2351 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8803 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7954 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2322 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9569 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4971 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2598 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1176 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1814 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1848 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6355 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8045 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5685 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5351 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5850 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6485 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8475 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4253 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3612 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5966 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 894 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5737 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2853 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7616 + }, + { + "client_id": "3bcfd234-15f3-4f36-bc64-4f7c48a62d00", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6429 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8167 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5865 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3795 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7943 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4494 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8166 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2871 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5102 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7032 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7016 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4263 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2687 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9328 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1717 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2637 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1806 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5380 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3833 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3502 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5426 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4405 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 26 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5112 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 476 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1155 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4626 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3491 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1190 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5299 + }, + { + "client_id": "d20105c2-c09d-4725-bded-a69a575fc47c", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 690 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4167 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5384 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3039 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3949 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 259 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3349 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3448 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8096 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5221 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7880 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9423 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 245 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7880 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4376 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4049 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4035 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1968 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8087 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9256 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4944 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2089 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8313 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 247 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7895 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 428 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4886 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3022 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5661 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4969 + }, + { + "client_id": "23ccface-5007-4597-b0b4-a83e9038ab53", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9538 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3843 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 230 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7517 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1198 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3156 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2866 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6731 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9751 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5603 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 514 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1586 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2484 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4975 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9107 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1269 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3587 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6842 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9540 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1509 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4605 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7595 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 691 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3440 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6052 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 736 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2191 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1052 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3579 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6597 + }, + { + "client_id": "d3304558-cc6d-4da0-9e3a-932dbb8acc59", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8023 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7165 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3285 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7842 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 440 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6769 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7699 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3814 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7032 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8456 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5587 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4223 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3330 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5414 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7576 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8425 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2826 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 470 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3900 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6200 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3212 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 49 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4793 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1711 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6819 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6005 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8943 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5739 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3017 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8444 + }, + { + "client_id": "db6cc965-51e9-4056-8aea-57fb03b4c061", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 372 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6675 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9821 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7993 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9308 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8019 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3861 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8731 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9991 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1202 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5985 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2350 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7338 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 410 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9028 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8057 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6155 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2115 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7381 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6482 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6189 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7189 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7764 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8727 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4881 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8780 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1784 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 510 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 448 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2837 + }, + { + "client_id": "b597a003-bad6-4e68-bb20-2f0ac7c2f650", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7343 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2419 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2530 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7568 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8280 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6936 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4386 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7846 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7465 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2029 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3936 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3388 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 275 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9341 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6443 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7166 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1407 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8486 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9449 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6524 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9602 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3330 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6460 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6888 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8484 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5915 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 115 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1296 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7419 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1655 + }, + { + "client_id": "5318bae9-2ad8-4395-9a9a-e5f5a6925582", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5990 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7442 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9181 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8117 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7039 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8761 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3199 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8034 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8580 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4593 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3119 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9673 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9333 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9948 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4235 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9927 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3067 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3179 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5928 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4180 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8406 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 459 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7014 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3588 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9298 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5813 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8934 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8436 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6264 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 468 + }, + { + "client_id": "40e90e4d-2d2a-470e-9ace-3e9b28f457de", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4598 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5938 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9902 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8226 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9739 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6974 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2843 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5661 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9604 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1066 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1237 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5439 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9512 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 917 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9472 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9652 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9963 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6067 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 588 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 264 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6137 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 658 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1258 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 135 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3706 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5329 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1062 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7454 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5576 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3225 + }, + { + "client_id": "4bdea4e5-388d-41d2-8893-578bf4fae474", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6782 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2724 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8810 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2759 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5356 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7952 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1456 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1626 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7699 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9468 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7375 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2582 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3097 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4038 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 823 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3443 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1509 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2651 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9031 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1768 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6040 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7326 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3657 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 317 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7270 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6498 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8960 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4326 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6432 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3535 + }, + { + "client_id": "38d4589e-2d59-4d35-bae5-fc687c127efa", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4417 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8021 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8261 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1566 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3532 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3700 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3939 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7601 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7373 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 691 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2310 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5522 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4544 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2027 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5190 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9872 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6085 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1659 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8475 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5857 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8745 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8534 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2968 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2028 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 904 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9439 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6326 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5496 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3611 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1009 + }, + { + "client_id": "ffa424b9-15a4-4914-8ccc-fa1474fc6719", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4137 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4580 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4407 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7251 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5271 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4025 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 993 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5058 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6943 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8736 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1840 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8419 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3543 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1188 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3670 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3918 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2242 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2607 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8155 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8195 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8300 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2205 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1797 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6414 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 982 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9261 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 970 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7335 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 271 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6381 + }, + { + "client_id": "879937b5-c562-4023-8a88-cd946752f134", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9952 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4135 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9095 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 830 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1546 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8444 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7021 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5199 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1683 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3342 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4574 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4471 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3537 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1246 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4911 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6633 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3709 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8064 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5012 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9191 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1747 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5461 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9709 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2033 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6814 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4891 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2347 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1759 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5027 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7548 + }, + { + "client_id": "41972e18-c24b-4e13-8f9e-050eb4c40015", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4868 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2422 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8586 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8640 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9103 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2983 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4684 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7551 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 129 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2658 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9785 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6059 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3203 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3243 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9075 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8046 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4605 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3792 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3359 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9419 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6152 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7354 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7056 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6414 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7431 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1541 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4430 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8828 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7721 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6000 + }, + { + "client_id": "4c1fa4bd-22b7-4691-bf86-61020b045dea", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7702 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9414 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1053 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5310 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9657 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 669 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9297 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2278 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3566 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9268 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3861 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4197 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5148 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4662 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2285 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3931 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4610 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 904 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7316 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4213 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5031 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4772 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9278 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3228 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1680 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8577 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8482 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 53 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4168 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 726 + }, + { + "client_id": "27f1867a-75bf-4341-bd88-2220e2f24727", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 114 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7230 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9106 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7659 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8759 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1914 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9562 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8769 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3380 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8848 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7202 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2504 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8525 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1633 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6718 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2012 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6708 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5051 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1606 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 524 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2617 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 105 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 360 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1771 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6166 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1551 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2061 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1088 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6161 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6399 + }, + { + "client_id": "2e09e6c0-9986-42aa-859d-f520eec6a5b7", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9388 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8833 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4800 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5709 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9118 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7493 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2083 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2729 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7517 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4642 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2549 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4417 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5960 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4423 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4516 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2328 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3105 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8451 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4520 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6285 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1828 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4303 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 98 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5715 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8685 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4123 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 408 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2720 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 758 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4833 + }, + { + "client_id": "dab3f2c0-7198-43d7-9946-fcbd55476f27", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5734 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5975 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3081 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5033 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8503 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1135 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6010 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 397 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6115 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7926 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6790 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9589 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4927 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6866 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 478 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4093 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2319 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1973 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6338 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3277 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5467 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9926 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3534 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4110 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7837 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4759 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8327 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3356 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3215 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3612 + }, + { + "client_id": "3763bce0-dd33-458e-ad61-e0034cc8e56b", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4745 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6054 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2595 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7734 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3126 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 422 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9929 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4127 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3522 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3270 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9789 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4110 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8135 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 938 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 369 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3628 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2849 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8873 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8366 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1551 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5955 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8556 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2345 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2007 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8158 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3575 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4794 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7053 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1026 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4097 + }, + { + "client_id": "85c18c47-ecd5-454c-a3d6-f97889dcd140", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7479 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2723 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9307 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7550 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2023 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3716 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6810 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5790 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1092 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2246 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 89 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7129 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2947 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6765 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8651 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5720 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5112 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3901 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7311 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1296 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2137 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3417 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1238 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2720 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3699 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2248 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6267 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1873 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6909 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2716 + }, + { + "client_id": "708733a8-bfce-4d05-957b-aabcbbb215b9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 272 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1009 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6995 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1437 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6611 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9980 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5346 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8044 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 132 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2878 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9793 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7779 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2931 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 282 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 830 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4840 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9094 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6122 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8285 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7324 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4940 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9732 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7308 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8327 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3176 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7344 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5283 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6044 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 917 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6304 + }, + { + "client_id": "fd287f3f-fc8e-4a92-81f3-d92eeeaa1815", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5084 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4525 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8114 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3475 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2615 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8242 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9807 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 554 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9307 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6146 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9386 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8772 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4430 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2021 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2296 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7835 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8004 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4962 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9925 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2373 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4154 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7690 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9712 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2366 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6145 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7496 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6610 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9400 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5721 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8807 + }, + { + "client_id": "19988bb3-c68c-465e-bf6c-3614568f1d95", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 928 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2866 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7269 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3229 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8426 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7039 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9508 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 524 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 550 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8424 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5579 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 454 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 262 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1232 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 153 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4400 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5699 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8277 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 81 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2145 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2979 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 13 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1854 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2382 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5188 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7026 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2876 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7221 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9965 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7222 + }, + { + "client_id": "a083268c-a185-444a-aa0f-8c4aa63d8178", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3539 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6206 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5834 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7588 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 935 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1290 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 306 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5411 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 840 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3313 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6955 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 385 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8518 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7744 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6772 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6756 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 281 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8148 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1017 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3488 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8444 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5577 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7904 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8230 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6870 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7374 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9676 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5169 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5853 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4307 + }, + { + "client_id": "c95eeb35-6a4a-4cbf-af8a-a24254a14b10", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2292 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9212 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 172 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6613 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7322 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4363 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3758 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3110 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7912 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6325 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7795 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7696 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6050 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 899 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7659 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5081 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1340 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 912 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1647 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8075 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6046 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4574 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1573 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4020 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4817 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2598 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9537 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9375 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1779 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2848 + }, + { + "client_id": "20b9ea09-f5a1-48ab-8bd5-5e5efdddfb51", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8504 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6920 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7705 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6771 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2693 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 825 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8349 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6785 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5060 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7286 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3854 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6158 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4822 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4415 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 96 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 35 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6364 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8582 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4131 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 224 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3859 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1672 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8879 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9902 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5832 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4623 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 916 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5197 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 307 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4679 + }, + { + "client_id": "8e8f0a9c-8dd1-49b8-80f6-c259ae7a6d0d", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 420 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7629 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9543 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1993 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8894 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8328 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8477 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6598 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4859 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1905 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1056 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 317 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3527 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4205 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6017 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6009 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5053 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8591 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3736 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 96 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1192 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9346 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5174 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3565 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8296 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4279 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4778 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8649 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6569 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1342 + }, + { + "client_id": "3659d3ae-7ea6-462d-9786-3593b95628e4", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5793 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4954 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 403 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2920 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1920 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3900 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 170 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5037 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5811 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9377 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8879 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1298 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9593 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7868 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 71 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4275 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4384 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9410 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4189 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5688 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5154 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2920 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3025 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8459 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2172 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6532 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4543 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1350 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9359 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5240 + }, + { + "client_id": "aeaaaeb0-07a8-4dc3-befe-5ce3b1fe74fc", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7718 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 484 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2922 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9042 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8597 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9399 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3234 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6503 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9348 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9546 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7323 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3383 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4585 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1167 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1801 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9682 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4170 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5713 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6867 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3264 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3313 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3689 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 444 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1423 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6027 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3781 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1312 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9702 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4895 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4091 + }, + { + "client_id": "35c2c98d-f2ba-4585-a752-79cff2a3f87c", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6204 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3018 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 435 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1724 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7515 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3330 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4437 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4027 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 848 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 126 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 409 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2884 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4044 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4553 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7262 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1899 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8109 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3812 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9358 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2285 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4386 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 638 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6929 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3793 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7173 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5622 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9284 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7837 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8120 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4253 + }, + { + "client_id": "d04db6a9-d1fb-4ade-a756-fb1e63bac0d7", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3687 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9588 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7492 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2633 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2728 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1048 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 903 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7344 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3248 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4869 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1900 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 550 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2970 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7793 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2915 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5407 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8762 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6506 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1850 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1858 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2958 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6351 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5851 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6600 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9811 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8947 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9709 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8154 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9055 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 373 + }, + { + "client_id": "4a8a14ec-c851-41b7-9d97-b5bc3d886840", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2876 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4440 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4921 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4399 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3353 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7412 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2863 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2829 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9545 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 165 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3935 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8757 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 471 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4648 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5784 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6870 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8658 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3523 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3359 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6224 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5008 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1940 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4567 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9012 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5626 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5759 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 346 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 600 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4165 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7800 + }, + { + "client_id": "0a8f59c8-0d6d-434d-8043-275e24f0e959", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3880 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1723 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3398 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2269 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1129 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2453 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2074 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1846 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 703 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5166 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8583 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6661 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3636 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1659 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1545 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6565 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3209 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6313 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 870 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1409 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2440 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4354 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6065 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9150 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5788 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4595 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1430 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9648 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3830 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5421 + }, + { + "client_id": "ad3e044e-8550-49a1-9454-ebcba7a79c21", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9913 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5716 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 523 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4359 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8755 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 932 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8265 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6935 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1432 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 624 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3672 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3451 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6079 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8178 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2844 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4585 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5010 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4059 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4701 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6179 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5247 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3723 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6207 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6577 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8930 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2230 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2066 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6321 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3769 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1496 + }, + { + "client_id": "ae4e43a3-1c89-4128-b83f-9210b3f3769d", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7547 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1515 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1763 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 306 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4578 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4754 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2818 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3287 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3872 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 895 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5542 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3429 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3717 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1817 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 225 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6520 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4559 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8926 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7923 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2576 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6657 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5900 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4699 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9298 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9479 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8978 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3052 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3762 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7370 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9136 + }, + { + "client_id": "9e177a8d-c957-4982-803e-9a884ffb36b9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2485 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6998 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7560 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6288 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6625 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7341 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3185 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7846 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1878 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8643 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5252 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8388 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2725 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3737 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5274 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9819 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7170 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7224 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9992 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2436 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6068 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8167 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9188 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 981 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5364 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6071 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7804 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3450 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3035 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9585 + }, + { + "client_id": "24909d79-5398-46c0-af00-502e75f89553", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1882 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1074 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3287 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2134 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9012 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5167 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8155 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9879 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4436 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5882 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1105 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3403 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 437 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8956 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7364 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5304 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7338 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6977 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8421 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 443 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5480 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4159 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8447 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5357 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1720 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3852 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3971 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4702 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 74 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1025 + }, + { + "client_id": "5b66e6d2-3df6-4a27-b14e-0c4e746d0497", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9117 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7588 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6105 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8669 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8881 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2528 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1521 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7953 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8423 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5256 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 151 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2843 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8008 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8615 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1108 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1683 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7531 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 993 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1087 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1359 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6279 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2555 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2339 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4803 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8403 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1182 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 728 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9939 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5869 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 659 + }, + { + "client_id": "0c0066fc-40ff-4ce9-a1b9-b19f88e7ba2d", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3622 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1737 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2392 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7098 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1098 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7959 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9895 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4326 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2425 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7714 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 75 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9786 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3468 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2703 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6025 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7226 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2610 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2606 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6333 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1281 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7197 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2050 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9709 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2773 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3042 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 681 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8527 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6580 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6742 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9031 + }, + { + "client_id": "43be0a65-3980-49c2-b4d8-faa48369796e", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5233 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7658 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1738 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8297 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4725 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6756 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2703 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3905 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5311 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4082 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2391 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9668 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9024 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 125 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7586 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6284 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9090 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1167 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5504 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7528 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6393 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9483 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6206 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4296 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3845 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8380 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4111 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5739 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8469 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2261 + }, + { + "client_id": "c48021cc-01e4-4f27-8f0e-4cb8507be326", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9072 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8835 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7741 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4000 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8187 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3050 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1417 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2311 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9974 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9071 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9904 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 754 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9937 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5000 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7655 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9549 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3204 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6716 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3165 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 404 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1244 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3596 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6153 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6651 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1767 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3838 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5323 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8396 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4137 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1926 + }, + { + "client_id": "2b261cb4-0782-4f1c-a8be-164cc9ae71b1", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3045 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8622 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3551 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2937 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4843 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8436 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3358 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7208 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1464 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 939 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 236 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5760 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5334 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3020 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 473 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 835 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3872 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2945 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3979 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9209 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8829 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1555 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3777 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3994 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 883 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 325 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 282 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4851 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2662 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2144 + }, + { + "client_id": "083cc980-e2d7-472e-9ec4-500d3d882d9a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9930 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 210 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1286 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3353 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1146 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7419 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5868 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4347 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7361 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4901 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 682 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7967 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7437 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5523 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7273 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5544 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7897 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4520 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8100 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8259 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2708 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2038 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3487 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2188 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3894 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8560 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9834 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1032 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6018 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8682 + }, + { + "client_id": "fdc252bf-718e-4056-b7aa-1f99887793e6", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1801 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7241 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7879 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 550 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2942 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5696 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6859 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4418 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8872 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8151 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2899 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8338 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7181 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 849 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6161 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6288 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7391 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4636 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5069 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9196 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7701 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5727 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5600 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1190 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 319 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1665 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4372 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6758 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6526 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3309 + }, + { + "client_id": "836d77e0-baba-4e13-8dfb-4b06879045c8", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1448 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9548 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1774 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 756 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1503 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9006 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5572 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5711 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4786 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 910 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5766 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3577 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2975 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4177 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7841 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7636 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1472 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8141 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5176 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 995 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8078 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7226 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9496 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7899 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5519 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2691 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1044 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7571 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1690 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6317 + }, + { + "client_id": "680e1cf8-1a6a-47b9-96fa-1560d4cbab63", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3376 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3380 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4657 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2248 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4980 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3562 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2611 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5348 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6547 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4586 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3018 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3399 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5280 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6729 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9723 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4606 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4855 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2794 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8637 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9278 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3279 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5942 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3982 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8715 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3722 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 719 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6420 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2458 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9787 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 176 + }, + { + "client_id": "477d1e55-ab41-45c4-a01d-adbff37e9cce", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6117 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7523 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1398 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9037 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3153 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 664 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1987 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8855 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4767 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4012 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3984 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9866 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3294 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3796 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1240 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2954 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3712 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6801 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1868 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6037 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6576 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2905 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4398 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9907 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4223 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 483 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8683 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7979 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 354 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3265 + }, + { + "client_id": "a946fec5-e4d6-4105-aa98-2147585e3767", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3373 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4363 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1200 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 761 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4017 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9843 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1542 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3108 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6807 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9846 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6420 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2785 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9322 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7727 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6261 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7815 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5719 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7681 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1941 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8809 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2416 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6611 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2094 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9587 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6893 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8968 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4960 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7133 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 422 + }, + { + "client_id": "254df14d-1351-4894-a08e-620a58d32062", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1875 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7595 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2660 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4556 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3316 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 172 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2698 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9815 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8945 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5250 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7575 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8700 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5414 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6578 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8211 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7975 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3283 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6847 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8296 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8860 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3595 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6192 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 876 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4149 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4849 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 150 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9789 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 713 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 803 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7889 + }, + { + "client_id": "82841ce6-b218-43b6-badd-25798611a8e8", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4361 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 800 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4163 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6749 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4597 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8366 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6253 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8705 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4424 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1887 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5105 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1234 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1685 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9685 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1776 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1952 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5198 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 339 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6282 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3111 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4668 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8631 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3512 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8296 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6067 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6061 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 316 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4591 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9084 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8236 + }, + { + "client_id": "88ac3fe6-1dfd-424a-88a9-4db6d0b36d63", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2750 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8615 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7276 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5564 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8232 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3140 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1954 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 26 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 900 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7468 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4162 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 817 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7486 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9831 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9137 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5013 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6633 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3663 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2951 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8391 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3650 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5261 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6597 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2356 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7483 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6154 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 870 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7145 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 941 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4170 + }, + { + "client_id": "517a53a5-61cb-4246-ab6b-cc12880aaff5", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3615 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2058 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 256 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8982 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 588 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 215 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9354 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 202 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7489 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7491 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1441 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8309 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9321 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3364 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1971 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4228 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4944 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7151 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1335 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9907 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8573 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8252 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4255 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3789 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6992 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1486 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1594 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9762 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3560 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8309 + }, + { + "client_id": "9b294d8c-5331-45d4-8cc2-110d83a55e2f", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5107 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 4059 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5511 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7939 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2482 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3232 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3194 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9967 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2211 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7023 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6097 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4792 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6208 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 344 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2604 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9317 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6311 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7164 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7591 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8337 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5265 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7158 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9603 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6755 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4974 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5296 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8059 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3403 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7134 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4609 + }, + { + "client_id": "d80291f4-1b08-4936-9bca-e498134d5f29", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8216 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2246 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4254 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9311 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 845 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5175 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3440 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4586 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5570 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7408 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3910 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8728 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5099 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 324 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7672 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4512 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9564 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6377 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8991 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1426 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1122 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9804 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4672 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4003 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4355 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8908 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 630 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2117 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1073 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3738 + }, + { + "client_id": "d695d852-1fa6-4d1e-8983-1baf2d8e8061", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7342 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2920 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6204 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8449 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4949 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8301 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5018 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9428 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1372 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 743 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7799 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2782 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9166 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7074 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9548 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2850 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3681 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 744 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 966 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8639 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 161 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 951 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6746 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3736 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8821 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3866 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9668 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7764 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7746 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5270 + }, + { + "client_id": "9f3d0011-04a2-48ba-9768-83bc4a67f441", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8338 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2730 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4201 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5657 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5087 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8423 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7600 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 641 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8234 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6336 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2176 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1686 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8129 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2875 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1594 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6463 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9241 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8425 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 625 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1025 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7502 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9937 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1930 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8574 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6127 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8126 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6518 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6809 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9879 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3167 + }, + { + "client_id": "6a5a9ab1-b19e-4fcb-a4f5-ac2b7126e1b3", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9764 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7270 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9059 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9043 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1136 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 149 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1369 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5051 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 550 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6397 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4489 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2346 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6107 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6833 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4306 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7775 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 277 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8832 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4275 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3321 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5655 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3958 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4427 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1153 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6950 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8021 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7857 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2185 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1889 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5305 + }, + { + "client_id": "1d253fac-63a5-40a7-8cab-47b338db0661", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5453 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5834 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4078 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4129 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1611 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8491 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2682 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9961 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5257 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7715 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7493 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9656 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 976 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1648 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 413 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8674 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6113 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8854 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8114 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4450 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2116 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1847 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8548 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5806 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7259 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5694 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 204 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1092 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 844 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7591 + }, + { + "client_id": "c7ec92f5-7bfe-4e35-9259-0090dc99b614", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5095 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8625 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5591 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6439 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3059 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4189 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2720 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2423 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1476 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1106 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1343 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5187 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4984 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5354 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 770 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8812 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 830 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6276 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 47 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 146 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9929 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3382 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7250 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9891 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5459 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4208 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2381 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9107 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6575 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 169 + }, + { + "client_id": "9827b833-a02c-4a32-a080-dfd9f0ff97b2", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8191 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7140 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 454 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3116 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9855 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8342 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6894 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2259 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1708 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1241 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1301 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 679 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3591 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9608 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6108 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7281 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3493 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2057 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 196 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7553 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4393 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1391 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5821 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8648 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6318 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4625 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8453 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5648 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3623 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7035 + }, + { + "client_id": "52ff68d7-969b-41a6-87b1-16da5ff3ecfc", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2202 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3142 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7179 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3073 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 116 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5449 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9857 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7734 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4744 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 152 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7913 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 310 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3023 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 328 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 610 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9899 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7490 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6247 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8825 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4450 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5826 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1678 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 530 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4037 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8001 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2256 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 492 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4652 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 402 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7337 + }, + { + "client_id": "ccb4cac4-98cf-48e1-95bc-10d233b2467c", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9654 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 146 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4096 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9084 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3720 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7412 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7042 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1763 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2007 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2444 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7001 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3402 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4940 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9050 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 862 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8532 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5281 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2083 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5059 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3577 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5117 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7289 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8683 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5317 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8725 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8652 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8532 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3322 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3535 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8751 + }, + { + "client_id": "0632e58f-fa4c-4a7e-9931-2b837091a9d6", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6686 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3782 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 22 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7685 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2334 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9453 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2672 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5385 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8569 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 738 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3968 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1756 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6635 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5644 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3682 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8790 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5366 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4289 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3310 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6978 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1402 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6023 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7760 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7002 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 369 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 914 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5952 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3231 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9466 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8937 + }, + { + "client_id": "752cf6a6-9a0b-44b1-8619-edb012251ee1", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9650 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 84 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1665 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1582 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8037 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9217 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4381 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5517 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8018 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 703 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8277 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4149 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8964 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9813 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7543 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6187 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3919 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9008 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3262 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2716 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1268 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6308 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5528 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8118 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8707 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1177 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5589 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2308 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1564 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3211 + }, + { + "client_id": "a224347b-6c10-477c-ac4c-25af1f5c28a5", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4542 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1560 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6764 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5322 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9022 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7090 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5781 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9993 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3353 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5955 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6860 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 37 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5413 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 433 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1282 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 523 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2163 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7304 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6430 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4054 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4686 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7446 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7047 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8541 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7097 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 886 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7193 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3881 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7515 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6680 + }, + { + "client_id": "22a1584f-09e8-4f7f-b549-dd05bf154bf3", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2367 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8924 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6814 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1029 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 304 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5441 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6324 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3022 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9444 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1414 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8935 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8004 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5197 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5217 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6766 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1482 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2514 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8286 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3319 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8618 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2398 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7096 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2291 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9851 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2199 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7611 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2137 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3503 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7693 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9619 + }, + { + "client_id": "3cd1c4e9-913e-4793-ac7f-384992a42558", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7471 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3958 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2310 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3825 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9310 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4984 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1863 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3807 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2240 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7263 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4950 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9499 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 127 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2488 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7628 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5000 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 506 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 879 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4666 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8873 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5284 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7733 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4888 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1373 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3857 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8736 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1924 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4407 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4994 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6458 + }, + { + "client_id": "8fe28057-6e6e-4bc5-80ab-6c3b5f10bd75", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3854 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9985 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4783 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 841 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6403 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8986 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8446 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6850 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2312 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8135 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8604 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3396 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 463 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 386 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2610 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1126 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3451 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4492 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4766 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5281 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5832 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5938 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7503 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7528 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7799 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6279 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4881 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8113 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9822 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 98 + }, + { + "client_id": "33c72635-4125-4a02-bf8e-7d19d8fd5771", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6966 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6009 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7707 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2825 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 724 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5716 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7589 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7436 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8340 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9787 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7736 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6636 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7614 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8513 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3994 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6914 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6321 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7138 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7873 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7229 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4105 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9056 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2652 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8448 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9157 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1097 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6175 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9531 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 16 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8215 + }, + { + "client_id": "6fb83d6d-c442-4c9f-a987-b253522a6f19", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5063 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9728 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8548 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6118 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3688 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3817 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4315 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2438 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8757 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9531 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 598 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3158 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7376 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2904 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 797 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4698 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3279 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5908 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7370 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7814 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 121 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3484 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3363 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2049 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9868 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4238 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7729 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2487 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2863 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4337 + }, + { + "client_id": "5db46432-3d94-43c5-b360-3cbd74abc830", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9522 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5937 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 423 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6300 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1122 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5883 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7654 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7782 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1710 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8612 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 718 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5121 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7915 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 188 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4444 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9326 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4566 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5737 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8936 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 736 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2631 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7033 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7955 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 675 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1662 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5103 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2993 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7812 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4845 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2095 + }, + { + "client_id": "0f931c6a-3271-4fdb-ae32-bf9e5bf9e164", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5381 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 310 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 667 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8998 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4527 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9940 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2199 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3250 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8969 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8957 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6914 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6367 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9552 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6117 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2267 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7030 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8486 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1347 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7895 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6897 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2264 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5828 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8939 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8884 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1158 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7521 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4413 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6028 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1219 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 10000 + }, + { + "client_id": "2c7d4139-f70d-4a7b-ab7d-6795c59de6fb", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2375 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 773 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2966 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4546 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4485 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2621 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5314 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9723 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9989 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2023 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 184 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3657 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 1146 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1181 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6414 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6268 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7455 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1891 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 150 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3952 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 881 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9653 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3114 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1796 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6685 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7155 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7612 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3417 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5481 + }, + { + "client_id": "b4228988-cbd0-4344-b21e-27b9fedc9eb4", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7968 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1928 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6524 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8077 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5535 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6820 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2951 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9218 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5992 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2857 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4365 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4237 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 370 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4487 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3638 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4878 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4981 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1846 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4416 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1073 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9622 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4290 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1850 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5671 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8821 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4820 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6235 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4138 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9331 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1545 + }, + { + "client_id": "056531af-a458-4fe2-a65a-787dd657637b", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3346 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8124 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5606 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6366 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8099 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1617 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3896 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8536 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9943 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3134 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7466 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2616 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7874 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5282 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 223 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4616 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2648 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9529 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4934 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2836 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 778 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1694 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6000 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7522 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7730 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7557 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6184 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2029 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8267 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6088 + }, + { + "client_id": "c4073a98-a8f5-411d-9958-a150ab36e766", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5505 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7166 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6981 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4422 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8659 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1266 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7663 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9501 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3755 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9979 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5296 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9459 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2106 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5845 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6793 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 939 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3934 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2227 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7745 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9462 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9157 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6069 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 587 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5263 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8335 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1927 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 463 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8083 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5734 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7953 + }, + { + "client_id": "4fd820df-3b59-4029-934a-d5f42b536e4e", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8273 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3857 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9672 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3338 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4655 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 138 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5003 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9898 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4798 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4770 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 197 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3065 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2109 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7223 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5557 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4220 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1242 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2700 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2457 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3880 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4795 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7524 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1197 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7598 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 431 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7635 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 856 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5415 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 158 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6081 + }, + { + "client_id": "7820387f-a8e3-4a72-80ef-6516b30ae8af", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6882 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3573 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1909 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9173 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 767 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9678 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5448 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3022 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9308 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7539 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4450 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9167 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6270 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3479 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4716 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7731 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2161 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3998 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4244 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3185 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8694 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7696 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 922 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2145 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8280 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8230 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8979 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 175 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8556 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2276 + }, + { + "client_id": "67577db8-6859-4b37-b04d-29f256cc5a70", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 989 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2333 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4920 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3888 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5588 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 5117 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5133 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5662 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1474 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 843 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7698 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4376 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9567 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 73 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5353 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6690 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8880 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8170 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1759 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3066 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2246 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2550 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8505 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 351 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 262 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7509 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 379 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2026 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2759 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 52 + }, + { + "client_id": "d8ee9523-2f72-4b1b-aba8-b7a4adf7ac6a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3644 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1033 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1604 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9516 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8719 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4638 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6839 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1200 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7838 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 332 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1641 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8082 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4751 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 9956 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8341 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1178 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3359 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9762 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 4113 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8465 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 256 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1110 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8843 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 584 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9693 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2471 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4540 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9129 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1518 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2922 + }, + { + "client_id": "2184384c-4e31-4543-b766-c09f7c270f76", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8943 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5264 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1351 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7962 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1483 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8641 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4721 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9181 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3521 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4173 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9131 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1623 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6161 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7563 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9105 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7191 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5976 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 561 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3394 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5127 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8795 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6401 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6554 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6192 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5795 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8568 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 647 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5081 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3277 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6350 + }, + { + "client_id": "c02a95c2-b479-4553-821e-5570063ff6f7", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 567 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 758 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7830 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9294 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8280 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6095 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8546 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1269 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4920 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5950 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 280 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8791 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7537 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5183 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2019 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3426 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9421 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7242 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8933 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5939 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4875 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4631 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4816 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6293 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8811 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 895 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9450 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5751 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6966 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6899 + }, + { + "client_id": "7cfec153-b457-4e7c-bf6a-8cbdf68482d0", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4625 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7551 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1613 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3705 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7074 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 141 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2833 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8672 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3291 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9165 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9129 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 176 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8439 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8609 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3516 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8155 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6958 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4508 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2522 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6628 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 149 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1798 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9513 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 582 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6403 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 879 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8944 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6121 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9418 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8925 + }, + { + "client_id": "837c5ec5-020e-4d40-ac6a-e80b27e62544", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5175 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 851 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3079 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4509 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9585 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1216 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6093 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 536 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7643 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3981 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5988 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2236 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7646 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8763 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8873 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2887 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5960 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4202 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7623 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2468 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 423 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5041 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3773 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6030 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5731 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3642 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7033 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9831 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8465 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8235 + }, + { + "client_id": "e33835f6-44e8-4c69-ae3d-e17c6002af23", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 187 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9578 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8545 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6525 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7129 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9277 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1552 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 5835 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9314 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 852 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5693 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2230 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3580 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8895 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3898 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9182 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3402 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5880 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7392 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1094 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2718 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9696 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3065 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7350 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5257 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 817 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 654 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6970 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1647 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8309 + }, + { + "client_id": "30916382-30be-49b8-8c0a-6142edb69c17", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3296 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 1971 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4559 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4263 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4121 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3437 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5703 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3006 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4389 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7907 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9890 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2466 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9744 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5526 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3610 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1676 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7865 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4242 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5591 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 777 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2506 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1094 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5010 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4163 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5487 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1585 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 935 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2358 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4055 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1289 + }, + { + "client_id": "44a48105-bf16-4d2c-a740-0cdaa597875a", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8086 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8192 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 8672 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8072 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1192 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1458 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1483 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 1414 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8905 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2959 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7240 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4989 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7569 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7494 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4848 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 141 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3519 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7157 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2752 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6185 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 364 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7587 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2880 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 226 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2597 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 35 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4083 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6719 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8276 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7333 + }, + { + "client_id": "ef51e368-c855-4781-9c22-363a18523dc9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5211 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5876 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3132 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4802 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2784 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1380 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8225 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6454 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3083 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7812 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8719 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5919 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4984 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2719 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2450 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7463 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5400 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3657 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2280 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1513 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4149 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8219 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3073 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6769 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1191 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6876 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1431 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6717 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8087 + }, + { + "client_id": "d704b74b-af7f-4d00-9e67-aa8230d49cf8", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6130 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5994 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3801 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 333 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 6335 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6727 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 4325 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3007 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6825 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 1951 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2818 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8800 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5355 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5515 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5744 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5805 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9758 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7444 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9145 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9097 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6731 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7592 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6774 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 386 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6449 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6407 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 7761 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6921 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3973 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6687 + }, + { + "client_id": "33a88194-1245-4622-9b27-38e2994aa779", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9698 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6053 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6999 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4981 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7319 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8647 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8731 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9862 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4430 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3589 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5816 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 2893 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8102 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4801 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2818 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 7999 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3088 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6452 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7894 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8866 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8785 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8395 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8335 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2533 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7611 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2945 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9454 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1985 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1962 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3764 + }, + { + "client_id": "08d720c4-ec9a-4409-ba96-327f09b3fb95", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5160 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6039 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6715 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1520 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 716 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4452 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6486 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8550 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3986 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5033 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 8424 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4797 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7710 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8422 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6681 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8566 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 9174 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8698 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 194 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1711 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9849 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7626 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5893 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4145 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1162 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9107 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1384 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8564 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6259 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6409 + }, + { + "client_id": "424b6600-1ec8-4197-bd32-17ee9698c2b9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 606 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7798 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 831 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2904 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1763 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2447 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9133 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2175 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 923 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 471 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8031 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 7818 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6554 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 5717 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1550 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4061 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8501 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3970 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 700 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8273 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8619 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6292 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4968 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5490 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9232 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9063 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2973 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8268 + }, + { + "client_id": "47ccc135-8252-4968-925b-7531d7377530", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2757 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 597 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9521 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 263 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5112 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7746 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 594 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3766 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4836 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8904 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5294 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8615 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6681 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1698 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3593 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1056 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4481 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 1325 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2020 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3295 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9962 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9845 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2657 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7868 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2173 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9238 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5303 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 863 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6031 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7011 + }, + { + "client_id": "5180335d-e044-4199-bc8e-c2170b49452e", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1740 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8427 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9026 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8350 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3425 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7030 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3102 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6145 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7367 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6220 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1344 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3069 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6866 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3946 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 681 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1359 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2821 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3626 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1668 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4486 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6160 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4328 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 885 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5232 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5060 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1511 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 807 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3251 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1543 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6718 + }, + { + "client_id": "37894269-a107-46ad-b42f-572a03f58741", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1154 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7060 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1012 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4471 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8107 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8803 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3736 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8167 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8868 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2693 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5984 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9240 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 608 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3852 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6841 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4685 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2474 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4365 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5411 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9365 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1890 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 5303 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3998 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5515 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2272 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4320 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1356 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7454 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8910 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6046 + }, + { + "client_id": "62f2dd55-858d-4bc7-a278-96451d553623", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7599 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 849 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4845 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6217 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2816 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 3554 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7415 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6987 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8784 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6462 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 4189 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7137 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3564 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 609 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7693 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3910 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2836 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4622 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1536 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8723 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7162 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1150 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8235 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 277 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2984 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5044 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2604 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6991 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5430 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7386 + }, + { + "client_id": "dae94833-9fa4-47bd-9dfc-0e087b6d7794", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3956 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8851 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7377 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1533 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4097 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 899 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7607 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9775 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8805 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3124 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 86 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3535 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8372 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 685 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1678 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 297 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5700 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7497 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2559 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 512 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4470 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 1930 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2487 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9748 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8573 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2041 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 461 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6526 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3517 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7899 + }, + { + "client_id": "b3f06bdf-61fb-4218-be86-0e5cc4eef02e", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3533 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2538 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3309 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 301 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4753 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2920 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2161 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3509 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3445 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5502 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 830 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8538 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2748 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6934 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6824 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9535 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3415 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 188 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8427 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 2235 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 608 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3552 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1366 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8773 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1768 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3026 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 204 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7305 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 1406 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7226 + }, + { + "client_id": "6ea3354e-d224-4c6d-b464-ca7044850523", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2210 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5707 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3514 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2087 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5743 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8300 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 623 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4184 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4324 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8492 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2099 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9007 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3068 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4191 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3106 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6355 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3247 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3274 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8155 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8586 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9025 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 544 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8348 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3882 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8167 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5582 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 9526 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 8872 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4908 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3683 + }, + { + "client_id": "3f0af2f6-afac-436f-9faa-15dbc68c5619", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 9598 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3509 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7679 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 808 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4559 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9621 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8869 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7555 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6875 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6378 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6647 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4648 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3683 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4267 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2545 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1101 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 461 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7154 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2049 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 805 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 2484 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9319 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9131 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5923 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1577 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1547 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 2890 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 226 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8869 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2810 + }, + { + "client_id": "f0d3e382-d821-46bc-a34e-70302cde2018", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4387 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8341 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 3208 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7562 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1262 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6291 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8220 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2989 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4952 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2153 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 231 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8988 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4208 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1109 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3446 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4058 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2503 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7535 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 357 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9520 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3499 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7845 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4295 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6593 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2201 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6064 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5516 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4484 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7070 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5062 + }, + { + "client_id": "33d52c0b-e063-4e4e-9ad7-6856cae85349", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3098 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9612 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5865 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 51 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2659 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2046 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6673 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8741 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7727 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7770 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 802 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4247 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2363 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 8213 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 9014 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2568 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 123 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7073 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3726 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4815 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9899 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6974 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5944 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 2263 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 115 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1541 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8093 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6019 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 972 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2977 + }, + { + "client_id": "5b46784a-dd5d-4577-9770-603c4cd6b198", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8774 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9350 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7041 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3057 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7689 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4207 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5241 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2759 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6153 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3229 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 968 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9023 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3193 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3002 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8580 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2196 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5458 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6715 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9990 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1474 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4723 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 6835 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 6146 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5536 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5261 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 819 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8563 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9990 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4575 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6875 + }, + { + "client_id": "cda77298-18c8-48bd-a27a-1d8f865a91bd", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6765 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 231 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5196 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 908 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1200 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8049 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8083 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4072 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2348 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3576 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3655 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3004 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 819 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1806 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2437 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1629 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 6909 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 99 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7373 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7616 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 5566 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8117 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9294 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8783 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2331 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6417 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1776 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9083 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9605 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6919 + }, + { + "client_id": "0b913ce9-e0b8-480a-a62e-04773f19fcd2", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8511 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8734 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2790 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 3264 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9916 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9270 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2853 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6751 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9379 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 627 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3627 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 6233 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5664 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6359 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2382 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6021 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1421 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4927 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1643 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4977 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6111 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3927 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 463 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6949 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2991 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8635 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4637 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4488 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8788 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1242 + }, + { + "client_id": "024e545c-7f4c-471c-a3ea-39063fa31019", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 2107 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6975 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2936 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7406 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 9766 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4532 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 340 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 7741 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7164 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6578 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 5450 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3756 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8924 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5807 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3340 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6462 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1389 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3970 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6234 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4898 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 86 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 7682 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3839 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4425 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 206 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5278 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8499 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 9194 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5030 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3146 + }, + { + "client_id": "353d3371-f6e7-487f-92a3-0cb80082bdba", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8244 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 2493 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2121 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 9994 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8580 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2863 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9753 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4541 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 4343 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9564 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 862 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9147 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5816 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3852 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6761 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4840 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4298 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 3244 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5338 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7895 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4696 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9313 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 8232 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8993 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5740 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1832 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5641 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3290 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8567 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8692 + }, + { + "client_id": "b8aec88d-a144-4718-bfe1-9f7adf070a70", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 4636 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5736 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9344 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1971 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1307 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2349 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1064 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 128 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3817 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6280 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7128 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5447 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8025 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4085 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4307 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3365 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4367 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4109 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5722 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 5240 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9978 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2505 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7625 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 7735 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8085 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4907 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3416 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1567 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 6966 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6019 + }, + { + "client_id": "7a6a39aa-20cf-4a40-a064-c5c26b9dbe13", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3482 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8851 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1049 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6915 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8997 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 1579 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 9230 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 353 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 271 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9276 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3615 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3417 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6417 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1554 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6404 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 40 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 5437 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9669 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 111 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9332 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8537 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4657 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9115 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3423 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8840 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 7712 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 168 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2655 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9048 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2280 + }, + { + "client_id": "a606c43d-9be5-42f9-be8d-ea7901edda66", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 6015 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7579 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 7226 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2596 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4347 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4705 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6892 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6747 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3681 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 6697 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9712 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9135 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4317 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 6648 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 1151 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 1884 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8666 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4687 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9525 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8878 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 6727 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3793 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 5744 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5791 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9138 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 4322 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 348 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1523 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4235 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 8227 + }, + { + "client_id": "d3baedf2-4dbd-4909-ae54-65383bd4d8c9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 5417 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7918 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 5033 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 7351 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7420 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9329 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7911 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 9743 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6607 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8173 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7825 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 9580 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6634 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4239 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8170 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 2721 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 8931 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5489 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3308 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 3139 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 4737 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8642 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9547 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 9298 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2934 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3837 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 5531 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 1966 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 5851 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5359 + }, + { + "client_id": "98c0118d-cfa7-4f4a-8e90-4009362b636b", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 430 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3611 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2092 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8183 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1901 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 9854 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2731 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2971 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 7037 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3209 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2716 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 3815 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 9766 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 550 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 7005 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3659 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4433 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9788 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 7163 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 1505 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8070 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8835 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 4123 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3658 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 4030 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 6445 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4581 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 5322 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 4763 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 2445 + }, + { + "client_id": "592468dd-bbba-4430-ab2f-990e2cec0105", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 733 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 5508 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 86 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5560 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 7456 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8845 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5535 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8060 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5602 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8425 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 628 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5609 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3899 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 236 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8570 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6487 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 2609 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 2613 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9719 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9835 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1864 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 3346 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 1321 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3892 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3852 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 3854 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3625 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2926 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3909 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 4545 + }, + { + "client_id": "34e5aae9-0c0a-4669-ba4e-e1942c7a6f69", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 275 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3942 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6953 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5557 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 2248 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8987 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 3490 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8010 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 9983 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2079 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7990 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1709 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4127 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 5892 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 6480 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4250 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1695 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5907 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 2741 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 9053 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9451 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2037 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9214 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 4263 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 1459 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1376 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1327 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 477 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2384 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7227 + }, + { + "client_id": "98045d04-e84f-4007-b531-064b238bf6e1", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8651 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3961 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 2514 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5155 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3044 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 7939 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 7168 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 8445 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3342 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7321 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9724 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7962 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 4058 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 3412 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 3016 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 9307 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 7710 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 4877 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 6390 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 980 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1365 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4387 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 7558 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8299 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 5815 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 598 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4992 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6314 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7775 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 6575 + }, + { + "client_id": "b18ba2c3-a441-48c1-b49c-8a6e84809a8e", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1184 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7647 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4886 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 8446 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 1992 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 2956 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 2358 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2549 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 5986 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 9935 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 6314 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 4086 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3967 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 7185 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8893 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 8134 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 480 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8682 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8755 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7100 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 1487 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9226 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2820 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 8471 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 7936 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 2410 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6519 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 4987 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2370 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 3436 + }, + { + "client_id": "688f6f73-9a28-4d4c-b3c7-f1d0ed300db4", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8905 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 9728 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1756 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 4609 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5760 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6852 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6113 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3908 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 3578 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 8014 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 2404 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 7086 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 3329 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 918 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8522 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5456 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3997 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 6516 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 8434 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8715 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 7853 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 9832 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 9531 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1801 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 8094 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 1323 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4313 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 7009 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7006 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5232 + }, + { + "client_id": "31669e1f-56c2-4205-a022-cbe2bf478ec9", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 7151 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 6170 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 9633 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 1585 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4904 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8771 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 8918 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 2030 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 6841 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 7073 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 9187 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8009 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 5552 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4905 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 2716 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 3136 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 1210 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 5420 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3070 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 7033 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9746 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8347 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3486 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6173 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3094 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5405 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 3840 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2630 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 9382 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 5410 + }, + { + "client_id": "74b51da1-ba6f-4652-ae01-ae4d97a02448", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1447 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3429 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 4066 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 6144 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 3967 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 8239 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 1221 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 6848 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1857 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 5380 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3630 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 5776 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 10 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4644 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8241 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 4396 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4004 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 457 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 5932 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 391 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 3997 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 8113 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 99 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 1285 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 3360 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 5837 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 1855 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 3597 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 7564 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 1435 + }, + { + "client_id": "15316932-e5ea-4084-b0ce-36af9bd39034", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 3746 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 8052 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6846 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5235 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 5155 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6617 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 6014 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4087 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 1483 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 2104 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 7875 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1783 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 8803 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 2749 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 493 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 438 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4194 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 7662 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 9450 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 6908 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9399 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4256 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3219 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 5228 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 2083 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 9569 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 4011 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 38 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 8043 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 7463 + }, + { + "client_id": "ca2127da-2c1b-4d33-a45c-fd4a8b94487f", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1791 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 3151 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 6740 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 5355 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 4577 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 4685 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5201 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 4253 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 8997 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 4288 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 3824 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 1528 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 2845 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 1059 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 8470 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 6086 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 4455 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 9339 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 1317 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 8979 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 9088 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 2887 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 2223 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 3594 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 9726 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 190 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 8766 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 2189 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 3225 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 628 + }, + { + "client_id": "43581ebf-7f6b-4a73-9386-f4a5e28c0659", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 1994 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "addf3407-9265-44b8-8e7e-6b015f63c47d", + "score": 7518 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "4d830921-f650-4f2f-869b-db48208dc952", + "score": 1156 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "752ddcd3-e944-4eaf-b1de-5e49977354a7", + "score": 2339 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "e04d35cd-e24b-4bfd-b5fa-6ac1c12ae8a0", + "score": 8265 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "8b7f547f-bab5-448d-9997-61cbbd6e3f1c", + "score": 6928 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "57dd000f-32fe-4a49-8dca-bfdc84fec7dd", + "score": 5721 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "22d28b06-32c5-434e-b05e-0654fa1cac09", + "score": 3867 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "7ba54148-4885-48da-97ba-6ecf7b3a300b", + "score": 2353 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "00ac5657-1a1a-48f1-815a-2ffdb72b82b8", + "score": 3231 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "b9d5a8ce-ae23-4a93-946e-4bd85bddef5c", + "score": 1954 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "3696b94d-6591-4e15-86f3-8c46ee535e27", + "score": 8503 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "20024aab-2476-4d35-b96f-f47589f05474", + "score": 6239 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "a68ef7d6-c50f-40d1-b70f-a32d7cdcd036", + "score": 4758 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "960e2896-3f34-43a3-8aa1-d984bb92b96e", + "score": 4920 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "80a7f6a9-5939-4d74-9a7e-e455b9fa0fdd", + "score": 5407 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "6bb59511-360d-49dc-9626-be2f6b9b3a0a", + "score": 3969 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "d7a27dc9-7d8d-4f25-bea4-2528f88238d1", + "score": 8666 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "e6cde283-ca4b-456c-b1fb-c2967918b5ef", + "score": 3821 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "2a51ba38-bed3-43af-bbb4-99093b72e0d1", + "score": 4600 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "95a9a488-8fee-4aa6-9c21-458f8f5523ca", + "score": 8786 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "2fb992b8-4441-47f5-9176-1da68526eafb", + "score": 4332 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "f0d160bd-18b4-4c88-917c-06b699abeeec", + "score": 3385 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "d8147d8c-2bcd-4ac8-bab5-82e420509a7f", + "score": 6413 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "94209720-2c10-4a55-bc37-c28838d08012", + "score": 6902 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "33fae4ce-d252-4b34-af2b-c11e770f65b5", + "score": 8051 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "2c0261ba-bd3c-4b19-a53c-44efa10819e5", + "score": 6712 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "0892fbb7-fbc6-45e9-b52f-494258a9c8f8", + "score": 6217 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "055af498-567a-4a4e-b25f-60a57b9b591c", + "score": 2343 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "0dfd7246-4cfa-4721-899b-e6dd9c483626", + "score": 9076 + }, + { + "client_id": "b874816a-192f-4c14-a649-fc56bf0922af", + "advertiser_id": "32d75bc6-0779-4081-98b3-58273497c561", + "score": 8303 + } +] diff --git a/services/loadtest/static/index.html b/services/loadtest/static/index.html new file mode 100644 index 0000000..15edf7d --- /dev/null +++ b/services/loadtest/static/index.html @@ -0,0 +1,458 @@ + + + + + + + AdNova Loadtest + + + + + + +
+
+

AdNova Loadtest

+
+ +
+ +
+ + +
+

1. Data Setup

+ +
+
Clients:Checking...
+
Advertisers:Checking...
+
Campaigns:Checking...
+
ML + Scores:Checking...
+
+
+ + +
+

2. Test Configuration

+
+
+ + +
+ + +
+ + +
+ + + + + +
+
+ + +
+

3. Execute Test

+ +
+
+ + +
+ +
+
+

RPS

+

0

+
+
+

Avg Latency (ms)

+

0.00

+
+
+

Error Rate

+

0.00%

+
+
+
+
+

Total Requests

+

0

+
+
+

Total Errors

+

0

+
+
+ + +
+

Requests Per Second (RPS)

+
+
+
+

Average Latency (ms)

+
+
+
+

Error Rate (%)

+
+
+
+
+
+ + + + + \ No newline at end of file