// Loyalty Program Insights (customer-loyalty-program-platform) v1 — Prisma seed
// Synthetic sample data, CC0-1.0. Generated deterministically; re-running the
// generator with the same spec and seed reproduces this file exactly.
//
// Delegates are named after the tables (prisma.customers), which assumes models
// mapped to those table names. Rename the delegates if your models differ.
import { PrismaClient } from '@prisma/client';

const prisma = new PrismaClient();

async function main() {
    await prisma.customers.createMany({
        data: [
            { customer_id: 1, first_name: "Wei", last_name: "Smith", email: "wei.smith@example.org", join_date: "2023-09-20", tier: "silver" },
            { customer_id: 2, first_name: "Ethan", last_name: "Kumar", email: "ethan.kumar@example.net", join_date: "2021-11-26", tier: "bronze" },
            { customer_id: 3, first_name: "Emma", last_name: "Diaz", email: "emma.diaz@example.net", join_date: "2020-10-31", tier: "silver" },
            { customer_id: 4, first_name: "Sara", last_name: "Mendes", email: "sara.mendes@example.net", join_date: "2023-03-10", tier: "bronze" },
            { customer_id: 5, first_name: "Carla", last_name: "Costa", email: "carla.costa@example.org", join_date: "2020-03-26", tier: "bronze" },
            { customer_id: 6, first_name: "Emma", last_name: "Brown", email: "emma.brown@example.com", join_date: "2022-08-29", tier: "gold" },
            { customer_id: 7, first_name: "Lucas", last_name: "Park", email: "lucas.park@example.net", join_date: "2021-02-10", tier: "silver" },
            { customer_id: 8, first_name: "Isaac", last_name: "Jansen", email: "isaac.jansen@example.org", join_date: "2022-10-25", tier: "platinum" },
            { customer_id: 9, first_name: "Maja", last_name: "Murphy", email: "maja.murphy@example.com", join_date: "2023-03-16", tier: "silver" },
            { customer_id: 10, first_name: "Daniel", last_name: "Dubois", email: "daniel.dubois@example.org", join_date: "2022-07-18", tier: "silver" },
            { customer_id: 11, first_name: "Yusuf", last_name: "Costa", email: "yusuf.costa@example.com", join_date: "2020-05-26", tier: "silver" },
            { customer_id: 12, first_name: "Rosa", last_name: "Torres", email: "rosa.torres@example.net", join_date: "2020-03-25", tier: "silver" },
            { customer_id: 13, first_name: "Sven", last_name: "Chen", email: "sven.chen@example.org", join_date: "2021-02-13", tier: "bronze" },
            { customer_id: 14, first_name: "Omar", last_name: "Gomez", email: "omar.gomez@example.org", join_date: "2022-07-29", tier: "bronze" },
            { customer_id: 15, first_name: "Andre", last_name: "Evans", email: "andre.evans@example.com", join_date: "2022-10-19", tier: "bronze" },
            { customer_id: 16, first_name: "Omar", last_name: "Brown", email: "omar.brown@example.com", join_date: "2023-11-07", tier: "gold" },
            { customer_id: 17, first_name: "Hugo", last_name: "Reyes", email: "hugo.reyes@example.org", join_date: "2020-08-11", tier: "bronze" },
            { customer_id: 18, first_name: "Nour", last_name: "Vargas", email: "nour.vargas@example.org", join_date: "2021-08-24", tier: "silver" },
            { customer_id: 19, first_name: "Alice", last_name: "Wright", email: "alice.wright@example.net", join_date: "2021-07-05", tier: "bronze" },
            { customer_id: 20, first_name: "Victor", last_name: "Diaz", email: "victor.diaz@example.org", join_date: "2022-08-07", tier: "silver" },
            { customer_id: 21, first_name: "Wei", last_name: "Garcia", email: "wei.garcia@example.net", join_date: "2021-06-13", tier: "bronze" },
            { customer_id: 22, first_name: "James", last_name: "Schmidt", email: "james.schmidt@example.org", join_date: "2020-01-03", tier: "gold" },
            { customer_id: 23, first_name: "Yara", last_name: "Jensen", email: "yara.jensen@example.org", join_date: "2020-08-19", tier: "bronze" },
            { customer_id: 24, first_name: "Nina", last_name: "Walker", email: "nina.walker@example.net", join_date: "2021-03-24", tier: "silver" },
            { customer_id: 25, first_name: "Fatima", last_name: "Kumar", email: "fatima.kumar@example.org", join_date: "2020-07-11", tier: "bronze" },
            { customer_id: 26, first_name: "Ravi", last_name: "Chen", email: "ravi.chen@example.com", join_date: "2022-03-04", tier: "silver" },
            { customer_id: 27, first_name: "Mia", last_name: "Vargas", email: "mia.vargas@example.org", join_date: "2020-06-14", tier: "gold" },
            { customer_id: 28, first_name: "Yusuf", last_name: "Gupta", email: "yusuf.gupta@example.net", join_date: "2022-11-22", tier: "silver" },
            { customer_id: 29, first_name: "Fatima", last_name: "Davis", email: "fatima.davis@example.org", join_date: "2023-04-30", tier: "silver" },
            { customer_id: 30, first_name: "Fatima", last_name: "Wang", email: "fatima.wang@example.com", join_date: "2023-07-22", tier: "silver" },
            { customer_id: 31, first_name: "Nadia", last_name: "Sato", email: "nadia.sato@example.net", join_date: "2020-07-26", tier: "bronze" },
            { customer_id: 32, first_name: "Maria", last_name: "Young", email: "maria.young@example.org", join_date: "2020-05-02", tier: "silver" },
            { customer_id: 33, first_name: "Mohamed", last_name: "Baker", email: "mohamed.baker@example.net", join_date: "2023-03-12", tier: "gold" },
            { customer_id: 34, first_name: "Sam", last_name: "Ibrahim", email: "sam.ibrahim@example.net", join_date: "2023-05-03", tier: "bronze" },
            { customer_id: 35, first_name: "Nadia", last_name: "Kumar", email: "nadia.kumar@example.org", join_date: "2021-02-11", tier: "silver" },
            { customer_id: 36, first_name: "Maja", last_name: "Johnson", email: "maja.johnson@example.org", join_date: "2020-03-06", tier: "bronze" },
            { customer_id: 37, first_name: "Theo", last_name: "Lee", email: "theo.lee@example.com", join_date: "2021-11-15", tier: "bronze" },
            { customer_id: 38, first_name: "Ben", last_name: "Mendes", email: "ben.mendes@example.com", join_date: "2020-11-04", tier: "bronze" },
            { customer_id: 39, first_name: "Ben", last_name: "Hughes", email: "ben.hughes@example.org", join_date: "2021-07-01", tier: "bronze" },
            { customer_id: 40, first_name: "Rosa", last_name: "Kumar", email: "rosa.kumar@example.net", join_date: "2022-11-07", tier: "bronze" },
            { customer_id: 41, first_name: "Ibrahim", last_name: "Gomez", email: "ibrahim.gomez@example.net", join_date: "2020-11-17", tier: "silver" },
            { customer_id: 42, first_name: "Karim", last_name: "Garcia", email: "karim.garcia@example.net", join_date: "2021-10-12", tier: "gold" },
            { customer_id: 43, first_name: "Sara", last_name: "Novak", email: "sara.novak@example.net", join_date: "2021-03-06", tier: "bronze" },
            { customer_id: 44, first_name: "Jade", last_name: "Jensen", email: "jade.jensen@example.com", join_date: "2022-03-25", tier: "bronze" },
            { customer_id: 45, first_name: "Hannah", last_name: "Garcia", email: "hannah.garcia@example.com", join_date: "2023-01-03", tier: "silver" },
            { customer_id: 46, first_name: "Jonas", last_name: "Zhang", email: "jonas.zhang@example.org", join_date: "2020-01-20", tier: "bronze" },
            { customer_id: 47, first_name: "Mei", last_name: "Clark", email: "mei.clark@example.com", join_date: "2023-09-26", tier: "bronze" },
            { customer_id: 48, first_name: "Rosa", last_name: "Schneider", email: "rosa.schneider@example.org", join_date: "2020-08-08", tier: "gold" },
            { customer_id: 49, first_name: "Yusuf", last_name: "Wang", email: "yusuf.wang@example.net", join_date: "2020-11-27", tier: "bronze" },
            { customer_id: 50, first_name: "Marco", last_name: "Yilmaz", email: "marco.yilmaz@example.com", join_date: "2022-05-23", tier: "silver" },
            { customer_id: 51, first_name: "Wei", last_name: "Meyer", email: "wei.meyer@example.net", join_date: "2020-10-09", tier: "silver" },
            { customer_id: 52, first_name: "Alice", last_name: "Cruz", email: "alice.cruz@example.net", join_date: "2022-09-01", tier: "silver" },
            { customer_id: 53, first_name: "Ana", last_name: "Jensen", email: "ana.jensen@example.org", join_date: "2022-07-15", tier: "silver" },
            { customer_id: 54, first_name: "Yara", last_name: "Flores", email: "yara.flores@example.com", join_date: "2023-03-12", tier: "bronze" },
            { customer_id: 55, first_name: "Nadia", last_name: "Silva", email: "nadia.silva@example.com", join_date: "2021-12-28", tier: "gold" },
            { customer_id: 56, first_name: "Ben", last_name: "Bennett", email: "ben.bennett@example.com", join_date: "2023-07-02", tier: "gold" },
            { customer_id: 57, first_name: "Elena", last_name: "Pereira", email: "elena.pereira@example.com", join_date: "2023-03-20", tier: "bronze" },
            { customer_id: 58, first_name: "Zara", last_name: "Nguyen", email: "zara.nguyen@example.com", join_date: "2022-09-26", tier: "bronze" },
            { customer_id: 59, first_name: "Maria", last_name: "Reyes", email: "maria.reyes@example.com", join_date: "2022-04-24", tier: "gold" },
            { customer_id: 60, first_name: "Yara", last_name: "Almeida", email: "yara.almeida@example.org", join_date: "2022-12-19", tier: "bronze" },
            { customer_id: 61, first_name: "Deniz", last_name: "Klein", email: "deniz.klein@example.com", join_date: "2023-08-11", tier: "gold" },
            { customer_id: 62, first_name: "Mateo", last_name: "Nakamura", email: "mateo.nakamura@example.org", join_date: "2022-04-17", tier: "bronze" },
            { customer_id: 63, first_name: "Nadia", last_name: "Chen", email: "nadia.chen@example.com", join_date: "2022-02-24", tier: "platinum" },
            { customer_id: 64, first_name: "Sven", last_name: "Ali", email: "sven.ali@example.net", join_date: "2022-09-12", tier: "gold" },
            { customer_id: 65, first_name: "Zara", last_name: "Mendes", email: "zara.mendes@example.org", join_date: "2020-01-24", tier: "silver" },
            { customer_id: 66, first_name: "Maria", last_name: "Bennett", email: "maria.bennett@example.net", join_date: "2022-01-30", tier: "silver" },
            { customer_id: 67, first_name: "Omar", last_name: "Gupta", email: "omar.gupta@example.org", join_date: "2021-04-12", tier: "silver" },
            { customer_id: 68, first_name: "Alice", last_name: "Sato", email: "alice.sato@example.net", join_date: "2022-04-26", tier: "silver" },
            { customer_id: 69, first_name: "Felix", last_name: "Jansen", email: "felix.jansen@example.org", join_date: "2020-10-20", tier: "silver" },
            { customer_id: 70, first_name: "Pedro", last_name: "Sato", email: "pedro.sato@example.org", join_date: "2021-09-18", tier: "bronze" },
            { customer_id: 71, first_name: "Pedro", last_name: "Cruz", email: "pedro.cruz@example.org", join_date: "2022-04-17", tier: "bronze" },
            { customer_id: 72, first_name: "Omar", last_name: "Jansen", email: "omar.jansen@example.org", join_date: "2021-11-02", tier: "bronze" },
            { customer_id: 73, first_name: "Mateo", last_name: "Wright", email: "mateo.wright@example.com", join_date: "2023-06-03", tier: "silver" },
            { customer_id: 74, first_name: "Rosa", last_name: "Ali", email: "rosa.ali@example.org", join_date: "2022-10-15", tier: "silver" },
            { customer_id: 75, first_name: "Isaac", last_name: "Andersen", email: "isaac.andersen@example.net", join_date: "2023-06-28", tier: "bronze" },
            { customer_id: 76, first_name: "David", last_name: "Klein", email: "david.klein@example.org", join_date: "2020-08-01", tier: "bronze" },
            { customer_id: 77, first_name: "Lena", last_name: "Moreau", email: "lena.moreau@example.net", join_date: "2022-06-21", tier: "bronze" },
            { customer_id: 78, first_name: "Ines", last_name: "Castro", email: "ines.castro@example.org", join_date: "2021-10-24", tier: "gold" },
            { customer_id: 79, first_name: "Tariq", last_name: "Carter", email: "tariq.carter@example.org", join_date: "2023-07-22", tier: "bronze" },
            { customer_id: 80, first_name: "Liam", last_name: "Wagner", email: "liam.wagner@example.com", join_date: "2022-04-26", tier: "bronze" },
            { customer_id: 81, first_name: "David", last_name: "Martin", email: "david.martin@example.net", join_date: "2020-05-25", tier: "gold" },
            { customer_id: 82, first_name: "Nadia", last_name: "Martin", email: "nadia.martin@example.com", join_date: "2020-06-27", tier: "silver" },
            { customer_id: 83, first_name: "Nina", last_name: "Weber", email: "nina.weber@example.net", join_date: "2020-01-19", tier: "gold" },
            { customer_id: 84, first_name: "Selin", last_name: "Fischer", email: "selin.fischer@example.net", join_date: "2023-05-13", tier: "gold" },
            { customer_id: 85, first_name: "Karim", last_name: "Kumar", email: "karim.kumar@example.net", join_date: "2023-09-27", tier: "bronze" },
            { customer_id: 86, first_name: "Sam", last_name: "Chen", email: "sam.chen@example.org", join_date: "2022-02-18", tier: "bronze" },
            { customer_id: 87, first_name: "Omar", last_name: "Dubois", email: "omar.dubois@example.net", join_date: "2021-02-18", tier: "silver" },
            { customer_id: 88, first_name: "Mia", last_name: "Wang", email: "mia.wang@example.org", join_date: "2021-06-19", tier: "bronze" },
            { customer_id: 89, first_name: "Oscar", last_name: "Ruiz", email: "oscar.ruiz@example.net", join_date: "2022-06-23", tier: "bronze" },
            { customer_id: 90, first_name: "Paula", last_name: "Vargas", email: "paula.vargas@example.org", join_date: "2021-09-01", tier: "gold" },
            { customer_id: 91, first_name: "Uma", last_name: "Park", email: "uma.park@example.org", join_date: "2020-09-03", tier: "bronze" },
            { customer_id: 92, first_name: "Rosa", last_name: "Meyer", email: "rosa.meyer@example.net", join_date: "2020-05-18", tier: "platinum" },
            { customer_id: 93, first_name: "Maria", last_name: "Kaya", email: "maria.kaya@example.com", join_date: "2021-04-12", tier: "bronze" },
            { customer_id: 94, first_name: "Ben", last_name: "Singh", email: "ben.singh@example.net", join_date: "2020-12-03", tier: "bronze" },
            { customer_id: 95, first_name: "Kai", last_name: "Miller", email: "kai.miller@example.net", join_date: "2023-03-05", tier: "gold" },
            { customer_id: 96, first_name: "Leo", last_name: "Flores", email: "leo.flores@example.com", join_date: "2021-01-05", tier: "bronze" },
            { customer_id: 97, first_name: "Noah", last_name: "Adams", email: "noah.adams@example.net", join_date: "2020-01-12", tier: "gold" },
            { customer_id: 98, first_name: "Maria", last_name: "Andersen", email: "maria.andersen@example.org", join_date: "2022-12-20", tier: "bronze" },
            { customer_id: 99, first_name: "Ethan", last_name: "Carter", email: "ethan.carter@example.org", join_date: "2022-07-09", tier: "bronze" },
            { customer_id: 100, first_name: "Ravi", last_name: "Miller", email: "ravi.miller@example.com", join_date: "2022-06-12", tier: "platinum" },
            { customer_id: 101, first_name: "Theo", last_name: "Moreau", email: "theo.moreau@example.org", join_date: "2020-01-06", tier: "bronze" },
            { customer_id: 102, first_name: "Sofia", last_name: "Cruz", email: "sofia.cruz@example.org", join_date: "2022-06-14", tier: "platinum" },
            { customer_id: 103, first_name: "Ravi", last_name: "Zhang", email: "ravi.zhang@example.org", join_date: "2022-01-23", tier: "platinum" },
            { customer_id: 104, first_name: "Zara", last_name: "Meyer", email: "zara.meyer@example.net", join_date: "2023-02-21", tier: "bronze" },
            { customer_id: 105, first_name: "Theo", last_name: "Cruz", email: "theo.cruz@example.net", join_date: "2021-05-15", tier: "bronze" },
            { customer_id: 106, first_name: "Ana", last_name: "Schneider", email: "ana.schneider@example.org", join_date: "2020-10-13", tier: "bronze" },
            { customer_id: 107, first_name: "Chloe", last_name: "Pereira", email: "chloe.pereira@example.org", join_date: "2020-03-08", tier: "platinum" },
            { customer_id: 108, first_name: "Yusuf", last_name: "Wilson", email: "yusuf.wilson@example.org", join_date: "2020-02-22", tier: "gold" },
            { customer_id: 109, first_name: "Yusuf", last_name: "Gupta", email: "yusuf.gupta@example.com", join_date: "2021-09-20", tier: "silver" },
            { customer_id: 110, first_name: "Jonas", last_name: "Andersen", email: "jonas.andersen@example.net", join_date: "2022-06-02", tier: "bronze" },
            { customer_id: 111, first_name: "Nina", last_name: "Nguyen", email: "nina.nguyen@example.com", join_date: "2023-09-06", tier: "silver" },
            { customer_id: 112, first_name: "Pedro", last_name: "Murphy", email: "pedro.murphy@example.net", join_date: "2020-08-16", tier: "gold" },
            { customer_id: 113, first_name: "Olivia", last_name: "Andersen", email: "olivia.andersen@example.net", join_date: "2022-04-28", tier: "bronze" },
            { customer_id: 114, first_name: "Priya", last_name: "Kim", email: "priya.kim@example.org", join_date: "2021-01-12", tier: "bronze" },
            { customer_id: 115, first_name: "Emma", last_name: "Hughes", email: "emma.hughes@example.net", join_date: "2021-06-07", tier: "bronze" },
            { customer_id: 116, first_name: "Jade", last_name: "Kowalski", email: "jade.kowalski@example.net", join_date: "2023-09-04", tier: "gold" },
            { customer_id: 117, first_name: "Felix", last_name: "Becker", email: "felix.becker@example.org", join_date: "2021-09-15", tier: "gold" },
            { customer_id: 118, first_name: "Hana", last_name: "Zhang", email: "hana.zhang@example.org", join_date: "2023-02-10", tier: "bronze" },
            { customer_id: 119, first_name: "Rafael", last_name: "Murphy", email: "rafael.murphy@example.com", join_date: "2020-05-20", tier: "bronze" },
            { customer_id: 120, first_name: "Lena", last_name: "Flores", email: "lena.flores@example.com", join_date: "2020-06-16", tier: "silver" },
            { customer_id: 121, first_name: "Paula", last_name: "Ali", email: "paula.ali@example.org", join_date: "2023-02-12", tier: "bronze" },
            { customer_id: 122, first_name: "Kai", last_name: "Nguyen", email: "kai.nguyen@example.org", join_date: "2022-04-07", tier: "silver" },
            { customer_id: 123, first_name: "Ivan", last_name: "Khan", email: "ivan.khan@example.net", join_date: "2021-08-08", tier: "gold" },
            { customer_id: 124, first_name: "Lena", last_name: "Carter", email: "lena.carter@example.com", join_date: "2023-07-05", tier: "bronze" },
            { customer_id: 125, first_name: "Isaac", last_name: "Nakamura", email: "isaac.nakamura@example.net", join_date: "2020-01-08", tier: "bronze" },
            { customer_id: 126, first_name: "Tariq", last_name: "Moreau", email: "tariq.moreau@example.com", join_date: "2022-03-09", tier: "bronze" },
            { customer_id: 127, first_name: "Victor", last_name: "Gomez", email: "victor.gomez@example.com", join_date: "2023-11-02", tier: "bronze" },
            { customer_id: 128, first_name: "Lina", last_name: "Jensen", email: "lina.jensen@example.com", join_date: "2021-10-29", tier: "bronze" },
            { customer_id: 129, first_name: "Carlos", last_name: "Sousa", email: "carlos.sousa@example.com", join_date: "2020-02-17", tier: "gold" },
            { customer_id: 130, first_name: "Maya", last_name: "Wagner", email: "maya.wagner@example.com", join_date: "2023-11-18", tier: "gold" },
            { customer_id: 131, first_name: "Selin", last_name: "Silva", email: "selin.silva@example.org", join_date: "2022-06-01", tier: "bronze" },
            { customer_id: 132, first_name: "Uma", last_name: "Klein", email: "uma.klein@example.org", join_date: "2021-02-18", tier: "silver" },
            { customer_id: 133, first_name: "Paula", last_name: "Walker", email: "paula.walker@example.org", join_date: "2021-01-04", tier: "bronze" },
            { customer_id: 134, first_name: "Uma", last_name: "Nakamura", email: "uma.nakamura@example.net", join_date: "2020-05-04", tier: "gold" },
            { customer_id: 135, first_name: "Nina", last_name: "Reyes", email: "nina.reyes@example.com", join_date: "2022-03-05", tier: "bronze" },
            { customer_id: 136, first_name: "Paula", last_name: "Shah", email: "paula.shah@example.net", join_date: "2020-06-09", tier: "silver" },
            { customer_id: 137, first_name: "Elif", last_name: "Bennett", email: "elif.bennett@example.org", join_date: "2021-05-11", tier: "bronze" },
            { customer_id: 138, first_name: "Carla", last_name: "Ibrahim", email: "carla.ibrahim@example.com", join_date: "2021-01-21", tier: "silver" },
            { customer_id: 139, first_name: "Tomas", last_name: "Oliveira", email: "tomas.oliveira@example.net", join_date: "2021-10-08", tier: "bronze" },
            { customer_id: 140, first_name: "Chen", last_name: "Jansen", email: "chen.jansen@example.net", join_date: "2020-02-27", tier: "bronze" },
            { customer_id: 141, first_name: "Paula", last_name: "Diaz", email: "paula.diaz@example.com", join_date: "2021-03-04", tier: "bronze" },
            { customer_id: 142, first_name: "Lina", last_name: "Becker", email: "lina.becker@example.com", join_date: "2020-09-19", tier: "gold" },
            { customer_id: 143, first_name: "Elena", last_name: "Miller", email: "elena.miller@example.com", join_date: "2020-06-13", tier: "silver" },
            { customer_id: 144, first_name: "Sven", last_name: "Sousa", email: "sven.sousa@example.org", join_date: "2022-10-02", tier: "bronze" },
            { customer_id: 145, first_name: "Ethan", last_name: "Garcia", email: "ethan.garcia@example.net", join_date: "2020-06-24", tier: "silver" },
            { customer_id: 146, first_name: "Daniel", last_name: "Moreau", email: "daniel.moreau@example.org", join_date: "2022-07-24", tier: "bronze" },
            { customer_id: 147, first_name: "Mateo", last_name: "Smith", email: "mateo.smith@example.net", join_date: "2020-03-13", tier: "bronze" },
            { customer_id: 148, first_name: "Ana", last_name: "Gomez", email: "ana.gomez@example.com", join_date: "2021-01-26", tier: "platinum" },
            { customer_id: 149, first_name: "Zara", last_name: "Gomez", email: "zara.gomez@example.net", join_date: "2020-02-16", tier: "silver" },
            { customer_id: 150, first_name: "Hugo", last_name: "Pereira", email: "hugo.pereira@example.org", join_date: "2021-03-03", tier: "bronze" },
            { customer_id: 151, first_name: "Carlos", last_name: "Kumar", email: "carlos.kumar@example.com", join_date: "2021-09-11", tier: "bronze" },
            { customer_id: 152, first_name: "David", last_name: "Jensen", email: "david.jensen@example.org", join_date: "2022-08-04", tier: "gold" },
            { customer_id: 153, first_name: "Emma", last_name: "Martin", email: "emma.martin@example.com", join_date: "2022-04-06", tier: "gold" },
            { customer_id: 154, first_name: "Amir", last_name: "Sousa", email: "amir.sousa@example.com", join_date: "2023-12-25", tier: "bronze" },
            { customer_id: 155, first_name: "Pedro", last_name: "Flores", email: "pedro.flores@example.net", join_date: "2023-10-05", tier: "bronze" },
            { customer_id: 156, first_name: "Priya", last_name: "Singh", email: "priya.singh@example.net", join_date: "2022-10-15", tier: "bronze" },
            { customer_id: 157, first_name: "Sam", last_name: "Reyes", email: "sam.reyes@example.com", join_date: "2021-05-26", tier: "silver" },
            { customer_id: 158, first_name: "Wei", last_name: "Gupta", email: "wei.gupta@example.net", join_date: "2023-02-13", tier: "gold" },
            { customer_id: 159, first_name: "Zara", last_name: "Johnson", email: "zara.johnson@example.net", join_date: "2020-04-29", tier: "bronze" },
            { customer_id: 160, first_name: "Jade", last_name: "Hughes", email: "jade.hughes@example.org", join_date: "2022-02-16", tier: "silver" },
            { customer_id: 161, first_name: "Nina", last_name: "Hansen", email: "nina.hansen@example.net", join_date: "2023-02-11", tier: "bronze" },
            { customer_id: 162, first_name: "Chen", last_name: "Park", email: "chen.park@example.net", join_date: "2022-09-05", tier: "silver" },
            { customer_id: 163, first_name: "Diego", last_name: "Baker", email: "diego.baker@example.com", join_date: "2021-12-14", tier: "bronze" },
            { customer_id: 164, first_name: "Zara", last_name: "Nakamura", email: "zara.nakamura@example.org", join_date: "2020-01-25", tier: "silver" },
            { customer_id: 165, first_name: "Laura", last_name: "Reyes", email: "laura.reyes@example.net", join_date: "2023-04-09", tier: "bronze" },
            { customer_id: 166, first_name: "Lina", last_name: "Wang", email: "lina.wang@example.com", join_date: "2021-12-16", tier: "gold" },
            { customer_id: 167, first_name: "Mateo", last_name: "Hassan", email: "mateo.hassan@example.com", join_date: "2021-12-16", tier: "gold" },
            { customer_id: 168, first_name: "Elif", last_name: "Baker", email: "elif.baker@example.com", join_date: "2022-06-16", tier: "bronze" },
            { customer_id: 169, first_name: "Elena", last_name: "Novak", email: "elena.novak@example.net", join_date: "2022-11-25", tier: "bronze" },
            { customer_id: 170, first_name: "Leo", last_name: "Reyes", email: "leo.reyes@example.net", join_date: "2023-11-30", tier: "gold" },
            { customer_id: 171, first_name: "Lucas", last_name: "Nguyen", email: "lucas.nguyen@example.org", join_date: "2020-07-06", tier: "silver" },
            { customer_id: 172, first_name: "Omar", last_name: "Hughes", email: "omar.hughes@example.org", join_date: "2020-06-15", tier: "bronze" },
            { customer_id: 173, first_name: "Priya", last_name: "Demir", email: "priya.demir@example.com", join_date: "2023-03-29", tier: "gold" },
            { customer_id: 174, first_name: "Hannah", last_name: "Tanaka", email: "hannah.tanaka@example.org", join_date: "2022-01-26", tier: "silver" },
            { customer_id: 175, first_name: "Paula", last_name: "Jensen", email: "paula.jensen@example.net", join_date: "2022-11-18", tier: "bronze" },
            { customer_id: 176, first_name: "Maya", last_name: "Pereira", email: "maya.pereira@example.com", join_date: "2020-06-22", tier: "bronze" },
            { customer_id: 177, first_name: "Marco", last_name: "Weber", email: "marco.weber@example.com", join_date: "2023-08-05", tier: "silver" },
            { customer_id: 178, first_name: "Julia", last_name: "Adams", email: "julia.adams@example.com", join_date: "2020-08-23", tier: "bronze" },
            { customer_id: 179, first_name: "Emma", last_name: "Hughes", email: "emma.hughes@example.org", join_date: "2023-02-19", tier: "silver" },
            { customer_id: 180, first_name: "Nina", last_name: "Demir", email: "nina.demir@example.com", join_date: "2020-05-09", tier: "bronze" },
            { customer_id: 181, first_name: "Marco", last_name: "Silva", email: "marco.silva@example.org", join_date: "2022-12-13", tier: "bronze" },
            { customer_id: 182, first_name: "Maja", last_name: "Kumar", email: "maja.kumar@example.net", join_date: "2023-04-24", tier: "bronze" },
            { customer_id: 183, first_name: "Chen", last_name: "Cruz", email: "chen.cruz@example.net", join_date: "2021-06-18", tier: "bronze" },
            { customer_id: 184, first_name: "Isaac", last_name: "Wagner", email: "isaac.wagner@example.org", join_date: "2022-10-07", tier: "silver" },
            { customer_id: 185, first_name: "Selin", last_name: "Miller", email: "selin.miller@example.org", join_date: "2022-08-04", tier: "bronze" },
            { customer_id: 186, first_name: "Ana", last_name: "Jansen", email: "ana.jansen@example.net", join_date: "2020-01-27", tier: "bronze" },
            { customer_id: 187, first_name: "Tariq", last_name: "Kowalski", email: "tariq.kowalski@example.com", join_date: "2023-08-01", tier: "gold" },
            { customer_id: 188, first_name: "Jack", last_name: "Lopez", email: "jack.lopez@example.com", join_date: "2021-10-26", tier: "silver" },
            { customer_id: 189, first_name: "Hana", last_name: "Johnson", email: "hana.johnson@example.org", join_date: "2022-07-28", tier: "bronze" },
            { customer_id: 190, first_name: "Lena", last_name: "Sousa", email: "lena.sousa@example.net", join_date: "2023-03-03", tier: "gold" },
            { customer_id: 191, first_name: "Felix", last_name: "Silva", email: "felix.silva@example.com", join_date: "2021-10-08", tier: "bronze" },
            { customer_id: 192, first_name: "Grace", last_name: "Wright", email: "grace.wright@example.com", join_date: "2021-10-10", tier: "platinum" },
            { customer_id: 193, first_name: "Oscar", last_name: "Gupta", email: "oscar.gupta@example.net", join_date: "2022-04-28", tier: "bronze" },
            { customer_id: 194, first_name: "Leo", last_name: "Taylor", email: "leo.taylor@example.com", join_date: "2022-09-17", tier: "silver" },
            { customer_id: 195, first_name: "Sven", last_name: "Carter", email: "sven.carter@example.net", join_date: "2020-12-31", tier: "platinum" },
            { customer_id: 196, first_name: "Mei", last_name: "Adams", email: "mei.adams@example.org", join_date: "2023-08-20", tier: "silver" },
            { customer_id: 197, first_name: "Yusuf", last_name: "Schmidt", email: "yusuf.schmidt@example.org", join_date: "2021-05-02", tier: "bronze" },
            { customer_id: 198, first_name: "Zoe", last_name: "Jensen", email: "zoe.jensen@example.com", join_date: "2023-02-09", tier: "bronze" },
            { customer_id: 199, first_name: "Jack", last_name: "Nguyen", email: "jack.nguyen@example.com", join_date: "2023-05-01", tier: "bronze" },
            { customer_id: 200, first_name: "Zoe", last_name: "Novak", email: "zoe.novak@example.com", join_date: "2020-09-21", tier: "bronze" },
        ],
    });
    await prisma.promotions.createMany({
        data: [
            { promotion_id: 1, promotion_name: "sale bonus exclusive", start_date: "2023-11-22", end_date: "2023-10-17", discount_percentage: "27" },
            { promotion_id: 2, promotion_name: "offer clearance campaign", start_date: "2023-08-20", end_date: "2023-08-18", discount_percentage: "25" },
            { promotion_id: 3, promotion_name: "holiday", start_date: "2023-07-25", end_date: "2023-09-17", discount_percentage: "34" },
            { promotion_id: 4, promotion_name: "offer giveaway", start_date: "2023-07-07", end_date: "2023-03-27", discount_percentage: "35" },
            { promotion_id: 5, promotion_name: "holiday", start_date: "2023-01-05", end_date: "2023-08-03", discount_percentage: "41" },
            { promotion_id: 6, promotion_name: "flash sale", start_date: "2023-11-15", end_date: "2023-06-10", discount_percentage: "50" },
            { promotion_id: 7, promotion_name: "surprise", start_date: "2023-06-25", end_date: "2023-06-23", discount_percentage: "41" },
            { promotion_id: 8, promotion_name: "summer", start_date: "2023-04-28", end_date: "2023-11-29", discount_percentage: "22" },
            { promotion_id: 9, promotion_name: "giveaway campaign", start_date: "2023-06-16", end_date: "2023-02-06", discount_percentage: "33" },
            { promotion_id: 10, promotion_name: "event campaign limited", start_date: "2023-03-23", end_date: "2023-09-17", discount_percentage: "49" },
            { promotion_id: 11, promotion_name: "campaign launch giveaway", start_date: "2023-06-14", end_date: "2023-06-22", discount_percentage: "17" },
            { promotion_id: 12, promotion_name: "offer launch summer", start_date: "2023-06-25", end_date: "2023-04-16", discount_percentage: "42" },
            { promotion_id: 13, promotion_name: "exclusive campaign summer", start_date: "2023-02-15", end_date: "2023-05-15", discount_percentage: "40" },
            { promotion_id: 14, promotion_name: "bundle", start_date: "2023-06-12", end_date: "2023-10-31", discount_percentage: "40" },
            { promotion_id: 15, promotion_name: "holiday exclusive surprise", start_date: "2023-05-22", end_date: "2023-05-08", discount_percentage: "36" },
            { promotion_id: 16, promotion_name: "deal", start_date: "2023-09-08", end_date: "2023-08-24", discount_percentage: "48" },
            { promotion_id: 17, promotion_name: "event bonus launch", start_date: "2023-09-21", end_date: "2023-05-10", discount_percentage: "47" },
            { promotion_id: 18, promotion_name: "bonus package", start_date: "2023-02-20", end_date: "2023-05-18", discount_percentage: "47" },
            { promotion_id: 19, promotion_name: "limited", start_date: "2023-08-27", end_date: "2023-04-08", discount_percentage: "14" },
            { promotion_id: 20, promotion_name: "special offer flash", start_date: "2023-09-05", end_date: "2023-11-15", discount_percentage: "33" },
            { promotion_id: 21, promotion_name: "flash", start_date: "2023-01-29", end_date: "2023-02-13", discount_percentage: "49" },
            { promotion_id: 22, promotion_name: "package special", start_date: "2023-10-15", end_date: "2023-12-28", discount_percentage: "24" },
            { promotion_id: 23, promotion_name: "surprise", start_date: "2023-04-20", end_date: "2023-10-18", discount_percentage: "10" },
            { promotion_id: 24, promotion_name: "sale", start_date: "2023-10-22", end_date: "2023-11-07", discount_percentage: "49" },
            { promotion_id: 25, promotion_name: "deal launch offer", start_date: "2023-11-20", end_date: "2023-04-16", discount_percentage: "29" },
            { promotion_id: 26, promotion_name: "event sale", start_date: "2023-05-22", end_date: "2023-11-13", discount_percentage: "42" },
            { promotion_id: 27, promotion_name: "surprise", start_date: "2023-07-08", end_date: "2023-11-20", discount_percentage: "11" },
            { promotion_id: 28, promotion_name: "package giveaway", start_date: "2023-11-05", end_date: "2023-07-16", discount_percentage: "48" },
            { promotion_id: 29, promotion_name: "discount event", start_date: "2023-02-05", end_date: "2023-09-18", discount_percentage: "23" },
            { promotion_id: 30, promotion_name: "giveaway offer package", start_date: "2023-12-27", end_date: "2023-07-15", discount_percentage: "48" },
            { promotion_id: 31, promotion_name: "package discount", start_date: "2023-07-28", end_date: "2023-05-10", discount_percentage: "23" },
            { promotion_id: 32, promotion_name: "package bonus bundle", start_date: "2023-04-04", end_date: "2023-11-18", discount_percentage: "48" },
            { promotion_id: 33, promotion_name: "bonus", start_date: "2023-11-30", end_date: "2023-07-30", discount_percentage: "49" },
            { promotion_id: 34, promotion_name: "launch", start_date: "2023-02-22", end_date: "2023-01-01", discount_percentage: "31" },
            { promotion_id: 35, promotion_name: "clearance", start_date: "2023-06-26", end_date: "2023-06-02", discount_percentage: "16" },
            { promotion_id: 36, promotion_name: "sale", start_date: "2023-07-14", end_date: "2023-10-02", discount_percentage: "18" },
            { promotion_id: 37, promotion_name: "campaign bonus", start_date: "2023-11-25", end_date: "2023-06-19", discount_percentage: "15" },
            { promotion_id: 38, promotion_name: "flash promotion", start_date: "2023-01-31", end_date: "2023-02-14", discount_percentage: "49" },
            { promotion_id: 39, promotion_name: "giveaway", start_date: "2023-06-04", end_date: "2023-05-22", discount_percentage: "49" },
            { promotion_id: 40, promotion_name: "launch holiday campaign", start_date: "2023-09-04", end_date: "2023-01-04", discount_percentage: "41" },
            { promotion_id: 41, promotion_name: "clearance event launch", start_date: "2023-10-30", end_date: "2023-04-19", discount_percentage: "50" },
            { promotion_id: 42, promotion_name: "offer bonus clearance", start_date: "2023-08-02", end_date: "2023-05-10", discount_percentage: "39" },
            { promotion_id: 43, promotion_name: "special", start_date: "2023-02-28", end_date: "2023-06-25", discount_percentage: "39" },
            { promotion_id: 44, promotion_name: "launch", start_date: "2023-10-12", end_date: "2023-05-08", discount_percentage: "49" },
            { promotion_id: 45, promotion_name: "limited package promotion", start_date: "2023-01-15", end_date: "2023-04-11", discount_percentage: "47" },
            { promotion_id: 46, promotion_name: "bundle", start_date: "2023-08-02", end_date: "2023-07-05", discount_percentage: "35" },
            { promotion_id: 47, promotion_name: "deal sale", start_date: "2023-01-26", end_date: "2023-08-20", discount_percentage: "32" },
            { promotion_id: 48, promotion_name: "campaign bundle", start_date: "2023-12-23", end_date: "2023-04-24", discount_percentage: "8" },
            { promotion_id: 49, promotion_name: "package summer limited", start_date: "2023-06-15", end_date: "2023-12-09", discount_percentage: "49" },
            { promotion_id: 50, promotion_name: "flash giveaway", start_date: "2023-09-10", end_date: "2023-12-08", discount_percentage: "34" },
            { promotion_id: 51, promotion_name: "bundle", start_date: "2023-01-23", end_date: "2023-09-05", discount_percentage: "45" },
            { promotion_id: 52, promotion_name: "clearance", start_date: "2023-11-30", end_date: "2023-11-13", discount_percentage: "11" },
            { promotion_id: 53, promotion_name: "deal launch", start_date: "2023-03-19", end_date: "2023-03-09", discount_percentage: "43" },
            { promotion_id: 54, promotion_name: "clearance sale exclusive", start_date: "2023-12-19", end_date: "2023-08-15", discount_percentage: "37" },
            { promotion_id: 55, promotion_name: "holiday promotion", start_date: "2023-12-14", end_date: "2023-10-27", discount_percentage: "49" },
            { promotion_id: 56, promotion_name: "sale", start_date: "2023-07-29", end_date: "2023-10-02", discount_percentage: "28" },
            { promotion_id: 57, promotion_name: "surprise giveaway offer", start_date: "2023-03-29", end_date: "2023-02-04", discount_percentage: "8" },
            { promotion_id: 58, promotion_name: "deal package surprise", start_date: "2023-06-02", end_date: "2023-04-20", discount_percentage: "42" },
            { promotion_id: 59, promotion_name: "holiday", start_date: "2023-08-01", end_date: "2023-08-21", discount_percentage: "15" },
            { promotion_id: 60, promotion_name: "surprise", start_date: "2023-03-15", end_date: "2023-06-17", discount_percentage: "29" },
            { promotion_id: 61, promotion_name: "clearance holiday package", start_date: "2023-04-06", end_date: "2023-07-04", discount_percentage: "50" },
            { promotion_id: 62, promotion_name: "special campaign", start_date: "2023-12-01", end_date: "2023-03-10", discount_percentage: "6" },
            { promotion_id: 63, promotion_name: "campaign promotion giveaway", start_date: "2023-01-30", end_date: "2023-08-19", discount_percentage: "43" },
            { promotion_id: 64, promotion_name: "giveaway", start_date: "2023-04-02", end_date: "2023-03-26", discount_percentage: "24" },
            { promotion_id: 65, promotion_name: "sale discount holiday", start_date: "2023-02-17", end_date: "2023-06-14", discount_percentage: "33" },
            { promotion_id: 66, promotion_name: "bonus", start_date: "2023-11-13", end_date: "2023-08-07", discount_percentage: "47" },
            { promotion_id: 67, promotion_name: "reward clearance", start_date: "2023-12-23", end_date: "2023-07-09", discount_percentage: "15" },
            { promotion_id: 68, promotion_name: "limited", start_date: "2023-05-29", end_date: "2023-09-18", discount_percentage: "22" },
            { promotion_id: 69, promotion_name: "discount", start_date: "2023-08-21", end_date: "2023-06-18", discount_percentage: "35" },
            { promotion_id: 70, promotion_name: "holiday promotion", start_date: "2023-07-09", end_date: "2023-01-17", discount_percentage: "23" },
            { promotion_id: 71, promotion_name: "special flash surprise", start_date: "2023-04-03", end_date: "2023-08-07", discount_percentage: "50" },
            { promotion_id: 72, promotion_name: "campaign discount special", start_date: "2023-03-14", end_date: "2023-06-28", discount_percentage: "39" },
            { promotion_id: 73, promotion_name: "offer", start_date: "2023-10-08", end_date: "2023-10-08", discount_percentage: "44" },
            { promotion_id: 74, promotion_name: "limited giveaway event", start_date: "2023-01-12", end_date: "2023-09-11", discount_percentage: "45" },
            { promotion_id: 75, promotion_name: "package", start_date: "2023-07-31", end_date: "2023-04-16", discount_percentage: "12" },
            { promotion_id: 76, promotion_name: "bundle summer offer", start_date: "2023-08-11", end_date: "2023-07-22", discount_percentage: "41" },
            { promotion_id: 77, promotion_name: "event", start_date: "2023-07-13", end_date: "2023-06-11", discount_percentage: "50" },
            { promotion_id: 78, promotion_name: "limited", start_date: "2023-03-06", end_date: "2023-04-09", discount_percentage: "42" },
            { promotion_id: 79, promotion_name: "exclusive", start_date: "2023-05-14", end_date: "2023-12-28", discount_percentage: "38" },
            { promotion_id: 80, promotion_name: "exclusive", start_date: "2023-07-26", end_date: "2023-12-16", discount_percentage: "49" },
            { promotion_id: 81, promotion_name: "discount summer", start_date: "2023-12-09", end_date: "2023-08-10", discount_percentage: "19" },
            { promotion_id: 82, promotion_name: "event campaign bonus", start_date: "2023-03-03", end_date: "2023-06-18", discount_percentage: "45" },
            { promotion_id: 83, promotion_name: "reward event", start_date: "2023-06-11", end_date: "2023-02-14", discount_percentage: "47" },
            { promotion_id: 84, promotion_name: "bundle clearance", start_date: "2023-05-14", end_date: "2023-12-30", discount_percentage: "5" },
            { promotion_id: 85, promotion_name: "package", start_date: "2023-08-15", end_date: "2023-05-03", discount_percentage: "47" },
            { promotion_id: 86, promotion_name: "sale reward bonus", start_date: "2023-06-09", end_date: "2023-04-15", discount_percentage: "47" },
            { promotion_id: 87, promotion_name: "flash discount limited", start_date: "2023-05-06", end_date: "2023-08-24", discount_percentage: "44" },
            { promotion_id: 88, promotion_name: "surprise", start_date: "2023-09-10", end_date: "2023-02-03", discount_percentage: "6" },
            { promotion_id: 89, promotion_name: "sale holiday", start_date: "2023-10-20", end_date: "2023-08-20", discount_percentage: "37" },
            { promotion_id: 90, promotion_name: "offer campaign giveaway", start_date: "2023-05-19", end_date: "2023-03-27", discount_percentage: "47" },
            { promotion_id: 91, promotion_name: "surprise", start_date: "2023-03-18", end_date: "2023-04-13", discount_percentage: "27" },
            { promotion_id: 92, promotion_name: "special package", start_date: "2023-12-12", end_date: "2023-05-02", discount_percentage: "36" },
            { promotion_id: 93, promotion_name: "campaign", start_date: "2023-07-20", end_date: "2023-01-31", discount_percentage: "29" },
            { promotion_id: 94, promotion_name: "summer", start_date: "2023-09-05", end_date: "2023-08-14", discount_percentage: "50" },
            { promotion_id: 95, promotion_name: "bonus", start_date: "2023-02-17", end_date: "2023-02-07", discount_percentage: "50" },
            { promotion_id: 96, promotion_name: "clearance bonus", start_date: "2023-09-04", end_date: "2023-05-28", discount_percentage: "44" },
            { promotion_id: 97, promotion_name: "surprise offer", start_date: "2023-08-06", end_date: "2023-11-27", discount_percentage: "31" },
            { promotion_id: 98, promotion_name: "giveaway clearance flash", start_date: "2023-12-02", end_date: "2023-08-18", discount_percentage: "9" },
            { promotion_id: 99, promotion_name: "event", start_date: "2023-05-08", end_date: "2023-12-17", discount_percentage: "42" },
            { promotion_id: 100, promotion_name: "sale summer", start_date: "2023-01-05", end_date: "2023-02-17", discount_percentage: "44" },
        ],
    });
    await prisma.coupons.createMany({
        data: [
            { coupon_id: 1, customer_id: 172, promotion_id: 39, issue_date: "2023-08-09", expiration_date: "2023-01-06", discount_value: "14.55" },
            { coupon_id: 2, customer_id: 200, promotion_id: 64, issue_date: "2023-12-14", expiration_date: "2023-05-16", discount_value: "41.61" },
            { coupon_id: 3, customer_id: 94, promotion_id: 44, issue_date: "2023-03-08", expiration_date: "2023-04-21", discount_value: "36.00" },
            { coupon_id: 4, customer_id: 24, promotion_id: 19, issue_date: "2023-08-10", expiration_date: "2023-08-10", discount_value: "74.23" },
            { coupon_id: 5, customer_id: 82, promotion_id: 45, issue_date: "2023-12-05", expiration_date: "2023-11-11", discount_value: "5.97" },
            { coupon_id: 6, customer_id: 121, promotion_id: null, issue_date: "2023-09-21", expiration_date: "2023-03-02", discount_value: "4.48" },
            { coupon_id: 7, customer_id: 155, promotion_id: 2, issue_date: "2023-01-24", expiration_date: "2023-05-03", discount_value: "8.57" },
            { coupon_id: 8, customer_id: 175, promotion_id: 10, issue_date: "2023-03-23", expiration_date: "2023-07-19", discount_value: "3.10" },
            { coupon_id: 9, customer_id: 83, promotion_id: 43, issue_date: "2023-04-19", expiration_date: "2023-04-30", discount_value: "22.58" },
            { coupon_id: 10, customer_id: 51, promotion_id: 81, issue_date: "2023-05-16", expiration_date: "2023-11-23", discount_value: "52.12" },
            { coupon_id: 11, customer_id: 131, promotion_id: 34, issue_date: "2023-10-03", expiration_date: "2023-03-16", discount_value: "41.65" },
            { coupon_id: 12, customer_id: 190, promotion_id: 18, issue_date: "2023-03-19", expiration_date: "2023-09-01", discount_value: "95.98" },
            { coupon_id: 13, customer_id: 149, promotion_id: 72, issue_date: "2023-08-15", expiration_date: "2023-02-23", discount_value: "45.32" },
            { coupon_id: 14, customer_id: 189, promotion_id: 25, issue_date: "2023-05-17", expiration_date: "2023-08-20", discount_value: "19.21" },
            { coupon_id: 15, customer_id: 70, promotion_id: 94, issue_date: "2023-03-19", expiration_date: "2023-07-29", discount_value: "5.90" },
            { coupon_id: 16, customer_id: 194, promotion_id: 25, issue_date: "2023-12-01", expiration_date: "2023-02-22", discount_value: "1.14" },
            { coupon_id: 17, customer_id: 97, promotion_id: 15, issue_date: "2023-05-01", expiration_date: "2023-05-02", discount_value: "72.45" },
            { coupon_id: 18, customer_id: 12, promotion_id: 40, issue_date: "2023-10-25", expiration_date: "2023-03-12", discount_value: "8.75" },
            { coupon_id: 19, customer_id: 128, promotion_id: 24, issue_date: "2023-11-27", expiration_date: "2023-09-09", discount_value: "87.31" },
            { coupon_id: 20, customer_id: 133, promotion_id: 59, issue_date: "2023-09-23", expiration_date: "2023-04-16", discount_value: "48.25" },
            { coupon_id: 21, customer_id: 151, promotion_id: 20, issue_date: "2023-09-26", expiration_date: "2023-07-30", discount_value: "24.33" },
            { coupon_id: 22, customer_id: 127, promotion_id: 75, issue_date: "2023-03-22", expiration_date: "2023-12-10", discount_value: "19.77" },
            { coupon_id: 23, customer_id: 117, promotion_id: 68, issue_date: "2023-12-30", expiration_date: "2023-04-13", discount_value: "57.14" },
            { coupon_id: 24, customer_id: 9, promotion_id: null, issue_date: "2023-02-12", expiration_date: "2023-01-11", discount_value: "48.40" },
            { coupon_id: 25, customer_id: 66, promotion_id: null, issue_date: "2023-11-12", expiration_date: "2023-01-12", discount_value: "47.98" },
            { coupon_id: 26, customer_id: 23, promotion_id: 46, issue_date: "2023-12-04", expiration_date: "2023-06-06", discount_value: "45.23" },
            { coupon_id: 27, customer_id: 65, promotion_id: 15, issue_date: "2023-11-24", expiration_date: "2023-11-14", discount_value: "1.70" },
            { coupon_id: 28, customer_id: 138, promotion_id: 51, issue_date: "2023-10-11", expiration_date: "2023-05-17", discount_value: "15.01" },
            { coupon_id: 29, customer_id: 194, promotion_id: 54, issue_date: "2023-02-25", expiration_date: "2023-02-18", discount_value: "41.97" },
            { coupon_id: 30, customer_id: 189, promotion_id: 22, issue_date: "2023-07-13", expiration_date: "2023-07-25", discount_value: "21.44" },
            { coupon_id: 31, customer_id: 161, promotion_id: 82, issue_date: "2023-08-30", expiration_date: "2023-11-23", discount_value: "17.30" },
            { coupon_id: 32, customer_id: 62, promotion_id: 41, issue_date: "2023-06-22", expiration_date: "2023-06-04", discount_value: "52.83" },
            { coupon_id: 33, customer_id: 37, promotion_id: 78, issue_date: "2023-03-24", expiration_date: "2023-11-19", discount_value: "20.39" },
            { coupon_id: 34, customer_id: 121, promotion_id: 10, issue_date: "2023-07-23", expiration_date: "2023-11-05", discount_value: "13.03" },
            { coupon_id: 35, customer_id: 15, promotion_id: 97, issue_date: "2023-11-15", expiration_date: "2023-09-03", discount_value: "19.64" },
            { coupon_id: 36, customer_id: 139, promotion_id: 78, issue_date: "2023-02-05", expiration_date: "2023-04-28", discount_value: "13.26" },
            { coupon_id: 37, customer_id: 84, promotion_id: 29, issue_date: "2023-03-22", expiration_date: "2023-01-13", discount_value: "42.47" },
            { coupon_id: 38, customer_id: 128, promotion_id: 88, issue_date: "2023-01-06", expiration_date: "2023-08-22", discount_value: "93.61" },
            { coupon_id: 39, customer_id: 105, promotion_id: 7, issue_date: "2023-11-13", expiration_date: "2023-07-21", discount_value: "14.83" },
            { coupon_id: 40, customer_id: 131, promotion_id: 43, issue_date: "2023-03-06", expiration_date: "2023-01-24", discount_value: "11.30" },
            { coupon_id: 41, customer_id: 130, promotion_id: 33, issue_date: "2023-06-19", expiration_date: "2023-12-15", discount_value: "20.38" },
            { coupon_id: 42, customer_id: 97, promotion_id: 98, issue_date: "2023-02-24", expiration_date: "2023-02-15", discount_value: "10.04" },
            { coupon_id: 43, customer_id: 83, promotion_id: null, issue_date: "2023-11-17", expiration_date: "2023-03-05", discount_value: "82.65" },
            { coupon_id: 44, customer_id: 151, promotion_id: 51, issue_date: "2023-07-28", expiration_date: "2023-08-27", discount_value: "8.93" },
            { coupon_id: 45, customer_id: 96, promotion_id: 12, issue_date: "2023-07-20", expiration_date: "2023-04-13", discount_value: "4.83" },
            { coupon_id: 46, customer_id: 58, promotion_id: 61, issue_date: "2023-07-20", expiration_date: "2023-01-23", discount_value: "6.09" },
            { coupon_id: 47, customer_id: 141, promotion_id: null, issue_date: "2023-07-23", expiration_date: "2023-07-18", discount_value: "35.60" },
            { coupon_id: 48, customer_id: 80, promotion_id: 47, issue_date: "2023-09-19", expiration_date: "2023-02-17", discount_value: "97.48" },
            { coupon_id: 49, customer_id: 123, promotion_id: 27, issue_date: "2023-12-31", expiration_date: "2023-01-04", discount_value: "11.05" },
            { coupon_id: 50, customer_id: 174, promotion_id: 28, issue_date: "2023-04-28", expiration_date: "2023-01-11", discount_value: "5.25" },
            { coupon_id: 51, customer_id: 16, promotion_id: 34, issue_date: "2023-04-28", expiration_date: "2023-12-22", discount_value: "93.25" },
            { coupon_id: 52, customer_id: 174, promotion_id: 30, issue_date: "2023-11-15", expiration_date: "2023-05-07", discount_value: "79.61" },
            { coupon_id: 53, customer_id: 199, promotion_id: null, issue_date: "2023-08-19", expiration_date: "2023-03-20", discount_value: "55.99" },
            { coupon_id: 54, customer_id: 51, promotion_id: 64, issue_date: "2023-08-10", expiration_date: "2023-03-27", discount_value: "86.55" },
            { coupon_id: 55, customer_id: 95, promotion_id: 59, issue_date: "2023-03-11", expiration_date: "2023-06-19", discount_value: "8.74" },
            { coupon_id: 56, customer_id: 84, promotion_id: 77, issue_date: "2023-06-29", expiration_date: "2023-11-30", discount_value: "9.96" },
            { coupon_id: 57, customer_id: 84, promotion_id: 25, issue_date: "2023-07-10", expiration_date: "2023-07-23", discount_value: "19.48" },
            { coupon_id: 58, customer_id: 75, promotion_id: 15, issue_date: "2023-03-02", expiration_date: "2023-05-20", discount_value: "10.17" },
            { coupon_id: 59, customer_id: 178, promotion_id: 81, issue_date: "2023-06-07", expiration_date: "2023-12-19", discount_value: "1.08" },
            { coupon_id: 60, customer_id: 74, promotion_id: 71, issue_date: "2023-12-15", expiration_date: "2023-11-25", discount_value: "3.81" },
            { coupon_id: 61, customer_id: 101, promotion_id: 61, issue_date: "2023-01-23", expiration_date: "2023-11-19", discount_value: "1.63" },
            { coupon_id: 62, customer_id: 73, promotion_id: 14, issue_date: "2023-09-07", expiration_date: "2023-09-17", discount_value: "48.79" },
            { coupon_id: 63, customer_id: 41, promotion_id: 83, issue_date: "2023-05-29", expiration_date: "2023-02-06", discount_value: "61.73" },
            { coupon_id: 64, customer_id: 75, promotion_id: null, issue_date: "2023-05-26", expiration_date: "2023-09-09", discount_value: "95.46" },
            { coupon_id: 65, customer_id: 142, promotion_id: 21, issue_date: "2023-06-02", expiration_date: "2023-07-05", discount_value: "5.29" },
            { coupon_id: 66, customer_id: 70, promotion_id: 52, issue_date: "2023-08-13", expiration_date: "2023-10-31", discount_value: "21.00" },
            { coupon_id: 67, customer_id: 149, promotion_id: null, issue_date: "2023-03-03", expiration_date: "2023-01-10", discount_value: "9.96" },
            { coupon_id: 68, customer_id: 82, promotion_id: 59, issue_date: "2023-02-21", expiration_date: "2023-09-21", discount_value: "28.36" },
            { coupon_id: 69, customer_id: 158, promotion_id: 7, issue_date: "2023-03-15", expiration_date: "2023-09-28", discount_value: "23.96" },
            { coupon_id: 70, customer_id: 161, promotion_id: 46, issue_date: "2023-01-25", expiration_date: "2023-04-17", discount_value: "4.99" },
            { coupon_id: 71, customer_id: 90, promotion_id: null, issue_date: "2023-03-17", expiration_date: "2023-08-13", discount_value: "66.07" },
            { coupon_id: 72, customer_id: 89, promotion_id: 13, issue_date: "2023-09-07", expiration_date: "2023-03-17", discount_value: "41.10" },
            { coupon_id: 73, customer_id: 19, promotion_id: 14, issue_date: "2023-09-27", expiration_date: "2023-01-28", discount_value: "22.87" },
            { coupon_id: 74, customer_id: 36, promotion_id: 21, issue_date: "2023-08-11", expiration_date: "2023-07-02", discount_value: "70.75" },
            { coupon_id: 75, customer_id: 159, promotion_id: 55, issue_date: "2023-10-29", expiration_date: "2023-08-11", discount_value: "41.66" },
            { coupon_id: 76, customer_id: 198, promotion_id: 70, issue_date: "2023-08-04", expiration_date: "2023-02-28", discount_value: "1.02" },
            { coupon_id: 77, customer_id: 195, promotion_id: 4, issue_date: "2023-09-22", expiration_date: "2023-10-05", discount_value: "5.36" },
            { coupon_id: 78, customer_id: 10, promotion_id: 92, issue_date: "2023-09-26", expiration_date: "2023-05-21", discount_value: "8.52" },
            { coupon_id: 79, customer_id: 75, promotion_id: 25, issue_date: "2023-05-19", expiration_date: "2023-03-31", discount_value: "6.84" },
            { coupon_id: 80, customer_id: 7, promotion_id: 16, issue_date: "2023-06-22", expiration_date: "2023-12-01", discount_value: "68.36" },
            { coupon_id: 81, customer_id: 77, promotion_id: 81, issue_date: "2023-12-24", expiration_date: "2023-03-16", discount_value: "3.05" },
            { coupon_id: 82, customer_id: 155, promotion_id: 56, issue_date: "2023-07-27", expiration_date: "2023-01-16", discount_value: "5.49" },
            { coupon_id: 83, customer_id: 15, promotion_id: 34, issue_date: "2023-11-24", expiration_date: "2023-08-23", discount_value: "1.19" },
            { coupon_id: 84, customer_id: 161, promotion_id: 2, issue_date: "2023-07-12", expiration_date: "2023-01-03", discount_value: "15.64" },
            { coupon_id: 85, customer_id: 48, promotion_id: 32, issue_date: "2023-04-27", expiration_date: "2023-03-13", discount_value: "78.93" },
            { coupon_id: 86, customer_id: 1, promotion_id: 54, issue_date: "2023-08-11", expiration_date: "2023-05-11", discount_value: "69.62" },
            { coupon_id: 87, customer_id: 18, promotion_id: 74, issue_date: "2023-06-10", expiration_date: "2023-03-17", discount_value: "2.08" },
            { coupon_id: 88, customer_id: 142, promotion_id: 27, issue_date: "2023-08-17", expiration_date: "2023-11-24", discount_value: "3.77" },
            { coupon_id: 89, customer_id: 67, promotion_id: 27, issue_date: "2023-04-16", expiration_date: "2023-05-20", discount_value: "3.21" },
            { coupon_id: 90, customer_id: 154, promotion_id: 51, issue_date: "2023-07-28", expiration_date: "2023-04-02", discount_value: "2.14" },
            { coupon_id: 91, customer_id: 27, promotion_id: 80, issue_date: "2023-06-30", expiration_date: "2023-04-09", discount_value: "14.77" },
            { coupon_id: 92, customer_id: 198, promotion_id: 39, issue_date: "2023-12-18", expiration_date: "2023-03-14", discount_value: "14.50" },
            { coupon_id: 93, customer_id: 52, promotion_id: 91, issue_date: "2023-11-11", expiration_date: "2023-10-25", discount_value: "1.63" },
            { coupon_id: 94, customer_id: 156, promotion_id: 67, issue_date: "2023-01-24", expiration_date: "2023-08-07", discount_value: "38.37" },
            { coupon_id: 95, customer_id: 150, promotion_id: null, issue_date: "2023-10-19", expiration_date: "2023-10-13", discount_value: "11.43" },
            { coupon_id: 96, customer_id: 54, promotion_id: 80, issue_date: "2023-09-29", expiration_date: "2023-07-16", discount_value: "26.65" },
            { coupon_id: 97, customer_id: 78, promotion_id: 44, issue_date: "2023-10-16", expiration_date: "2023-01-25", discount_value: "59.09" },
            { coupon_id: 98, customer_id: 33, promotion_id: 14, issue_date: "2023-08-19", expiration_date: "2023-02-18", discount_value: "13.06" },
            { coupon_id: 99, customer_id: 100, promotion_id: 10, issue_date: "2023-10-03", expiration_date: "2023-03-13", discount_value: "11.61" },
            { coupon_id: 100, customer_id: 1, promotion_id: 97, issue_date: "2023-09-28", expiration_date: "2023-05-24", discount_value: "59.79" },
            { coupon_id: 101, customer_id: 40, promotion_id: 30, issue_date: "2023-05-10", expiration_date: "2023-12-11", discount_value: "15.44" },
            { coupon_id: 102, customer_id: 57, promotion_id: 62, issue_date: "2023-12-16", expiration_date: "2023-01-14", discount_value: "31.82" },
            { coupon_id: 103, customer_id: 133, promotion_id: 63, issue_date: "2023-08-04", expiration_date: "2023-07-27", discount_value: "13.54" },
            { coupon_id: 104, customer_id: 76, promotion_id: null, issue_date: "2023-02-04", expiration_date: "2023-08-30", discount_value: "91.17" },
            { coupon_id: 105, customer_id: 135, promotion_id: 18, issue_date: "2023-11-26", expiration_date: "2023-11-10", discount_value: "7.09" },
            { coupon_id: 106, customer_id: 72, promotion_id: 60, issue_date: "2023-01-07", expiration_date: "2023-02-19", discount_value: "30.86" },
            { coupon_id: 107, customer_id: 111, promotion_id: null, issue_date: "2023-11-04", expiration_date: "2023-05-31", discount_value: "8.17" },
            { coupon_id: 108, customer_id: 31, promotion_id: 30, issue_date: "2023-01-16", expiration_date: "2023-11-24", discount_value: "31.03" },
            { coupon_id: 109, customer_id: 118, promotion_id: 83, issue_date: "2023-10-26", expiration_date: "2023-06-24", discount_value: "14.62" },
            { coupon_id: 110, customer_id: 136, promotion_id: null, issue_date: "2023-03-15", expiration_date: "2023-04-08", discount_value: "1.07" },
            { coupon_id: 111, customer_id: 58, promotion_id: 12, issue_date: "2023-06-24", expiration_date: "2023-02-25", discount_value: "67.90" },
            { coupon_id: 112, customer_id: 121, promotion_id: 34, issue_date: "2023-06-29", expiration_date: "2023-10-19", discount_value: "18.71" },
            { coupon_id: 113, customer_id: 185, promotion_id: 34, issue_date: "2023-03-19", expiration_date: "2023-03-03", discount_value: "6.98" },
            { coupon_id: 114, customer_id: 64, promotion_id: 84, issue_date: "2023-01-06", expiration_date: "2023-12-30", discount_value: "1.95" },
            { coupon_id: 115, customer_id: 178, promotion_id: 26, issue_date: "2023-04-30", expiration_date: "2023-10-24", discount_value: "1.47" },
            { coupon_id: 116, customer_id: 109, promotion_id: 9, issue_date: "2023-06-05", expiration_date: "2023-06-29", discount_value: "65.02" },
            { coupon_id: 117, customer_id: 114, promotion_id: 99, issue_date: "2023-07-07", expiration_date: "2023-06-09", discount_value: "1.46" },
            { coupon_id: 118, customer_id: 20, promotion_id: 43, issue_date: "2023-11-30", expiration_date: "2023-06-12", discount_value: "56.99" },
            { coupon_id: 119, customer_id: 5, promotion_id: 46, issue_date: "2023-02-18", expiration_date: "2023-03-24", discount_value: "53.32" },
            { coupon_id: 120, customer_id: 135, promotion_id: 10, issue_date: "2023-11-17", expiration_date: "2023-02-16", discount_value: "83.30" },
            { coupon_id: 121, customer_id: 114, promotion_id: 69, issue_date: "2023-01-18", expiration_date: "2023-02-05", discount_value: "60.72" },
            { coupon_id: 122, customer_id: 101, promotion_id: 65, issue_date: "2023-05-25", expiration_date: "2023-06-02", discount_value: "71.62" },
            { coupon_id: 123, customer_id: 176, promotion_id: 1, issue_date: "2023-01-06", expiration_date: "2023-03-17", discount_value: "64.06" },
            { coupon_id: 124, customer_id: 21, promotion_id: null, issue_date: "2023-04-11", expiration_date: "2023-10-10", discount_value: "67.50" },
            { coupon_id: 125, customer_id: 33, promotion_id: 50, issue_date: "2023-12-24", expiration_date: "2023-03-24", discount_value: "14.57" },
            { coupon_id: 126, customer_id: 115, promotion_id: 69, issue_date: "2023-01-02", expiration_date: "2023-02-15", discount_value: "69.50" },
            { coupon_id: 127, customer_id: 8, promotion_id: 5, issue_date: "2023-08-06", expiration_date: "2023-07-18", discount_value: "69.22" },
            { coupon_id: 128, customer_id: 29, promotion_id: null, issue_date: "2023-10-29", expiration_date: "2023-03-02", discount_value: "30.49" },
            { coupon_id: 129, customer_id: 27, promotion_id: 28, issue_date: "2023-06-09", expiration_date: "2023-11-19", discount_value: "92.23" },
            { coupon_id: 130, customer_id: 10, promotion_id: 24, issue_date: "2023-08-03", expiration_date: "2023-05-30", discount_value: "44.64" },
            { coupon_id: 131, customer_id: 68, promotion_id: 31, issue_date: "2023-09-25", expiration_date: "2023-06-15", discount_value: "76.24" },
            { coupon_id: 132, customer_id: 124, promotion_id: 73, issue_date: "2023-09-14", expiration_date: "2023-06-29", discount_value: "34.83" },
            { coupon_id: 133, customer_id: 186, promotion_id: 82, issue_date: "2023-09-02", expiration_date: "2023-03-12", discount_value: "37.86" },
            { coupon_id: 134, customer_id: 91, promotion_id: 34, issue_date: "2023-06-24", expiration_date: "2023-09-18", discount_value: "47.64" },
            { coupon_id: 135, customer_id: 113, promotion_id: 51, issue_date: "2023-05-29", expiration_date: "2023-05-20", discount_value: "33.52" },
            { coupon_id: 136, customer_id: 70, promotion_id: 25, issue_date: "2023-01-27", expiration_date: "2023-12-16", discount_value: "1.93" },
            { coupon_id: 137, customer_id: 31, promotion_id: 59, issue_date: "2023-10-29", expiration_date: "2023-02-11", discount_value: "93.06" },
            { coupon_id: 138, customer_id: 46, promotion_id: 74, issue_date: "2023-01-07", expiration_date: "2023-02-28", discount_value: "4.92" },
            { coupon_id: 139, customer_id: 102, promotion_id: 41, issue_date: "2023-02-23", expiration_date: "2023-10-05", discount_value: "96.44" },
            { coupon_id: 140, customer_id: 187, promotion_id: null, issue_date: "2023-09-27", expiration_date: "2023-10-10", discount_value: "82.43" },
            { coupon_id: 141, customer_id: 63, promotion_id: null, issue_date: "2023-03-07", expiration_date: "2023-02-13", discount_value: "5.24" },
            { coupon_id: 142, customer_id: 100, promotion_id: 77, issue_date: "2023-05-01", expiration_date: "2023-05-28", discount_value: "96.27" },
            { coupon_id: 143, customer_id: 10, promotion_id: null, issue_date: "2023-05-09", expiration_date: "2023-11-14", discount_value: "2.48" },
            { coupon_id: 144, customer_id: 152, promotion_id: 32, issue_date: "2023-08-09", expiration_date: "2023-12-08", discount_value: "23.52" },
            { coupon_id: 145, customer_id: 34, promotion_id: 33, issue_date: "2023-08-19", expiration_date: "2023-10-21", discount_value: "25.93" },
            { coupon_id: 146, customer_id: 192, promotion_id: 3, issue_date: "2023-05-21", expiration_date: "2023-12-18", discount_value: "66.94" },
            { coupon_id: 147, customer_id: 186, promotion_id: 57, issue_date: "2023-03-15", expiration_date: "2023-07-31", discount_value: "7.05" },
            { coupon_id: 148, customer_id: 1, promotion_id: 78, issue_date: "2023-12-21", expiration_date: "2023-11-12", discount_value: "1.21" },
            { coupon_id: 149, customer_id: 84, promotion_id: null, issue_date: "2023-01-11", expiration_date: "2023-01-30", discount_value: "4.95" },
            { coupon_id: 150, customer_id: 28, promotion_id: 13, issue_date: "2023-09-25", expiration_date: "2023-06-28", discount_value: "1.02" },
            { coupon_id: 151, customer_id: 70, promotion_id: 82, issue_date: "2023-07-14", expiration_date: "2023-07-07", discount_value: "47.37" },
            { coupon_id: 152, customer_id: 115, promotion_id: 100, issue_date: "2023-08-16", expiration_date: "2023-01-22", discount_value: "12.00" },
            { coupon_id: 153, customer_id: 155, promotion_id: 98, issue_date: "2023-02-28", expiration_date: "2023-11-08", discount_value: "7.70" },
            { coupon_id: 154, customer_id: 23, promotion_id: 63, issue_date: "2023-04-28", expiration_date: "2023-01-17", discount_value: "15.84" },
            { coupon_id: 155, customer_id: 167, promotion_id: 14, issue_date: "2023-01-19", expiration_date: "2023-01-28", discount_value: "63.57" },
            { coupon_id: 156, customer_id: 108, promotion_id: 97, issue_date: "2023-09-22", expiration_date: "2023-08-03", discount_value: "25.15" },
            { coupon_id: 157, customer_id: 28, promotion_id: 57, issue_date: "2023-10-22", expiration_date: "2023-04-14", discount_value: "96.91" },
            { coupon_id: 158, customer_id: 164, promotion_id: 33, issue_date: "2023-07-11", expiration_date: "2023-05-24", discount_value: "21.00" },
            { coupon_id: 159, customer_id: 140, promotion_id: 77, issue_date: "2023-06-25", expiration_date: "2023-12-06", discount_value: "12.66" },
            { coupon_id: 160, customer_id: 184, promotion_id: 16, issue_date: "2023-08-23", expiration_date: "2023-08-06", discount_value: "31.20" },
            { coupon_id: 161, customer_id: 200, promotion_id: 38, issue_date: "2023-10-29", expiration_date: "2023-01-13", discount_value: "39.25" },
            { coupon_id: 162, customer_id: 25, promotion_id: 78, issue_date: "2023-01-24", expiration_date: "2023-07-21", discount_value: "49.42" },
            { coupon_id: 163, customer_id: 82, promotion_id: 33, issue_date: "2023-11-14", expiration_date: "2023-01-05", discount_value: "23.60" },
            { coupon_id: 164, customer_id: 74, promotion_id: 74, issue_date: "2023-12-19", expiration_date: "2023-12-18", discount_value: "49.47" },
            { coupon_id: 165, customer_id: 155, promotion_id: 55, issue_date: "2023-09-21", expiration_date: "2023-06-07", discount_value: "43.29" },
            { coupon_id: 166, customer_id: 78, promotion_id: 4, issue_date: "2023-05-24", expiration_date: "2023-01-16", discount_value: "33.56" },
            { coupon_id: 167, customer_id: 72, promotion_id: 40, issue_date: "2023-12-13", expiration_date: "2023-08-05", discount_value: "87.93" },
            { coupon_id: 168, customer_id: 55, promotion_id: 72, issue_date: "2023-03-11", expiration_date: "2023-10-26", discount_value: "1.02" },
            { coupon_id: 169, customer_id: 181, promotion_id: 25, issue_date: "2023-02-10", expiration_date: "2023-11-18", discount_value: "23.55" },
            { coupon_id: 170, customer_id: 18, promotion_id: 61, issue_date: "2023-12-13", expiration_date: "2023-04-23", discount_value: "88.51" },
            { coupon_id: 171, customer_id: 76, promotion_id: 10, issue_date: "2023-08-21", expiration_date: "2023-06-23", discount_value: "38.06" },
            { coupon_id: 172, customer_id: 36, promotion_id: 58, issue_date: "2023-01-13", expiration_date: "2023-02-04", discount_value: "10.95" },
            { coupon_id: 173, customer_id: 53, promotion_id: 54, issue_date: "2023-03-02", expiration_date: "2023-11-22", discount_value: "33.61" },
            { coupon_id: 174, customer_id: 27, promotion_id: 80, issue_date: "2023-08-05", expiration_date: "2023-10-20", discount_value: "2.84" },
            { coupon_id: 175, customer_id: 66, promotion_id: 63, issue_date: "2023-07-23", expiration_date: "2023-06-08", discount_value: "29.54" },
            { coupon_id: 176, customer_id: 55, promotion_id: 25, issue_date: "2023-10-13", expiration_date: "2023-10-28", discount_value: "56.19" },
            { coupon_id: 177, customer_id: 136, promotion_id: 74, issue_date: "2023-07-18", expiration_date: "2023-01-10", discount_value: "26.70" },
            { coupon_id: 178, customer_id: 9, promotion_id: 80, issue_date: "2023-09-29", expiration_date: "2023-04-18", discount_value: "86.09" },
            { coupon_id: 179, customer_id: 175, promotion_id: 21, issue_date: "2023-06-22", expiration_date: "2023-06-01", discount_value: "20.21" },
            { coupon_id: 180, customer_id: 195, promotion_id: 22, issue_date: "2023-09-05", expiration_date: "2023-12-22", discount_value: "82.20" },
            { coupon_id: 181, customer_id: 39, promotion_id: 80, issue_date: "2023-09-15", expiration_date: "2023-12-12", discount_value: "50.78" },
            { coupon_id: 182, customer_id: 149, promotion_id: 1, issue_date: "2023-06-08", expiration_date: "2023-06-27", discount_value: "5.16" },
            { coupon_id: 183, customer_id: 196, promotion_id: 94, issue_date: "2023-03-30", expiration_date: "2023-09-24", discount_value: "82.06" },
            { coupon_id: 184, customer_id: 196, promotion_id: 92, issue_date: "2023-03-13", expiration_date: "2023-05-24", discount_value: "1.52" },
            { coupon_id: 185, customer_id: 63, promotion_id: 3, issue_date: "2023-08-09", expiration_date: "2023-09-13", discount_value: "13.05" },
            { coupon_id: 186, customer_id: 134, promotion_id: 75, issue_date: "2023-10-18", expiration_date: "2023-12-21", discount_value: "3.63" },
            { coupon_id: 187, customer_id: 84, promotion_id: 18, issue_date: "2023-03-15", expiration_date: "2023-06-28", discount_value: "51.12" },
            { coupon_id: 188, customer_id: 113, promotion_id: 53, issue_date: "2023-06-01", expiration_date: "2023-10-08", discount_value: "62.51" },
            { coupon_id: 189, customer_id: 88, promotion_id: null, issue_date: "2023-06-16", expiration_date: "2023-12-04", discount_value: "37.45" },
            { coupon_id: 190, customer_id: 33, promotion_id: 97, issue_date: "2023-09-02", expiration_date: "2023-10-22", discount_value: "39.22" },
            { coupon_id: 191, customer_id: 14, promotion_id: 60, issue_date: "2023-12-04", expiration_date: "2023-04-19", discount_value: "1.02" },
            { coupon_id: 192, customer_id: 109, promotion_id: 54, issue_date: "2023-05-04", expiration_date: "2023-04-24", discount_value: "58.98" },
            { coupon_id: 193, customer_id: 18, promotion_id: 89, issue_date: "2023-06-22", expiration_date: "2023-07-13", discount_value: "10.46" },
            { coupon_id: 194, customer_id: 34, promotion_id: 95, issue_date: "2023-05-30", expiration_date: "2023-08-24", discount_value: "13.68" },
            { coupon_id: 195, customer_id: 177, promotion_id: 15, issue_date: "2023-10-24", expiration_date: "2023-03-27", discount_value: "1.80" },
            { coupon_id: 196, customer_id: 200, promotion_id: 1, issue_date: "2023-02-01", expiration_date: "2023-04-11", discount_value: "68.96" },
            { coupon_id: 197, customer_id: 84, promotion_id: 99, issue_date: "2023-10-15", expiration_date: "2023-06-28", discount_value: "58.06" },
            { coupon_id: 198, customer_id: 8, promotion_id: 25, issue_date: "2023-04-17", expiration_date: "2023-06-06", discount_value: "20.40" },
            { coupon_id: 199, customer_id: 136, promotion_id: 90, issue_date: "2023-03-16", expiration_date: "2023-04-29", discount_value: "54.52" },
            { coupon_id: 200, customer_id: 38, promotion_id: 41, issue_date: "2023-06-08", expiration_date: "2023-06-11", discount_value: "4.12" },
            { coupon_id: 201, customer_id: 128, promotion_id: 66, issue_date: "2023-10-22", expiration_date: "2023-05-08", discount_value: "66.91" },
            { coupon_id: 202, customer_id: 91, promotion_id: 30, issue_date: "2023-02-25", expiration_date: "2023-05-22", discount_value: "28.05" },
            { coupon_id: 203, customer_id: 46, promotion_id: 55, issue_date: "2023-11-17", expiration_date: "2023-07-12", discount_value: "30.82" },
            { coupon_id: 204, customer_id: 85, promotion_id: 33, issue_date: "2023-02-07", expiration_date: "2023-06-14", discount_value: "1.38" },
            { coupon_id: 205, customer_id: 175, promotion_id: 41, issue_date: "2023-09-16", expiration_date: "2023-04-22", discount_value: "16.40" },
            { coupon_id: 206, customer_id: 85, promotion_id: 3, issue_date: "2023-03-27", expiration_date: "2023-01-28", discount_value: "67.30" },
            { coupon_id: 207, customer_id: 35, promotion_id: 86, issue_date: "2023-11-27", expiration_date: "2023-09-23", discount_value: "23.98" },
            { coupon_id: 208, customer_id: 133, promotion_id: 74, issue_date: "2023-01-22", expiration_date: "2023-12-06", discount_value: "9.68" },
            { coupon_id: 209, customer_id: 57, promotion_id: 63, issue_date: "2023-05-13", expiration_date: "2023-12-05", discount_value: "19.87" },
            { coupon_id: 210, customer_id: 143, promotion_id: 54, issue_date: "2023-08-17", expiration_date: "2023-10-13", discount_value: "2.87" },
            { coupon_id: 211, customer_id: 20, promotion_id: 32, issue_date: "2023-05-11", expiration_date: "2023-09-02", discount_value: "33.47" },
            { coupon_id: 212, customer_id: 98, promotion_id: 31, issue_date: "2023-09-28", expiration_date: "2023-05-07", discount_value: "1.35" },
            { coupon_id: 213, customer_id: 15, promotion_id: null, issue_date: "2023-02-23", expiration_date: "2023-06-09", discount_value: "76.36" },
            { coupon_id: 214, customer_id: 193, promotion_id: 80, issue_date: "2023-12-26", expiration_date: "2023-07-10", discount_value: "41.80" },
            { coupon_id: 215, customer_id: 94, promotion_id: 97, issue_date: "2023-04-07", expiration_date: "2023-08-27", discount_value: "8.29" },
            { coupon_id: 216, customer_id: 60, promotion_id: 22, issue_date: "2023-02-12", expiration_date: "2023-02-21", discount_value: "39.89" },
            { coupon_id: 217, customer_id: 7, promotion_id: 96, issue_date: "2023-02-25", expiration_date: "2023-05-02", discount_value: "82.12" },
            { coupon_id: 218, customer_id: 199, promotion_id: 81, issue_date: "2023-04-22", expiration_date: "2023-06-23", discount_value: "21.39" },
            { coupon_id: 219, customer_id: 65, promotion_id: 80, issue_date: "2023-10-27", expiration_date: "2023-02-15", discount_value: "21.69" },
            { coupon_id: 220, customer_id: 68, promotion_id: 18, issue_date: "2023-01-25", expiration_date: "2023-05-26", discount_value: "68.03" },
            { coupon_id: 221, customer_id: 119, promotion_id: 96, issue_date: "2023-01-13", expiration_date: "2023-12-08", discount_value: "39.55" },
            { coupon_id: 222, customer_id: 29, promotion_id: 75, issue_date: "2023-08-09", expiration_date: "2023-01-21", discount_value: "2.93" },
            { coupon_id: 223, customer_id: 112, promotion_id: null, issue_date: "2023-06-05", expiration_date: "2023-12-23", discount_value: "47.58" },
            { coupon_id: 224, customer_id: 23, promotion_id: 66, issue_date: "2023-01-03", expiration_date: "2023-09-12", discount_value: "4.41" },
            { coupon_id: 225, customer_id: 36, promotion_id: 82, issue_date: "2023-09-01", expiration_date: "2023-03-26", discount_value: "93.70" },
            { coupon_id: 226, customer_id: 116, promotion_id: 30, issue_date: "2023-04-25", expiration_date: "2023-06-27", discount_value: "3.39" },
            { coupon_id: 227, customer_id: 62, promotion_id: 18, issue_date: "2023-11-29", expiration_date: "2023-07-31", discount_value: "9.94" },
            { coupon_id: 228, customer_id: 32, promotion_id: 70, issue_date: "2023-06-10", expiration_date: "2023-06-30", discount_value: "31.69" },
            { coupon_id: 229, customer_id: 124, promotion_id: 36, issue_date: "2023-07-26", expiration_date: "2023-05-08", discount_value: "8.52" },
            { coupon_id: 230, customer_id: 72, promotion_id: 90, issue_date: "2023-10-30", expiration_date: "2023-12-20", discount_value: "85.16" },
            { coupon_id: 231, customer_id: 143, promotion_id: 58, issue_date: "2023-02-11", expiration_date: "2023-06-27", discount_value: "78.89" },
            { coupon_id: 232, customer_id: 154, promotion_id: null, issue_date: "2023-07-23", expiration_date: "2023-11-05", discount_value: "95.97" },
            { coupon_id: 233, customer_id: 185, promotion_id: 69, issue_date: "2023-05-02", expiration_date: "2023-04-29", discount_value: "35.70" },
            { coupon_id: 234, customer_id: 120, promotion_id: 2, issue_date: "2023-05-20", expiration_date: "2023-10-22", discount_value: "73.50" },
            { coupon_id: 235, customer_id: 115, promotion_id: 72, issue_date: "2023-11-19", expiration_date: "2023-02-05", discount_value: "1.04" },
            { coupon_id: 236, customer_id: 130, promotion_id: 35, issue_date: "2023-07-09", expiration_date: "2023-12-19", discount_value: "4.93" },
            { coupon_id: 237, customer_id: 155, promotion_id: 11, issue_date: "2023-05-01", expiration_date: "2023-07-08", discount_value: "18.39" },
            { coupon_id: 238, customer_id: 198, promotion_id: 100, issue_date: "2023-03-18", expiration_date: "2023-08-20", discount_value: "9.95" },
            { coupon_id: 239, customer_id: 124, promotion_id: 21, issue_date: "2023-10-08", expiration_date: "2023-12-09", discount_value: "59.45" },
            { coupon_id: 240, customer_id: 53, promotion_id: 64, issue_date: "2023-11-14", expiration_date: "2023-02-25", discount_value: "19.26" },
            { coupon_id: 241, customer_id: 36, promotion_id: 63, issue_date: "2023-07-09", expiration_date: "2023-10-28", discount_value: "61.87" },
            { coupon_id: 242, customer_id: 185, promotion_id: 13, issue_date: "2023-06-10", expiration_date: "2023-03-16", discount_value: "2.56" },
            { coupon_id: 243, customer_id: 22, promotion_id: 1, issue_date: "2023-09-18", expiration_date: "2023-10-07", discount_value: "29.02" },
            { coupon_id: 244, customer_id: 98, promotion_id: 41, issue_date: "2023-06-09", expiration_date: "2023-01-09", discount_value: "32.88" },
            { coupon_id: 245, customer_id: 173, promotion_id: 66, issue_date: "2023-06-15", expiration_date: "2023-09-19", discount_value: "50.57" },
            { coupon_id: 246, customer_id: 115, promotion_id: 3, issue_date: "2023-03-29", expiration_date: "2023-10-10", discount_value: "43.76" },
            { coupon_id: 247, customer_id: 16, promotion_id: 55, issue_date: "2023-10-02", expiration_date: "2023-11-20", discount_value: "14.31" },
            { coupon_id: 248, customer_id: 44, promotion_id: 10, issue_date: "2023-10-30", expiration_date: "2023-12-06", discount_value: "53.63" },
            { coupon_id: 249, customer_id: 185, promotion_id: 100, issue_date: "2023-05-07", expiration_date: "2023-05-09", discount_value: "80.59" },
            { coupon_id: 250, customer_id: 118, promotion_id: 95, issue_date: "2023-01-19", expiration_date: "2023-10-04", discount_value: "71.43" },
            { coupon_id: 251, customer_id: 116, promotion_id: 69, issue_date: "2023-05-29", expiration_date: "2023-06-06", discount_value: "1.01" },
            { coupon_id: 252, customer_id: 54, promotion_id: 86, issue_date: "2023-09-12", expiration_date: "2023-07-30", discount_value: "78.12" },
            { coupon_id: 253, customer_id: 172, promotion_id: 52, issue_date: "2023-08-16", expiration_date: "2023-08-19", discount_value: "1.11" },
            { coupon_id: 254, customer_id: 87, promotion_id: null, issue_date: "2023-03-20", expiration_date: "2023-05-02", discount_value: "1.19" },
            { coupon_id: 255, customer_id: 22, promotion_id: 22, issue_date: "2023-08-15", expiration_date: "2023-03-27", discount_value: "56.17" },
            { coupon_id: 256, customer_id: 113, promotion_id: 88, issue_date: "2023-03-12", expiration_date: "2023-07-24", discount_value: "91.93" },
            { coupon_id: 257, customer_id: 28, promotion_id: 90, issue_date: "2023-06-16", expiration_date: "2023-02-03", discount_value: "47.20" },
            { coupon_id: 258, customer_id: 95, promotion_id: 17, issue_date: "2023-03-06", expiration_date: "2023-07-29", discount_value: "23.92" },
            { coupon_id: 259, customer_id: 69, promotion_id: 25, issue_date: "2023-11-25", expiration_date: "2023-06-10", discount_value: "92.19" },
            { coupon_id: 260, customer_id: 147, promotion_id: 58, issue_date: "2023-11-24", expiration_date: "2023-12-03", discount_value: "27.65" },
            { coupon_id: 261, customer_id: 41, promotion_id: 2, issue_date: "2023-07-24", expiration_date: "2023-06-12", discount_value: "96.78" },
            { coupon_id: 262, customer_id: 13, promotion_id: 20, issue_date: "2023-09-02", expiration_date: "2023-06-21", discount_value: "8.50" },
            { coupon_id: 263, customer_id: 93, promotion_id: 34, issue_date: "2023-09-11", expiration_date: "2023-02-19", discount_value: "7.74" },
            { coupon_id: 264, customer_id: 182, promotion_id: 52, issue_date: "2023-05-21", expiration_date: "2023-02-13", discount_value: "30.96" },
            { coupon_id: 265, customer_id: 139, promotion_id: 80, issue_date: "2023-08-27", expiration_date: "2023-03-25", discount_value: "34.66" },
            { coupon_id: 266, customer_id: 199, promotion_id: 31, issue_date: "2023-04-18", expiration_date: "2023-04-28", discount_value: "22.44" },
            { coupon_id: 267, customer_id: 103, promotion_id: 14, issue_date: "2023-02-10", expiration_date: "2023-04-04", discount_value: "12.91" },
            { coupon_id: 268, customer_id: 199, promotion_id: 42, issue_date: "2023-04-05", expiration_date: "2023-04-27", discount_value: "48.15" },
            { coupon_id: 269, customer_id: 102, promotion_id: 30, issue_date: "2023-09-20", expiration_date: "2023-04-10", discount_value: "13.49" },
            { coupon_id: 270, customer_id: 14, promotion_id: 84, issue_date: "2023-01-07", expiration_date: "2023-09-07", discount_value: "1.02" },
            { coupon_id: 271, customer_id: 71, promotion_id: 59, issue_date: "2023-06-23", expiration_date: "2023-10-12", discount_value: "52.75" },
            { coupon_id: 272, customer_id: 26, promotion_id: 45, issue_date: "2023-01-18", expiration_date: "2023-01-01", discount_value: "5.66" },
            { coupon_id: 273, customer_id: 135, promotion_id: 11, issue_date: "2023-08-01", expiration_date: "2023-01-10", discount_value: "73.01" },
            { coupon_id: 274, customer_id: 189, promotion_id: 9, issue_date: "2023-11-14", expiration_date: "2023-05-27", discount_value: "99.06" },
            { coupon_id: 275, customer_id: 45, promotion_id: 24, issue_date: "2023-10-31", expiration_date: "2023-04-13", discount_value: "6.36" },
            { coupon_id: 276, customer_id: 43, promotion_id: 10, issue_date: "2023-07-23", expiration_date: "2023-06-17", discount_value: "21.26" },
            { coupon_id: 277, customer_id: 110, promotion_id: 90, issue_date: "2023-11-28", expiration_date: "2023-07-26", discount_value: "42.53" },
            { coupon_id: 278, customer_id: 99, promotion_id: 88, issue_date: "2023-01-17", expiration_date: "2023-10-29", discount_value: "15.56" },
            { coupon_id: 279, customer_id: 11, promotion_id: 90, issue_date: "2023-04-06", expiration_date: "2023-04-26", discount_value: "1.55" },
            { coupon_id: 280, customer_id: 108, promotion_id: 86, issue_date: "2023-04-11", expiration_date: "2023-09-23", discount_value: "42.85" },
            { coupon_id: 281, customer_id: 45, promotion_id: 68, issue_date: "2023-06-22", expiration_date: "2023-12-20", discount_value: "23.92" },
            { coupon_id: 282, customer_id: 65, promotion_id: 14, issue_date: "2023-08-24", expiration_date: "2023-07-20", discount_value: "12.57" },
            { coupon_id: 283, customer_id: 139, promotion_id: 70, issue_date: "2023-09-07", expiration_date: "2023-01-10", discount_value: "45.01" },
            { coupon_id: 284, customer_id: 157, promotion_id: 28, issue_date: "2023-08-22", expiration_date: "2023-02-02", discount_value: "3.96" },
            { coupon_id: 285, customer_id: 100, promotion_id: 49, issue_date: "2023-02-23", expiration_date: "2023-10-22", discount_value: "1.74" },
            { coupon_id: 286, customer_id: 3, promotion_id: 41, issue_date: "2023-07-02", expiration_date: "2023-12-28", discount_value: "37.88" },
            { coupon_id: 287, customer_id: 64, promotion_id: 73, issue_date: "2023-05-31", expiration_date: "2023-03-24", discount_value: "18.96" },
            { coupon_id: 288, customer_id: 46, promotion_id: 77, issue_date: "2023-02-27", expiration_date: "2023-08-12", discount_value: "43.01" },
            { coupon_id: 289, customer_id: 135, promotion_id: 66, issue_date: "2023-01-30", expiration_date: "2023-10-27", discount_value: "27.60" },
            { coupon_id: 290, customer_id: 28, promotion_id: null, issue_date: "2023-11-08", expiration_date: "2023-07-12", discount_value: "8.69" },
            { coupon_id: 291, customer_id: 164, promotion_id: 18, issue_date: "2023-11-02", expiration_date: "2023-03-06", discount_value: "75.03" },
            { coupon_id: 292, customer_id: 59, promotion_id: 26, issue_date: "2023-05-30", expiration_date: "2023-06-11", discount_value: "7.05" },
            { coupon_id: 293, customer_id: 74, promotion_id: 9, issue_date: "2023-02-28", expiration_date: "2023-08-08", discount_value: "64.52" },
            { coupon_id: 294, customer_id: 75, promotion_id: 62, issue_date: "2023-07-30", expiration_date: "2023-12-08", discount_value: "21.11" },
            { coupon_id: 295, customer_id: 41, promotion_id: 13, issue_date: "2023-12-05", expiration_date: "2023-09-06", discount_value: "1.13" },
            { coupon_id: 296, customer_id: 101, promotion_id: 48, issue_date: "2023-12-14", expiration_date: "2023-11-10", discount_value: "87.21" },
            { coupon_id: 297, customer_id: 26, promotion_id: 70, issue_date: "2023-05-29", expiration_date: "2023-03-14", discount_value: "34.56" },
            { coupon_id: 298, customer_id: 25, promotion_id: 93, issue_date: "2023-12-29", expiration_date: "2023-08-31", discount_value: "63.55" },
            { coupon_id: 299, customer_id: 66, promotion_id: 81, issue_date: "2023-05-30", expiration_date: "2023-10-06", discount_value: "28.15" },
            { coupon_id: 300, customer_id: 161, promotion_id: 56, issue_date: "2023-03-13", expiration_date: "2023-11-11", discount_value: "4.24" },
        ],
    });
    await prisma.reward_tiers.createMany({
        data: [
            { tier: 1, min_points: 36, benefits: "upgrade premium", max_points: 100, reward_multiplier: "2.56" },
            { tier: 2, min_points: 141, benefits: "offer voucher", max_points: 122, reward_multiplier: "1.44" },
            { tier: 3, min_points: 115, benefits: "voucher", max_points: 138, reward_multiplier: "1.77" },
            { tier: 4, min_points: 35, benefits: "access", max_points: 142, reward_multiplier: "2.24" },
        ],
    });
    await prisma.transactions.createMany({
        data: [
            { transaction_id: 1, customer_id: 152, transaction_date: new Date("2023-05-22T16:02:21Z"), amount_spent: "337.67", points_earned: 47 },
            { transaction_id: 2, customer_id: 68, transaction_date: new Date("2023-03-25T10:52:27Z"), amount_spent: "63.58", points_earned: 5 },
            { transaction_id: 3, customer_id: 34, transaction_date: new Date("2023-04-27T16:29:59Z"), amount_spent: "168.11", points_earned: 5 },
            { transaction_id: 4, customer_id: 136, transaction_date: new Date("2023-02-02T10:14:16Z"), amount_spent: "305.78", points_earned: 30 },
            { transaction_id: 5, customer_id: 9, transaction_date: new Date("2023-05-13T13:45:46Z"), amount_spent: "49.52", points_earned: 48 },
            { transaction_id: 6, customer_id: 89, transaction_date: new Date("2023-06-25T14:03:22Z"), amount_spent: "454.69", points_earned: 17 },
            { transaction_id: 7, customer_id: 90, transaction_date: new Date("2023-05-07T22:06:02Z"), amount_spent: "12.36", points_earned: 6 },
            { transaction_id: 8, customer_id: 112, transaction_date: new Date("2023-01-05T13:55:18Z"), amount_spent: "190.93", points_earned: 6 },
            { transaction_id: 9, customer_id: 157, transaction_date: new Date("2023-07-26T08:15:52Z"), amount_spent: "45.00", points_earned: 5 },
            { transaction_id: 10, customer_id: 58, transaction_date: new Date("2023-08-16T20:36:20Z"), amount_spent: "247.59", points_earned: 32 },
            { transaction_id: 11, customer_id: 66, transaction_date: new Date("2023-01-26T10:12:55Z"), amount_spent: "83.70", points_earned: 12 },
            { transaction_id: 12, customer_id: 139, transaction_date: new Date("2023-08-14T14:24:07Z"), amount_spent: "339.66", points_earned: 16 },
            { transaction_id: 13, customer_id: 122, transaction_date: new Date("2023-02-12T09:49:59Z"), amount_spent: "468.72", points_earned: 18 },
            { transaction_id: 14, customer_id: 43, transaction_date: new Date("2023-05-10T10:33:11Z"), amount_spent: "407.61", points_earned: 8 },
            { transaction_id: 15, customer_id: 123, transaction_date: new Date("2023-03-09T15:47:38Z"), amount_spent: "7.02", points_earned: 18 },
            { transaction_id: 16, customer_id: 22, transaction_date: new Date("2023-09-22T09:35:45Z"), amount_spent: "369.15", points_earned: 6 },
            { transaction_id: 17, customer_id: 5, transaction_date: new Date("2023-05-03T08:58:16Z"), amount_spent: "57.10", points_earned: 34 },
            { transaction_id: 18, customer_id: 62, transaction_date: new Date("2023-02-26T10:04:51Z"), amount_spent: "343.02", points_earned: 10 },
            { transaction_id: 19, customer_id: 190, transaction_date: new Date("2023-08-25T14:06:49Z"), amount_spent: "175.27", points_earned: 5 },
            { transaction_id: 20, customer_id: 200, transaction_date: new Date("2023-03-03T08:42:25Z"), amount_spent: "416.70", points_earned: 5 },
            { transaction_id: 21, customer_id: 104, transaction_date: new Date("2023-06-23T14:32:57Z"), amount_spent: "359.06", points_earned: 32 },
            { transaction_id: 22, customer_id: 136, transaction_date: new Date("2023-01-12T15:25:29Z"), amount_spent: "372.99", points_earned: 24 },
            { transaction_id: 23, customer_id: 69, transaction_date: new Date("2023-08-01T12:21:36Z"), amount_spent: "396.61", points_earned: 38 },
            { transaction_id: 24, customer_id: 49, transaction_date: new Date("2023-02-22T14:46:00Z"), amount_spent: "143.22", points_earned: 7 },
            { transaction_id: 25, customer_id: 158, transaction_date: new Date("2023-12-13T09:50:55Z"), amount_spent: "7.84", points_earned: 31 },
            { transaction_id: 26, customer_id: 116, transaction_date: new Date("2023-11-04T09:49:51Z"), amount_spent: "25.53", points_earned: 20 },
            { transaction_id: 27, customer_id: 199, transaction_date: new Date("2023-09-28T12:38:14Z"), amount_spent: "105.69", points_earned: 44 },
            { transaction_id: 28, customer_id: 195, transaction_date: new Date("2023-12-10T17:10:21Z"), amount_spent: "424.42", points_earned: 5 },
            { transaction_id: 29, customer_id: 78, transaction_date: new Date("2023-06-05T01:56:34Z"), amount_spent: "153.18", points_earned: 42 },
            { transaction_id: 30, customer_id: 96, transaction_date: new Date("2023-07-24T19:15:12Z"), amount_spent: "65.50", points_earned: 37 },
            { transaction_id: 31, customer_id: 1, transaction_date: new Date("2023-07-12T15:42:53Z"), amount_spent: "193.63", points_earned: 19 },
            { transaction_id: 32, customer_id: 121, transaction_date: new Date("2023-10-01T12:26:00Z"), amount_spent: "221.65", points_earned: 16 },
            { transaction_id: 33, customer_id: 160, transaction_date: new Date("2023-12-25T16:33:12Z"), amount_spent: "291.90", points_earned: 8 },
            { transaction_id: 34, customer_id: 98, transaction_date: new Date("2023-08-23T14:56:54Z"), amount_spent: "52.99", points_earned: 38 },
            { transaction_id: 35, customer_id: 11, transaction_date: new Date("2023-05-18T14:36:02Z"), amount_spent: "128.74", points_earned: 22 },
            { transaction_id: 36, customer_id: 36, transaction_date: new Date("2023-07-03T13:12:47Z"), amount_spent: "431.79", points_earned: 7 },
            { transaction_id: 37, customer_id: 7, transaction_date: new Date("2023-01-07T17:34:03Z"), amount_spent: "81.55", points_earned: 19 },
            { transaction_id: 38, customer_id: 59, transaction_date: new Date("2023-11-07T14:28:48Z"), amount_spent: "218.04", points_earned: 8 },
            { transaction_id: 39, customer_id: 94, transaction_date: new Date("2023-05-30T10:31:04Z"), amount_spent: "355.28", points_earned: 12 },
            { transaction_id: 40, customer_id: 77, transaction_date: new Date("2023-12-03T11:59:11Z"), amount_spent: "5.60", points_earned: 17 },
            { transaction_id: 41, customer_id: 182, transaction_date: new Date("2023-08-11T12:38:48Z"), amount_spent: "221.69", points_earned: 20 },
            { transaction_id: 42, customer_id: 147, transaction_date: new Date("2023-09-24T11:41:41Z"), amount_spent: "9.91", points_earned: 49 },
            { transaction_id: 43, customer_id: 160, transaction_date: new Date("2023-10-02T15:51:09Z"), amount_spent: "14.77", points_earned: 9 },
            { transaction_id: 44, customer_id: 124, transaction_date: new Date("2023-06-24T13:18:37Z"), amount_spent: "322.08", points_earned: 5 },
            { transaction_id: 45, customer_id: 169, transaction_date: new Date("2023-09-26T14:58:32Z"), amount_spent: "442.90", points_earned: 30 },
            { transaction_id: 46, customer_id: 166, transaction_date: new Date("2023-03-19T17:29:08Z"), amount_spent: "118.62", points_earned: 12 },
            { transaction_id: 47, customer_id: 110, transaction_date: new Date("2023-08-23T13:14:04Z"), amount_spent: "115.07", points_earned: 6 },
            { transaction_id: 48, customer_id: 69, transaction_date: new Date("2023-08-04T17:25:03Z"), amount_spent: "35.49", points_earned: 28 },
            { transaction_id: 49, customer_id: 1, transaction_date: new Date("2023-08-06T18:54:24Z"), amount_spent: "46.52", points_earned: 18 },
            { transaction_id: 50, customer_id: 52, transaction_date: new Date("2023-10-09T10:18:57Z"), amount_spent: "371.31", points_earned: 18 },
            { transaction_id: 51, customer_id: 183, transaction_date: new Date("2023-12-20T09:40:50Z"), amount_spent: "188.52", points_earned: 6 },
            { transaction_id: 52, customer_id: 156, transaction_date: new Date("2023-09-21T16:03:37Z"), amount_spent: "427.05", points_earned: 29 },
            { transaction_id: 53, customer_id: 161, transaction_date: new Date("2023-09-15T08:42:36Z"), amount_spent: "7.88", points_earned: 13 },
            { transaction_id: 54, customer_id: 45, transaction_date: new Date("2023-09-27T08:39:20Z"), amount_spent: "276.58", points_earned: 40 },
            { transaction_id: 55, customer_id: 139, transaction_date: new Date("2023-11-26T13:05:26Z"), amount_spent: "171.13", points_earned: 28 },
            { transaction_id: 56, customer_id: 168, transaction_date: new Date("2023-06-29T06:32:01Z"), amount_spent: "164.63", points_earned: 46 },
            { transaction_id: 57, customer_id: 149, transaction_date: new Date("2023-01-07T08:02:54Z"), amount_spent: "87.92", points_earned: 8 },
            { transaction_id: 58, customer_id: 100, transaction_date: new Date("2023-01-04T14:54:18Z"), amount_spent: "125.46", points_earned: 9 },
            { transaction_id: 59, customer_id: 3, transaction_date: new Date("2023-04-07T13:43:42Z"), amount_spent: "366.34", points_earned: 18 },
            { transaction_id: 60, customer_id: 152, transaction_date: new Date("2023-01-18T09:25:09Z"), amount_spent: "5.74", points_earned: 46 },
            { transaction_id: 61, customer_id: 99, transaction_date: new Date("2023-04-12T11:41:06Z"), amount_spent: "250.05", points_earned: 7 },
            { transaction_id: 62, customer_id: 166, transaction_date: new Date("2023-06-24T11:27:49Z"), amount_spent: "17.77", points_earned: 39 },
            { transaction_id: 63, customer_id: 113, transaction_date: new Date("2023-04-11T13:27:52Z"), amount_spent: "8.45", points_earned: 7 },
            { transaction_id: 64, customer_id: 45, transaction_date: new Date("2023-10-13T09:25:04Z"), amount_spent: "248.33", points_earned: 30 },
            { transaction_id: 65, customer_id: 183, transaction_date: new Date("2023-01-14T12:18:14Z"), amount_spent: "480.87", points_earned: 41 },
            { transaction_id: 66, customer_id: 119, transaction_date: new Date("2023-03-12T15:30:53Z"), amount_spent: "406.12", points_earned: 23 },
            { transaction_id: 67, customer_id: 86, transaction_date: new Date("2023-10-02T14:08:40Z"), amount_spent: "342.42", points_earned: 18 },
            { transaction_id: 68, customer_id: 129, transaction_date: new Date("2023-02-14T10:43:50Z"), amount_spent: "315.01", points_earned: 18 },
            { transaction_id: 69, customer_id: 69, transaction_date: new Date("2023-09-03T19:11:58Z"), amount_spent: "406.03", points_earned: 11 },
            { transaction_id: 70, customer_id: 171, transaction_date: new Date("2023-10-17T11:42:26Z"), amount_spent: "55.15", points_earned: 33 },
            { transaction_id: 71, customer_id: 108, transaction_date: new Date("2023-01-16T15:40:35Z"), amount_spent: "218.22", points_earned: 5 },
            { transaction_id: 72, customer_id: 68, transaction_date: new Date("2023-12-19T19:29:04Z"), amount_spent: "458.06", points_earned: 5 },
            { transaction_id: 73, customer_id: 158, transaction_date: new Date("2023-07-25T10:24:03Z"), amount_spent: "345.63", points_earned: 18 },
            { transaction_id: 74, customer_id: 65, transaction_date: new Date("2023-09-13T10:07:36Z"), amount_spent: "377.15", points_earned: 5 },
            { transaction_id: 75, customer_id: 118, transaction_date: new Date("2023-05-22T14:34:56Z"), amount_spent: "78.85", points_earned: 39 },
            { transaction_id: 76, customer_id: 60, transaction_date: new Date("2023-06-17T12:36:19Z"), amount_spent: "55.22", points_earned: 21 },
            { transaction_id: 77, customer_id: 157, transaction_date: new Date("2023-09-08T17:17:33Z"), amount_spent: "38.26", points_earned: 8 },
            { transaction_id: 78, customer_id: 54, transaction_date: new Date("2023-08-02T09:00:35Z"), amount_spent: "106.62", points_earned: 47 },
            { transaction_id: 79, customer_id: 20, transaction_date: new Date("2023-08-12T11:59:59Z"), amount_spent: "170.37", points_earned: 44 },
            { transaction_id: 80, customer_id: 143, transaction_date: new Date("2023-03-10T14:36:04Z"), amount_spent: "415.95", points_earned: 11 },
            { transaction_id: 81, customer_id: 115, transaction_date: new Date("2023-07-26T19:03:07Z"), amount_spent: "274.55", points_earned: 15 },
            { transaction_id: 82, customer_id: 56, transaction_date: new Date("2023-02-04T14:05:51Z"), amount_spent: "8.69", points_earned: 20 },
            { transaction_id: 83, customer_id: 120, transaction_date: new Date("2023-05-24T13:37:04Z"), amount_spent: "11.64", points_earned: 5 },
            { transaction_id: 84, customer_id: 177, transaction_date: new Date("2023-11-07T10:29:58Z"), amount_spent: "148.71", points_earned: 6 },
            { transaction_id: 85, customer_id: 139, transaction_date: new Date("2023-12-29T11:15:16Z"), amount_spent: "241.82", points_earned: 11 },
            { transaction_id: 86, customer_id: 91, transaction_date: new Date("2023-09-09T11:43:04Z"), amount_spent: "30.32", points_earned: 11 },
            { transaction_id: 87, customer_id: 119, transaction_date: new Date("2023-03-16T15:47:13Z"), amount_spent: "10.40", points_earned: 6 },
            { transaction_id: 88, customer_id: 145, transaction_date: new Date("2023-08-26T15:50:48Z"), amount_spent: "5.02", points_earned: 13 },
            { transaction_id: 89, customer_id: 117, transaction_date: new Date("2023-09-19T18:18:51Z"), amount_spent: "392.85", points_earned: 47 },
            { transaction_id: 90, customer_id: 192, transaction_date: new Date("2023-08-01T19:35:22Z"), amount_spent: "58.75", points_earned: 5 },
            { transaction_id: 91, customer_id: 34, transaction_date: new Date("2023-08-11T17:38:56Z"), amount_spent: "24.62", points_earned: 38 },
            { transaction_id: 92, customer_id: 144, transaction_date: new Date("2023-05-17T07:01:06Z"), amount_spent: "239.83", points_earned: 19 },
            { transaction_id: 93, customer_id: 117, transaction_date: new Date("2023-01-28T17:20:49Z"), amount_spent: "5.25", points_earned: 6 },
            { transaction_id: 94, customer_id: 144, transaction_date: new Date("2023-11-07T16:11:33Z"), amount_spent: "476.69", points_earned: 8 },
            { transaction_id: 95, customer_id: 80, transaction_date: new Date("2023-02-28T10:33:07Z"), amount_spent: "239.56", points_earned: 7 },
            { transaction_id: 96, customer_id: 69, transaction_date: new Date("2023-04-09T13:18:50Z"), amount_spent: "127.44", points_earned: 47 },
            { transaction_id: 97, customer_id: 101, transaction_date: new Date("2023-01-20T09:22:00Z"), amount_spent: "412.05", points_earned: 11 },
            { transaction_id: 98, customer_id: 63, transaction_date: new Date("2023-01-09T15:46:50Z"), amount_spent: "278.83", points_earned: 33 },
            { transaction_id: 99, customer_id: 107, transaction_date: new Date("2023-03-12T11:01:43Z"), amount_spent: "361.92", points_earned: 16 },
            { transaction_id: 100, customer_id: 111, transaction_date: new Date("2023-04-22T12:40:22Z"), amount_spent: "188.70", points_earned: 9 },
            { transaction_id: 101, customer_id: 103, transaction_date: new Date("2023-11-17T16:38:46Z"), amount_spent: "455.91", points_earned: 8 },
            { transaction_id: 102, customer_id: 74, transaction_date: new Date("2023-07-03T10:02:45Z"), amount_spent: "134.63", points_earned: 27 },
            { transaction_id: 103, customer_id: 55, transaction_date: new Date("2023-09-30T09:41:02Z"), amount_spent: "119.39", points_earned: 33 },
            { transaction_id: 104, customer_id: 167, transaction_date: new Date("2023-07-19T06:53:55Z"), amount_spent: "41.72", points_earned: 42 },
            { transaction_id: 105, customer_id: 94, transaction_date: new Date("2023-12-26T14:38:51Z"), amount_spent: "5.02", points_earned: 10 },
            { transaction_id: 106, customer_id: 78, transaction_date: new Date("2023-05-05T10:20:18Z"), amount_spent: "256.43", points_earned: 22 },
            { transaction_id: 107, customer_id: 131, transaction_date: new Date("2023-08-21T14:10:29Z"), amount_spent: "409.69", points_earned: 41 },
            { transaction_id: 108, customer_id: 103, transaction_date: new Date("2023-01-07T13:20:48Z"), amount_spent: "105.17", points_earned: 9 },
            { transaction_id: 109, customer_id: 138, transaction_date: new Date("2023-12-06T15:34:45Z"), amount_spent: "125.70", points_earned: 49 },
            { transaction_id: 110, customer_id: 160, transaction_date: new Date("2023-02-25T14:43:31Z"), amount_spent: "14.24", points_earned: 11 },
            { transaction_id: 111, customer_id: 24, transaction_date: new Date("2023-07-18T08:17:29Z"), amount_spent: "13.56", points_earned: 5 },
            { transaction_id: 112, customer_id: 53, transaction_date: new Date("2023-02-15T10:20:23Z"), amount_spent: "31.48", points_earned: 24 },
            { transaction_id: 113, customer_id: 159, transaction_date: new Date("2023-03-09T13:00:35Z"), amount_spent: "331.04", points_earned: 15 },
            { transaction_id: 114, customer_id: 34, transaction_date: new Date("2023-07-28T15:18:33Z"), amount_spent: "60.54", points_earned: 37 },
            { transaction_id: 115, customer_id: 148, transaction_date: new Date("2023-07-16T10:51:29Z"), amount_spent: "57.87", points_earned: 44 },
            { transaction_id: 116, customer_id: 118, transaction_date: new Date("2023-11-21T15:59:18Z"), amount_spent: "56.42", points_earned: 6 },
            { transaction_id: 117, customer_id: 182, transaction_date: new Date("2023-12-27T12:01:39Z"), amount_spent: "300.27", points_earned: 5 },
            { transaction_id: 118, customer_id: 179, transaction_date: new Date("2023-06-06T13:02:59Z"), amount_spent: "66.99", points_earned: 5 },
            { transaction_id: 119, customer_id: 104, transaction_date: new Date("2023-07-25T13:16:07Z"), amount_spent: "150.10", points_earned: 42 },
            { transaction_id: 120, customer_id: 48, transaction_date: new Date("2023-09-17T11:51:41Z"), amount_spent: "193.52", points_earned: 7 },
            { transaction_id: 121, customer_id: 71, transaction_date: new Date("2023-04-20T09:24:46Z"), amount_spent: "175.63", points_earned: 8 },
            { transaction_id: 122, customer_id: 63, transaction_date: new Date("2023-04-18T10:21:09Z"), amount_spent: "53.76", points_earned: 20 },
            { transaction_id: 123, customer_id: 120, transaction_date: new Date("2023-03-26T05:44:01Z"), amount_spent: "19.30", points_earned: 35 },
            { transaction_id: 124, customer_id: 112, transaction_date: new Date("2023-02-11T18:01:24Z"), amount_spent: "248.48", points_earned: 11 },
            { transaction_id: 125, customer_id: 22, transaction_date: new Date("2023-02-25T12:46:45Z"), amount_spent: "71.07", points_earned: 25 },
            { transaction_id: 126, customer_id: 166, transaction_date: new Date("2023-01-24T17:14:27Z"), amount_spent: "97.48", points_earned: 42 },
            { transaction_id: 127, customer_id: 99, transaction_date: new Date("2023-02-07T10:21:45Z"), amount_spent: "263.99", points_earned: 6 },
            { transaction_id: 128, customer_id: 43, transaction_date: new Date("2023-03-10T07:06:01Z"), amount_spent: "104.65", points_earned: 5 },
            { transaction_id: 129, customer_id: 158, transaction_date: new Date("2023-07-06T12:36:25Z"), amount_spent: "363.78", points_earned: 48 },
            { transaction_id: 130, customer_id: 174, transaction_date: new Date("2023-06-04T12:31:07Z"), amount_spent: "23.73", points_earned: 11 },
            { transaction_id: 131, customer_id: 94, transaction_date: new Date("2023-07-26T07:42:16Z"), amount_spent: "50.92", points_earned: 23 },
            { transaction_id: 132, customer_id: 110, transaction_date: new Date("2023-06-07T11:23:39Z"), amount_spent: "367.41", points_earned: 41 },
            { transaction_id: 133, customer_id: 107, transaction_date: new Date("2023-07-20T10:22:26Z"), amount_spent: "17.55", points_earned: 15 },
            { transaction_id: 134, customer_id: 10, transaction_date: new Date("2023-07-28T11:55:08Z"), amount_spent: "114.73", points_earned: 6 },
            { transaction_id: 135, customer_id: 142, transaction_date: new Date("2023-04-13T13:47:30Z"), amount_spent: "180.23", points_earned: 33 },
            { transaction_id: 136, customer_id: 134, transaction_date: new Date("2023-12-28T15:50:25Z"), amount_spent: "50.86", points_earned: 23 },
            { transaction_id: 137, customer_id: 43, transaction_date: new Date("2023-06-24T15:02:05Z"), amount_spent: "392.34", points_earned: 5 },
            { transaction_id: 138, customer_id: 81, transaction_date: new Date("2023-03-08T20:04:50Z"), amount_spent: "88.81", points_earned: 14 },
            { transaction_id: 139, customer_id: 102, transaction_date: new Date("2023-09-10T12:18:52Z"), amount_spent: "23.43", points_earned: 5 },
            { transaction_id: 140, customer_id: 97, transaction_date: new Date("2023-08-29T16:47:31Z"), amount_spent: "5.00", points_earned: 15 },
            { transaction_id: 141, customer_id: 66, transaction_date: new Date("2023-03-16T10:41:05Z"), amount_spent: "14.88", points_earned: 46 },
            { transaction_id: 142, customer_id: 86, transaction_date: new Date("2023-12-27T11:01:57Z"), amount_spent: "420.84", points_earned: 18 },
            { transaction_id: 143, customer_id: 191, transaction_date: new Date("2023-12-11T18:14:45Z"), amount_spent: "55.42", points_earned: 21 },
            { transaction_id: 144, customer_id: 191, transaction_date: new Date("2023-10-03T11:46:09Z"), amount_spent: "64.42", points_earned: 36 },
            { transaction_id: 145, customer_id: 36, transaction_date: new Date("2023-01-09T12:25:06Z"), amount_spent: "16.24", points_earned: 10 },
            { transaction_id: 146, customer_id: 143, transaction_date: new Date("2023-11-16T10:28:07Z"), amount_spent: "150.22", points_earned: 6 },
            { transaction_id: 147, customer_id: 79, transaction_date: new Date("2023-07-09T13:44:22Z"), amount_spent: "49.75", points_earned: 29 },
            { transaction_id: 148, customer_id: 108, transaction_date: new Date("2023-06-16T16:20:06Z"), amount_spent: "23.44", points_earned: 35 },
            { transaction_id: 149, customer_id: 106, transaction_date: new Date("2023-12-03T12:21:41Z"), amount_spent: "130.31", points_earned: 35 },
            { transaction_id: 150, customer_id: 43, transaction_date: new Date("2023-01-21T11:52:30Z"), amount_spent: "376.67", points_earned: 5 },
            { transaction_id: 151, customer_id: 149, transaction_date: new Date("2023-03-20T12:24:10Z"), amount_spent: "135.14", points_earned: 34 },
            { transaction_id: 152, customer_id: 187, transaction_date: new Date("2023-03-23T17:28:30Z"), amount_spent: "303.17", points_earned: 11 },
            { transaction_id: 153, customer_id: 183, transaction_date: new Date("2023-08-03T14:09:48Z"), amount_spent: "225.86", points_earned: 48 },
            { transaction_id: 154, customer_id: 178, transaction_date: new Date("2023-11-25T17:21:34Z"), amount_spent: "412.93", points_earned: 14 },
            { transaction_id: 155, customer_id: 76, transaction_date: new Date("2023-04-28T09:43:06Z"), amount_spent: "23.98", points_earned: 6 },
            { transaction_id: 156, customer_id: 14, transaction_date: new Date("2023-09-10T10:10:54Z"), amount_spent: "59.45", points_earned: 31 },
            { transaction_id: 157, customer_id: 35, transaction_date: new Date("2023-09-29T16:00:48Z"), amount_spent: "155.34", points_earned: 7 },
            { transaction_id: 158, customer_id: 163, transaction_date: new Date("2023-01-26T10:52:00Z"), amount_spent: "427.05", points_earned: 5 },
            { transaction_id: 159, customer_id: 121, transaction_date: new Date("2023-09-01T12:28:49Z"), amount_spent: "326.81", points_earned: 31 },
            { transaction_id: 160, customer_id: 63, transaction_date: new Date("2023-05-16T11:15:39Z"), amount_spent: "146.09", points_earned: 9 },
            { transaction_id: 161, customer_id: 32, transaction_date: new Date("2023-07-08T13:09:24Z"), amount_spent: "99.55", points_earned: 34 },
            { transaction_id: 162, customer_id: 127, transaction_date: new Date("2023-03-14T13:00:51Z"), amount_spent: "107.22", points_earned: 7 },
            { transaction_id: 163, customer_id: 161, transaction_date: new Date("2023-06-03T17:25:57Z"), amount_spent: "426.48", points_earned: 7 },
            { transaction_id: 164, customer_id: 168, transaction_date: new Date("2023-01-28T20:49:26Z"), amount_spent: "7.45", points_earned: 37 },
            { transaction_id: 165, customer_id: 73, transaction_date: new Date("2023-07-16T15:03:35Z"), amount_spent: "212.06", points_earned: 27 },
            { transaction_id: 166, customer_id: 121, transaction_date: new Date("2023-02-26T11:50:45Z"), amount_spent: "32.56", points_earned: 5 },
            { transaction_id: 167, customer_id: 189, transaction_date: new Date("2023-07-18T17:54:58Z"), amount_spent: "5.44", points_earned: 5 },
            { transaction_id: 168, customer_id: 60, transaction_date: new Date("2023-05-23T13:00:01Z"), amount_spent: "322.04", points_earned: 10 },
            { transaction_id: 169, customer_id: 66, transaction_date: new Date("2023-08-06T16:48:10Z"), amount_spent: "198.30", points_earned: 8 },
            { transaction_id: 170, customer_id: 159, transaction_date: new Date("2023-11-26T10:01:24Z"), amount_spent: "10.66", points_earned: 41 },
            { transaction_id: 171, customer_id: 43, transaction_date: new Date("2023-02-21T16:13:53Z"), amount_spent: "337.88", points_earned: 50 },
            { transaction_id: 172, customer_id: 94, transaction_date: new Date("2023-12-08T11:02:42Z"), amount_spent: "21.98", points_earned: 12 },
            { transaction_id: 173, customer_id: 38, transaction_date: new Date("2023-04-07T15:04:15Z"), amount_spent: "260.40", points_earned: 22 },
            { transaction_id: 174, customer_id: 193, transaction_date: new Date("2023-11-22T17:50:48Z"), amount_spent: "25.25", points_earned: 34 },
            { transaction_id: 175, customer_id: 188, transaction_date: new Date("2023-10-07T12:00:28Z"), amount_spent: "155.74", points_earned: 37 },
            { transaction_id: 176, customer_id: 116, transaction_date: new Date("2023-01-19T14:48:34Z"), amount_spent: "8.54", points_earned: 42 },
            { transaction_id: 177, customer_id: 42, transaction_date: new Date("2023-05-05T15:05:56Z"), amount_spent: "374.48", points_earned: 7 },
            { transaction_id: 178, customer_id: 19, transaction_date: new Date("2023-10-10T12:17:29Z"), amount_spent: "256.41", points_earned: 6 },
            { transaction_id: 179, customer_id: 58, transaction_date: new Date("2023-08-23T14:20:19Z"), amount_spent: "36.49", points_earned: 5 },
            { transaction_id: 180, customer_id: 83, transaction_date: new Date("2023-04-08T19:53:59Z"), amount_spent: "264.55", points_earned: 21 },
            { transaction_id: 181, customer_id: 154, transaction_date: new Date("2023-06-07T15:37:18Z"), amount_spent: "428.45", points_earned: 11 },
            { transaction_id: 182, customer_id: 172, transaction_date: new Date("2023-03-11T12:23:22Z"), amount_spent: "31.78", points_earned: 34 },
            { transaction_id: 183, customer_id: 139, transaction_date: new Date("2023-12-02T15:52:17Z"), amount_spent: "30.42", points_earned: 11 },
            { transaction_id: 184, customer_id: 45, transaction_date: new Date("2023-05-30T07:07:52Z"), amount_spent: "333.22", points_earned: 36 },
            { transaction_id: 185, customer_id: 147, transaction_date: new Date("2023-04-03T09:10:48Z"), amount_spent: "361.50", points_earned: 11 },
            { transaction_id: 186, customer_id: 152, transaction_date: new Date("2023-12-11T10:17:08Z"), amount_spent: "5.00", points_earned: 5 },
            { transaction_id: 187, customer_id: 25, transaction_date: new Date("2023-12-16T10:01:37Z"), amount_spent: "187.06", points_earned: 11 },
            { transaction_id: 188, customer_id: 179, transaction_date: new Date("2023-02-27T09:57:08Z"), amount_spent: "91.91", points_earned: 21 },
            { transaction_id: 189, customer_id: 181, transaction_date: new Date("2023-03-20T10:20:31Z"), amount_spent: "81.71", points_earned: 44 },
            { transaction_id: 190, customer_id: 106, transaction_date: new Date("2023-07-05T10:49:08Z"), amount_spent: "42.18", points_earned: 14 },
            { transaction_id: 191, customer_id: 44, transaction_date: new Date("2023-12-24T09:17:47Z"), amount_spent: "167.66", points_earned: 6 },
            { transaction_id: 192, customer_id: 180, transaction_date: new Date("2023-09-04T10:06:41Z"), amount_spent: "94.75", points_earned: 8 },
            { transaction_id: 193, customer_id: 48, transaction_date: new Date("2023-11-22T09:16:29Z"), amount_spent: "432.28", points_earned: 8 },
            { transaction_id: 194, customer_id: 77, transaction_date: new Date("2023-08-11T13:38:28Z"), amount_spent: "153.04", points_earned: 50 },
            { transaction_id: 195, customer_id: 97, transaction_date: new Date("2023-04-15T14:05:34Z"), amount_spent: "142.15", points_earned: 5 },
            { transaction_id: 196, customer_id: 10, transaction_date: new Date("2023-12-11T15:46:10Z"), amount_spent: "29.87", points_earned: 6 },
            { transaction_id: 197, customer_id: 14, transaction_date: new Date("2023-11-15T11:44:15Z"), amount_spent: "90.52", points_earned: 19 },
            { transaction_id: 198, customer_id: 15, transaction_date: new Date("2023-08-08T10:35:28Z"), amount_spent: "36.69", points_earned: 41 },
            { transaction_id: 199, customer_id: 174, transaction_date: new Date("2023-12-08T11:12:42Z"), amount_spent: "61.57", points_earned: 11 },
            { transaction_id: 200, customer_id: 127, transaction_date: new Date("2023-01-02T09:41:25Z"), amount_spent: "80.96", points_earned: 21 },
            { transaction_id: 201, customer_id: 111, transaction_date: new Date("2023-06-03T16:57:12Z"), amount_spent: "214.50", points_earned: 7 },
            { transaction_id: 202, customer_id: 113, transaction_date: new Date("2023-10-25T14:07:31Z"), amount_spent: "16.14", points_earned: 10 },
            { transaction_id: 203, customer_id: 145, transaction_date: new Date("2023-02-08T07:38:25Z"), amount_spent: "12.73", points_earned: 47 },
            { transaction_id: 204, customer_id: 162, transaction_date: new Date("2023-12-19T11:07:56Z"), amount_spent: "7.57", points_earned: 43 },
            { transaction_id: 205, customer_id: 169, transaction_date: new Date("2023-10-29T08:28:02Z"), amount_spent: "190.32", points_earned: 35 },
            { transaction_id: 206, customer_id: 198, transaction_date: new Date("2023-11-06T10:55:44Z"), amount_spent: "15.85", points_earned: 36 },
            { transaction_id: 207, customer_id: 87, transaction_date: new Date("2023-07-12T09:24:16Z"), amount_spent: "113.89", points_earned: 26 },
            { transaction_id: 208, customer_id: 64, transaction_date: new Date("2023-12-25T11:51:57Z"), amount_spent: "133.28", points_earned: 42 },
            { transaction_id: 209, customer_id: 184, transaction_date: new Date("2023-08-26T06:50:38Z"), amount_spent: "5.50", points_earned: 16 },
            { transaction_id: 210, customer_id: 151, transaction_date: new Date("2023-12-11T12:29:42Z"), amount_spent: "368.40", points_earned: 14 },
            { transaction_id: 211, customer_id: 103, transaction_date: new Date("2023-10-12T08:40:32Z"), amount_spent: "7.70", points_earned: 24 },
            { transaction_id: 212, customer_id: 199, transaction_date: new Date("2023-01-16T11:38:10Z"), amount_spent: "336.60", points_earned: 23 },
            { transaction_id: 213, customer_id: 124, transaction_date: new Date("2023-07-12T13:26:30Z"), amount_spent: "277.99", points_earned: 28 },
            { transaction_id: 214, customer_id: 181, transaction_date: new Date("2023-09-29T10:00:23Z"), amount_spent: "405.16", points_earned: 36 },
            { transaction_id: 215, customer_id: 160, transaction_date: new Date("2023-01-14T09:13:41Z"), amount_spent: "372.82", points_earned: 17 },
            { transaction_id: 216, customer_id: 106, transaction_date: new Date("2023-06-26T20:56:21Z"), amount_spent: "237.46", points_earned: 12 },
            { transaction_id: 217, customer_id: 195, transaction_date: new Date("2023-11-03T10:00:32Z"), amount_spent: "25.51", points_earned: 14 },
            { transaction_id: 218, customer_id: 104, transaction_date: new Date("2023-12-21T12:21:01Z"), amount_spent: "433.00", points_earned: 5 },
            { transaction_id: 219, customer_id: 194, transaction_date: new Date("2023-12-24T19:13:27Z"), amount_spent: "311.32", points_earned: 15 },
            { transaction_id: 220, customer_id: 182, transaction_date: new Date("2023-11-02T14:15:48Z"), amount_spent: "39.89", points_earned: 6 },
            { transaction_id: 221, customer_id: 184, transaction_date: new Date("2023-12-01T08:35:01Z"), amount_spent: "248.38", points_earned: 9 },
            { transaction_id: 222, customer_id: 183, transaction_date: new Date("2023-06-24T16:33:39Z"), amount_spent: "111.36", points_earned: 22 },
            { transaction_id: 223, customer_id: 79, transaction_date: new Date("2023-03-28T23:44:45Z"), amount_spent: "141.19", points_earned: 5 },
            { transaction_id: 224, customer_id: 110, transaction_date: new Date("2023-09-10T10:43:28Z"), amount_spent: "166.92", points_earned: 5 },
            { transaction_id: 225, customer_id: 77, transaction_date: new Date("2023-07-25T16:44:16Z"), amount_spent: "5.54", points_earned: 39 },
            { transaction_id: 226, customer_id: 76, transaction_date: new Date("2023-06-12T12:48:05Z"), amount_spent: "131.60", points_earned: 22 },
            { transaction_id: 227, customer_id: 82, transaction_date: new Date("2023-08-06T09:06:14Z"), amount_spent: "121.23", points_earned: 47 },
            { transaction_id: 228, customer_id: 192, transaction_date: new Date("2023-08-02T06:02:24Z"), amount_spent: "455.77", points_earned: 42 },
            { transaction_id: 229, customer_id: 130, transaction_date: new Date("2023-07-02T10:33:24Z"), amount_spent: "54.63", points_earned: 33 },
            { transaction_id: 230, customer_id: 50, transaction_date: new Date("2023-06-14T09:37:44Z"), amount_spent: "268.69", points_earned: 36 },
            { transaction_id: 231, customer_id: 143, transaction_date: new Date("2023-09-04T09:05:21Z"), amount_spent: "14.03", points_earned: 38 },
            { transaction_id: 232, customer_id: 137, transaction_date: new Date("2023-08-19T12:29:08Z"), amount_spent: "15.14", points_earned: 49 },
            { transaction_id: 233, customer_id: 156, transaction_date: new Date("2023-01-17T15:40:49Z"), amount_spent: "495.02", points_earned: 5 },
            { transaction_id: 234, customer_id: 48, transaction_date: new Date("2023-06-09T07:59:08Z"), amount_spent: "13.56", points_earned: 13 },
            { transaction_id: 235, customer_id: 187, transaction_date: new Date("2023-04-29T15:55:34Z"), amount_spent: "64.28", points_earned: 7 },
            { transaction_id: 236, customer_id: 10, transaction_date: new Date("2023-04-18T11:46:18Z"), amount_spent: "56.70", points_earned: 14 },
            { transaction_id: 237, customer_id: 109, transaction_date: new Date("2023-04-12T20:24:33Z"), amount_spent: "372.28", points_earned: 45 },
            { transaction_id: 238, customer_id: 154, transaction_date: new Date("2023-06-11T10:30:28Z"), amount_spent: "151.63", points_earned: 6 },
            { transaction_id: 239, customer_id: 39, transaction_date: new Date("2023-05-07T17:48:48Z"), amount_spent: "11.63", points_earned: 36 },
            { transaction_id: 240, customer_id: 158, transaction_date: new Date("2023-02-11T14:10:01Z"), amount_spent: "112.32", points_earned: 24 },
            { transaction_id: 241, customer_id: 27, transaction_date: new Date("2023-04-10T13:27:29Z"), amount_spent: "108.31", points_earned: 9 },
            { transaction_id: 242, customer_id: 190, transaction_date: new Date("2023-05-20T16:46:05Z"), amount_spent: "8.16", points_earned: 28 },
            { transaction_id: 243, customer_id: 45, transaction_date: new Date("2023-12-28T14:39:04Z"), amount_spent: "121.06", points_earned: 12 },
            { transaction_id: 244, customer_id: 7, transaction_date: new Date("2023-07-28T06:04:06Z"), amount_spent: "378.61", points_earned: 31 },
            { transaction_id: 245, customer_id: 149, transaction_date: new Date("2023-05-04T11:06:21Z"), amount_spent: "28.08", points_earned: 27 },
            { transaction_id: 246, customer_id: 160, transaction_date: new Date("2023-01-15T09:14:34Z"), amount_spent: "459.18", points_earned: 5 },
            { transaction_id: 247, customer_id: 149, transaction_date: new Date("2023-12-01T09:11:11Z"), amount_spent: "95.23", points_earned: 12 },
            { transaction_id: 248, customer_id: 196, transaction_date: new Date("2023-09-27T15:08:11Z"), amount_spent: "23.27", points_earned: 10 },
            { transaction_id: 249, customer_id: 91, transaction_date: new Date("2023-12-06T17:58:53Z"), amount_spent: "50.40", points_earned: 8 },
            { transaction_id: 250, customer_id: 127, transaction_date: new Date("2023-11-09T15:20:07Z"), amount_spent: "6.89", points_earned: 5 },
            { transaction_id: 251, customer_id: 130, transaction_date: new Date("2023-10-03T11:43:20Z"), amount_spent: "156.24", points_earned: 22 },
            { transaction_id: 252, customer_id: 174, transaction_date: new Date("2023-05-17T17:01:16Z"), amount_spent: "441.16", points_earned: 15 },
            { transaction_id: 253, customer_id: 137, transaction_date: new Date("2023-07-11T16:26:07Z"), amount_spent: "149.58", points_earned: 5 },
            { transaction_id: 254, customer_id: 68, transaction_date: new Date("2023-03-28T10:09:58Z"), amount_spent: "237.16", points_earned: 20 },
            { transaction_id: 255, customer_id: 72, transaction_date: new Date("2023-09-18T13:58:12Z"), amount_spent: "21.57", points_earned: 7 },
            { transaction_id: 256, customer_id: 153, transaction_date: new Date("2023-04-18T13:49:40Z"), amount_spent: "10.93", points_earned: 39 },
            { transaction_id: 257, customer_id: 104, transaction_date: new Date("2023-08-23T09:18:46Z"), amount_spent: "453.89", points_earned: 5 },
            { transaction_id: 258, customer_id: 152, transaction_date: new Date("2023-06-23T14:01:44Z"), amount_spent: "413.67", points_earned: 41 },
            { transaction_id: 259, customer_id: 131, transaction_date: new Date("2023-05-14T07:42:55Z"), amount_spent: "172.45", points_earned: 9 },
            { transaction_id: 260, customer_id: 167, transaction_date: new Date("2023-09-13T09:25:58Z"), amount_spent: "93.35", points_earned: 5 },
            { transaction_id: 261, customer_id: 155, transaction_date: new Date("2023-09-10T10:50:42Z"), amount_spent: "57.38", points_earned: 9 },
            { transaction_id: 262, customer_id: 51, transaction_date: new Date("2023-05-16T23:55:28Z"), amount_spent: "471.18", points_earned: 22 },
            { transaction_id: 263, customer_id: 96, transaction_date: new Date("2023-06-03T16:19:10Z"), amount_spent: "5.81", points_earned: 7 },
            { transaction_id: 264, customer_id: 110, transaction_date: new Date("2023-03-01T19:17:48Z"), amount_spent: "8.56", points_earned: 9 },
            { transaction_id: 265, customer_id: 38, transaction_date: new Date("2023-07-04T17:17:02Z"), amount_spent: "117.38", points_earned: 19 },
            { transaction_id: 266, customer_id: 112, transaction_date: new Date("2023-04-21T11:35:19Z"), amount_spent: "185.95", points_earned: 7 },
            { transaction_id: 267, customer_id: 133, transaction_date: new Date("2023-08-12T09:30:11Z"), amount_spent: "172.15", points_earned: 24 },
            { transaction_id: 268, customer_id: 166, transaction_date: new Date("2023-08-08T14:41:47Z"), amount_spent: "268.63", points_earned: 28 },
            { transaction_id: 269, customer_id: 124, transaction_date: new Date("2023-06-29T10:38:03Z"), amount_spent: "5.04", points_earned: 37 },
            { transaction_id: 270, customer_id: 138, transaction_date: new Date("2023-11-01T09:13:03Z"), amount_spent: "447.77", points_earned: 9 },
            { transaction_id: 271, customer_id: 88, transaction_date: new Date("2023-10-01T08:40:06Z"), amount_spent: "171.22", points_earned: 13 },
            { transaction_id: 272, customer_id: 31, transaction_date: new Date("2023-10-31T11:25:21Z"), amount_spent: "330.68", points_earned: 5 },
            { transaction_id: 273, customer_id: 104, transaction_date: new Date("2023-04-05T14:09:05Z"), amount_spent: "35.80", points_earned: 7 },
            { transaction_id: 274, customer_id: 155, transaction_date: new Date("2023-06-17T21:31:20Z"), amount_spent: "5.89", points_earned: 30 },
            { transaction_id: 275, customer_id: 96, transaction_date: new Date("2023-04-02T13:01:20Z"), amount_spent: "5.47", points_earned: 41 },
            { transaction_id: 276, customer_id: 91, transaction_date: new Date("2023-12-30T16:37:15Z"), amount_spent: "6.60", points_earned: 6 },
            { transaction_id: 277, customer_id: 1, transaction_date: new Date("2023-07-18T10:02:46Z"), amount_spent: "79.29", points_earned: 13 },
            { transaction_id: 278, customer_id: 82, transaction_date: new Date("2023-05-11T15:46:00Z"), amount_spent: "89.87", points_earned: 40 },
            { transaction_id: 279, customer_id: 197, transaction_date: new Date("2023-01-16T10:34:01Z"), amount_spent: "495.97", points_earned: 27 },
            { transaction_id: 280, customer_id: 110, transaction_date: new Date("2023-04-26T10:37:27Z"), amount_spent: "42.18", points_earned: 28 },
            { transaction_id: 281, customer_id: 19, transaction_date: new Date("2023-07-30T15:00:45Z"), amount_spent: "8.86", points_earned: 9 },
            { transaction_id: 282, customer_id: 122, transaction_date: new Date("2023-09-01T09:11:10Z"), amount_spent: "78.93", points_earned: 8 },
            { transaction_id: 283, customer_id: 183, transaction_date: new Date("2023-05-07T17:12:26Z"), amount_spent: "307.63", points_earned: 12 },
            { transaction_id: 284, customer_id: 151, transaction_date: new Date("2023-11-23T18:20:01Z"), amount_spent: "9.74", points_earned: 18 },
            { transaction_id: 285, customer_id: 117, transaction_date: new Date("2023-07-05T14:04:47Z"), amount_spent: "9.03", points_earned: 18 },
            { transaction_id: 286, customer_id: 100, transaction_date: new Date("2023-02-15T14:00:37Z"), amount_spent: "66.79", points_earned: 35 },
            { transaction_id: 287, customer_id: 139, transaction_date: new Date("2023-01-26T14:42:44Z"), amount_spent: "54.17", points_earned: 8 },
            { transaction_id: 288, customer_id: 49, transaction_date: new Date("2023-07-14T09:22:04Z"), amount_spent: "129.60", points_earned: 35 },
            { transaction_id: 289, customer_id: 90, transaction_date: new Date("2023-01-31T09:57:46Z"), amount_spent: "74.72", points_earned: 49 },
            { transaction_id: 290, customer_id: 129, transaction_date: new Date("2023-04-05T08:43:18Z"), amount_spent: "148.97", points_earned: 28 },
            { transaction_id: 291, customer_id: 182, transaction_date: new Date("2023-04-09T10:24:09Z"), amount_spent: "160.24", points_earned: 12 },
            { transaction_id: 292, customer_id: 65, transaction_date: new Date("2023-05-20T11:11:58Z"), amount_spent: "142.97", points_earned: 27 },
            { transaction_id: 293, customer_id: 5, transaction_date: new Date("2023-01-28T10:13:14Z"), amount_spent: "181.19", points_earned: 13 },
            { transaction_id: 294, customer_id: 2, transaction_date: new Date("2023-06-22T10:17:36Z"), amount_spent: "71.68", points_earned: 49 },
            { transaction_id: 295, customer_id: 87, transaction_date: new Date("2023-08-03T13:19:12Z"), amount_spent: "21.37", points_earned: 19 },
            { transaction_id: 296, customer_id: 182, transaction_date: new Date("2023-03-15T16:15:07Z"), amount_spent: "135.71", points_earned: 15 },
            { transaction_id: 297, customer_id: 69, transaction_date: new Date("2023-03-14T13:22:51Z"), amount_spent: "286.91", points_earned: 8 },
            { transaction_id: 298, customer_id: 148, transaction_date: new Date("2023-04-20T10:03:29Z"), amount_spent: "390.43", points_earned: 49 },
            { transaction_id: 299, customer_id: 136, transaction_date: new Date("2023-08-12T12:58:01Z"), amount_spent: "90.90", points_earned: 39 },
            { transaction_id: 300, customer_id: 29, transaction_date: new Date("2023-11-28T10:52:09Z"), amount_spent: "89.91", points_earned: 33 },
            { transaction_id: 301, customer_id: 93, transaction_date: new Date("2023-02-18T10:00:21Z"), amount_spent: "186.62", points_earned: 32 },
            { transaction_id: 302, customer_id: 131, transaction_date: new Date("2023-04-29T10:01:49Z"), amount_spent: "17.11", points_earned: 5 },
            { transaction_id: 303, customer_id: 185, transaction_date: new Date("2023-07-10T12:22:17Z"), amount_spent: "128.93", points_earned: 20 },
            { transaction_id: 304, customer_id: 124, transaction_date: new Date("2023-05-18T08:46:45Z"), amount_spent: "5.54", points_earned: 14 },
            { transaction_id: 305, customer_id: 43, transaction_date: new Date("2023-12-15T11:56:39Z"), amount_spent: "269.14", points_earned: 20 },
            { transaction_id: 306, customer_id: 25, transaction_date: new Date("2023-11-26T19:32:50Z"), amount_spent: "49.94", points_earned: 16 },
            { transaction_id: 307, customer_id: 180, transaction_date: new Date("2023-11-23T20:15:55Z"), amount_spent: "370.07", points_earned: 5 },
            { transaction_id: 308, customer_id: 34, transaction_date: new Date("2023-07-04T09:57:04Z"), amount_spent: "115.60", points_earned: 32 },
            { transaction_id: 309, customer_id: 5, transaction_date: new Date("2023-09-10T11:27:27Z"), amount_spent: "149.05", points_earned: 29 },
            { transaction_id: 310, customer_id: 177, transaction_date: new Date("2023-11-22T14:53:08Z"), amount_spent: "5.27", points_earned: 45 },
            { transaction_id: 311, customer_id: 144, transaction_date: new Date("2023-02-20T15:29:07Z"), amount_spent: "371.03", points_earned: 8 },
            { transaction_id: 312, customer_id: 55, transaction_date: new Date("2023-11-21T08:51:04Z"), amount_spent: "132.08", points_earned: 41 },
            { transaction_id: 313, customer_id: 190, transaction_date: new Date("2023-11-01T19:43:07Z"), amount_spent: "400.68", points_earned: 20 },
            { transaction_id: 314, customer_id: 188, transaction_date: new Date("2023-12-26T17:57:16Z"), amount_spent: "121.87", points_earned: 5 },
            { transaction_id: 315, customer_id: 146, transaction_date: new Date("2023-11-06T19:34:47Z"), amount_spent: "90.48", points_earned: 32 },
            { transaction_id: 316, customer_id: 127, transaction_date: new Date("2023-07-17T13:39:55Z"), amount_spent: "473.18", points_earned: 30 },
            { transaction_id: 317, customer_id: 73, transaction_date: new Date("2023-07-13T17:41:46Z"), amount_spent: "177.34", points_earned: 9 },
            { transaction_id: 318, customer_id: 101, transaction_date: new Date("2023-03-09T10:11:48Z"), amount_spent: "268.84", points_earned: 15 },
            { transaction_id: 319, customer_id: 119, transaction_date: new Date("2023-10-28T11:34:30Z"), amount_spent: "82.92", points_earned: 13 },
            { transaction_id: 320, customer_id: 30, transaction_date: new Date("2023-04-24T14:29:34Z"), amount_spent: "105.18", points_earned: 5 },
            { transaction_id: 321, customer_id: 186, transaction_date: new Date("2023-03-16T13:05:31Z"), amount_spent: "5.41", points_earned: 14 },
            { transaction_id: 322, customer_id: 170, transaction_date: new Date("2023-12-02T09:12:10Z"), amount_spent: "82.76", points_earned: 39 },
            { transaction_id: 323, customer_id: 75, transaction_date: new Date("2023-01-09T15:36:43Z"), amount_spent: "136.09", points_earned: 5 },
            { transaction_id: 324, customer_id: 144, transaction_date: new Date("2023-03-28T07:31:34Z"), amount_spent: "161.02", points_earned: 5 },
            { transaction_id: 325, customer_id: 164, transaction_date: new Date("2023-11-04T15:08:17Z"), amount_spent: "16.51", points_earned: 5 },
            { transaction_id: 326, customer_id: 116, transaction_date: new Date("2023-05-20T14:16:45Z"), amount_spent: "10.20", points_earned: 48 },
            { transaction_id: 327, customer_id: 67, transaction_date: new Date("2023-03-16T11:56:07Z"), amount_spent: "400.96", points_earned: 22 },
            { transaction_id: 328, customer_id: 32, transaction_date: new Date("2023-07-12T12:25:47Z"), amount_spent: "366.28", points_earned: 16 },
            { transaction_id: 329, customer_id: 122, transaction_date: new Date("2023-01-02T18:37:00Z"), amount_spent: "124.13", points_earned: 9 },
            { transaction_id: 330, customer_id: 72, transaction_date: new Date("2023-10-04T09:41:53Z"), amount_spent: "89.25", points_earned: 5 },
            { transaction_id: 331, customer_id: 69, transaction_date: new Date("2023-04-27T16:52:11Z"), amount_spent: "239.44", points_earned: 7 },
            { transaction_id: 332, customer_id: 141, transaction_date: new Date("2023-02-03T09:52:40Z"), amount_spent: "417.13", points_earned: 6 },
            { transaction_id: 333, customer_id: 101, transaction_date: new Date("2023-07-05T14:28:39Z"), amount_spent: "435.02", points_earned: 5 },
            { transaction_id: 334, customer_id: 149, transaction_date: new Date("2023-07-16T11:58:50Z"), amount_spent: "18.01", points_earned: 37 },
            { transaction_id: 335, customer_id: 79, transaction_date: new Date("2023-12-19T13:59:22Z"), amount_spent: "130.96", points_earned: 5 },
            { transaction_id: 336, customer_id: 48, transaction_date: new Date("2023-02-18T14:26:19Z"), amount_spent: "470.21", points_earned: 5 },
            { transaction_id: 337, customer_id: 116, transaction_date: new Date("2023-02-02T13:58:57Z"), amount_spent: "59.78", points_earned: 24 },
            { transaction_id: 338, customer_id: 86, transaction_date: new Date("2023-11-26T14:05:53Z"), amount_spent: "97.69", points_earned: 26 },
            { transaction_id: 339, customer_id: 153, transaction_date: new Date("2023-04-19T16:14:01Z"), amount_spent: "114.67", points_earned: 25 },
            { transaction_id: 340, customer_id: 167, transaction_date: new Date("2023-12-08T13:29:20Z"), amount_spent: "213.20", points_earned: 22 },
            { transaction_id: 341, customer_id: 96, transaction_date: new Date("2023-07-04T13:19:42Z"), amount_spent: "29.80", points_earned: 6 },
            { transaction_id: 342, customer_id: 116, transaction_date: new Date("2023-10-24T15:30:57Z"), amount_spent: "323.70", points_earned: 20 },
            { transaction_id: 343, customer_id: 70, transaction_date: new Date("2023-04-07T14:58:24Z"), amount_spent: "459.49", points_earned: 8 },
            { transaction_id: 344, customer_id: 152, transaction_date: new Date("2023-10-22T09:22:22Z"), amount_spent: "26.00", points_earned: 49 },
            { transaction_id: 345, customer_id: 181, transaction_date: new Date("2023-01-08T13:45:48Z"), amount_spent: "110.18", points_earned: 26 },
            { transaction_id: 346, customer_id: 135, transaction_date: new Date("2023-09-03T12:01:40Z"), amount_spent: "34.56", points_earned: 5 },
            { transaction_id: 347, customer_id: 22, transaction_date: new Date("2023-08-06T09:06:39Z"), amount_spent: "5.65", points_earned: 5 },
            { transaction_id: 348, customer_id: 131, transaction_date: new Date("2023-07-14T14:23:27Z"), amount_spent: "463.03", points_earned: 13 },
            { transaction_id: 349, customer_id: 151, transaction_date: new Date("2023-03-18T09:43:15Z"), amount_spent: "96.33", points_earned: 26 },
            { transaction_id: 350, customer_id: 104, transaction_date: new Date("2023-03-08T18:16:58Z"), amount_spent: "496.30", points_earned: 8 },
            { transaction_id: 351, customer_id: 177, transaction_date: new Date("2023-12-15T19:45:54Z"), amount_spent: "261.40", points_earned: 9 },
            { transaction_id: 352, customer_id: 24, transaction_date: new Date("2023-08-04T13:49:13Z"), amount_spent: "20.75", points_earned: 12 },
            { transaction_id: 353, customer_id: 30, transaction_date: new Date("2023-04-03T12:20:43Z"), amount_spent: "351.02", points_earned: 15 },
            { transaction_id: 354, customer_id: 75, transaction_date: new Date("2023-07-06T13:30:44Z"), amount_spent: "364.22", points_earned: 7 },
            { transaction_id: 355, customer_id: 131, transaction_date: new Date("2023-03-08T11:29:47Z"), amount_spent: "488.65", points_earned: 5 },
            { transaction_id: 356, customer_id: 15, transaction_date: new Date("2023-12-20T15:28:33Z"), amount_spent: "18.89", points_earned: 26 },
            { transaction_id: 357, customer_id: 75, transaction_date: new Date("2023-10-06T14:25:30Z"), amount_spent: "389.08", points_earned: 11 },
            { transaction_id: 358, customer_id: 79, transaction_date: new Date("2023-12-21T15:39:06Z"), amount_spent: "476.19", points_earned: 11 },
            { transaction_id: 359, customer_id: 122, transaction_date: new Date("2023-11-01T17:19:57Z"), amount_spent: "27.65", points_earned: 48 },
            { transaction_id: 360, customer_id: 45, transaction_date: new Date("2023-10-18T10:17:59Z"), amount_spent: "346.96", points_earned: 19 },
            { transaction_id: 361, customer_id: 49, transaction_date: new Date("2023-10-29T10:15:23Z"), amount_spent: "8.47", points_earned: 6 },
            { transaction_id: 362, customer_id: 99, transaction_date: new Date("2023-09-02T14:04:57Z"), amount_spent: "13.04", points_earned: 19 },
            { transaction_id: 363, customer_id: 18, transaction_date: new Date("2023-12-14T06:49:28Z"), amount_spent: "9.45", points_earned: 18 },
            { transaction_id: 364, customer_id: 162, transaction_date: new Date("2023-08-14T15:13:07Z"), amount_spent: "10.50", points_earned: 21 },
            { transaction_id: 365, customer_id: 43, transaction_date: new Date("2023-12-01T14:24:18Z"), amount_spent: "11.95", points_earned: 8 },
            { transaction_id: 366, customer_id: 46, transaction_date: new Date("2023-10-23T09:06:46Z"), amount_spent: "169.39", points_earned: 49 },
            { transaction_id: 367, customer_id: 77, transaction_date: new Date("2023-01-23T08:05:19Z"), amount_spent: "109.60", points_earned: 8 },
            { transaction_id: 368, customer_id: 3, transaction_date: new Date("2023-03-14T19:05:53Z"), amount_spent: "175.21", points_earned: 29 },
            { transaction_id: 369, customer_id: 15, transaction_date: new Date("2023-05-13T09:18:32Z"), amount_spent: "48.47", points_earned: 11 },
            { transaction_id: 370, customer_id: 190, transaction_date: new Date("2023-07-20T16:57:36Z"), amount_spent: "18.07", points_earned: 14 },
            { transaction_id: 371, customer_id: 104, transaction_date: new Date("2023-06-03T14:08:05Z"), amount_spent: "120.82", points_earned: 49 },
            { transaction_id: 372, customer_id: 84, transaction_date: new Date("2023-08-19T21:06:04Z"), amount_spent: "79.18", points_earned: 9 },
            { transaction_id: 373, customer_id: 173, transaction_date: new Date("2023-07-08T11:28:58Z"), amount_spent: "472.13", points_earned: 20 },
            { transaction_id: 374, customer_id: 135, transaction_date: new Date("2023-06-01T11:58:01Z"), amount_spent: "337.13", points_earned: 21 },
            { transaction_id: 375, customer_id: 112, transaction_date: new Date("2023-06-10T11:43:34Z"), amount_spent: "32.69", points_earned: 32 },
            { transaction_id: 376, customer_id: 149, transaction_date: new Date("2023-09-29T16:13:13Z"), amount_spent: "13.61", points_earned: 6 },
            { transaction_id: 377, customer_id: 116, transaction_date: new Date("2023-11-04T10:35:12Z"), amount_spent: "12.05", points_earned: 6 },
            { transaction_id: 378, customer_id: 56, transaction_date: new Date("2023-12-01T14:38:37Z"), amount_spent: "121.83", points_earned: 32 },
            { transaction_id: 379, customer_id: 4, transaction_date: new Date("2023-09-10T14:12:25Z"), amount_spent: "322.75", points_earned: 9 },
            { transaction_id: 380, customer_id: 133, transaction_date: new Date("2023-11-19T15:42:04Z"), amount_spent: "35.20", points_earned: 36 },
            { transaction_id: 381, customer_id: 123, transaction_date: new Date("2023-11-18T19:23:23Z"), amount_spent: "45.74", points_earned: 14 },
            { transaction_id: 382, customer_id: 15, transaction_date: new Date("2023-05-20T14:26:21Z"), amount_spent: "81.61", points_earned: 47 },
            { transaction_id: 383, customer_id: 67, transaction_date: new Date("2023-01-29T09:58:07Z"), amount_spent: "151.27", points_earned: 8 },
            { transaction_id: 384, customer_id: 191, transaction_date: new Date("2023-08-05T08:23:28Z"), amount_spent: "5.13", points_earned: 11 },
            { transaction_id: 385, customer_id: 105, transaction_date: new Date("2023-08-01T11:13:51Z"), amount_spent: "375.26", points_earned: 11 },
            { transaction_id: 386, customer_id: 41, transaction_date: new Date("2023-07-24T10:38:11Z"), amount_spent: "109.70", points_earned: 12 },
            { transaction_id: 387, customer_id: 40, transaction_date: new Date("2023-03-31T10:09:23Z"), amount_spent: "115.74", points_earned: 6 },
            { transaction_id: 388, customer_id: 142, transaction_date: new Date("2023-04-12T17:53:57Z"), amount_spent: "30.41", points_earned: 15 },
            { transaction_id: 389, customer_id: 53, transaction_date: new Date("2023-07-10T22:00:24Z"), amount_spent: "175.33", points_earned: 18 },
            { transaction_id: 390, customer_id: 28, transaction_date: new Date("2023-08-08T16:33:41Z"), amount_spent: "325.01", points_earned: 19 },
            { transaction_id: 391, customer_id: 113, transaction_date: new Date("2023-10-05T09:25:34Z"), amount_spent: "44.77", points_earned: 30 },
            { transaction_id: 392, customer_id: 111, transaction_date: new Date("2023-02-23T18:17:52Z"), amount_spent: "425.10", points_earned: 5 },
            { transaction_id: 393, customer_id: 128, transaction_date: new Date("2023-11-19T17:10:57Z"), amount_spent: "156.16", points_earned: 46 },
            { transaction_id: 394, customer_id: 43, transaction_date: new Date("2023-02-18T09:32:24Z"), amount_spent: "10.77", points_earned: 32 },
            { transaction_id: 395, customer_id: 120, transaction_date: new Date("2023-04-04T13:34:31Z"), amount_spent: "238.47", points_earned: 12 },
            { transaction_id: 396, customer_id: 100, transaction_date: new Date("2023-08-23T10:13:24Z"), amount_spent: "12.65", points_earned: 33 },
            { transaction_id: 397, customer_id: 169, transaction_date: new Date("2023-09-03T10:58:51Z"), amount_spent: "295.87", points_earned: 32 },
            { transaction_id: 398, customer_id: 18, transaction_date: new Date("2023-04-07T13:11:01Z"), amount_spent: "59.44", points_earned: 18 },
            { transaction_id: 399, customer_id: 198, transaction_date: new Date("2023-03-17T14:09:17Z"), amount_spent: "10.82", points_earned: 11 },
            { transaction_id: 400, customer_id: 72, transaction_date: new Date("2023-01-28T11:53:35Z"), amount_spent: "32.16", points_earned: 15 },
            { transaction_id: 401, customer_id: 48, transaction_date: new Date("2023-07-30T21:04:17Z"), amount_spent: "99.87", points_earned: 30 },
            { transaction_id: 402, customer_id: 112, transaction_date: new Date("2023-10-12T15:27:54Z"), amount_spent: "139.14", points_earned: 5 },
            { transaction_id: 403, customer_id: 71, transaction_date: new Date("2023-10-14T18:42:46Z"), amount_spent: "104.67", points_earned: 22 },
            { transaction_id: 404, customer_id: 52, transaction_date: new Date("2023-09-06T16:07:17Z"), amount_spent: "295.79", points_earned: 49 },
            { transaction_id: 405, customer_id: 123, transaction_date: new Date("2023-04-10T16:51:48Z"), amount_spent: "66.58", points_earned: 23 },
            { transaction_id: 406, customer_id: 9, transaction_date: new Date("2023-09-20T17:17:37Z"), amount_spent: "40.19", points_earned: 9 },
            { transaction_id: 407, customer_id: 166, transaction_date: new Date("2023-11-28T17:02:59Z"), amount_spent: "149.23", points_earned: 25 },
            { transaction_id: 408, customer_id: 114, transaction_date: new Date("2023-03-26T12:02:25Z"), amount_spent: "316.40", points_earned: 11 },
            { transaction_id: 409, customer_id: 154, transaction_date: new Date("2023-12-10T15:49:39Z"), amount_spent: "397.12", points_earned: 5 },
            { transaction_id: 410, customer_id: 60, transaction_date: new Date("2023-07-17T12:52:56Z"), amount_spent: "315.24", points_earned: 9 },
            { transaction_id: 411, customer_id: 157, transaction_date: new Date("2023-04-24T16:21:07Z"), amount_spent: "72.88", points_earned: 5 },
            { transaction_id: 412, customer_id: 121, transaction_date: new Date("2023-07-08T10:26:39Z"), amount_spent: "322.23", points_earned: 8 },
            { transaction_id: 413, customer_id: 19, transaction_date: new Date("2023-08-08T13:28:36Z"), amount_spent: "215.32", points_earned: 6 },
            { transaction_id: 414, customer_id: 168, transaction_date: new Date("2023-03-27T10:52:49Z"), amount_spent: "295.83", points_earned: 33 },
            { transaction_id: 415, customer_id: 5, transaction_date: new Date("2023-10-31T17:41:54Z"), amount_spent: "299.81", points_earned: 7 },
            { transaction_id: 416, customer_id: 176, transaction_date: new Date("2023-01-15T10:03:46Z"), amount_spent: "158.69", points_earned: 34 },
            { transaction_id: 417, customer_id: 51, transaction_date: new Date("2023-11-21T16:38:41Z"), amount_spent: "273.46", points_earned: 8 },
            { transaction_id: 418, customer_id: 45, transaction_date: new Date("2023-01-20T16:16:31Z"), amount_spent: "30.82", points_earned: 21 },
            { transaction_id: 419, customer_id: 12, transaction_date: new Date("2023-09-28T11:50:07Z"), amount_spent: "367.22", points_earned: 17 },
            { transaction_id: 420, customer_id: 44, transaction_date: new Date("2023-02-23T07:14:39Z"), amount_spent: "5.99", points_earned: 31 },
            { transaction_id: 421, customer_id: 55, transaction_date: new Date("2023-05-05T09:07:39Z"), amount_spent: "289.82", points_earned: 15 },
            { transaction_id: 422, customer_id: 163, transaction_date: new Date("2023-03-28T08:47:43Z"), amount_spent: "419.51", points_earned: 31 },
            { transaction_id: 423, customer_id: 133, transaction_date: new Date("2023-04-20T14:58:55Z"), amount_spent: "112.99", points_earned: 31 },
            { transaction_id: 424, customer_id: 4, transaction_date: new Date("2023-06-01T16:31:29Z"), amount_spent: "5.87", points_earned: 12 },
            { transaction_id: 425, customer_id: 147, transaction_date: new Date("2023-08-02T09:31:21Z"), amount_spent: "126.69", points_earned: 26 },
            { transaction_id: 426, customer_id: 37, transaction_date: new Date("2023-07-14T15:48:45Z"), amount_spent: "199.59", points_earned: 9 },
            { transaction_id: 427, customer_id: 9, transaction_date: new Date("2023-09-26T14:14:43Z"), amount_spent: "297.43", points_earned: 5 },
            { transaction_id: 428, customer_id: 32, transaction_date: new Date("2023-03-14T08:32:50Z"), amount_spent: "53.01", points_earned: 40 },
            { transaction_id: 429, customer_id: 73, transaction_date: new Date("2023-07-30T02:10:33Z"), amount_spent: "114.91", points_earned: 11 },
            { transaction_id: 430, customer_id: 154, transaction_date: new Date("2023-02-15T15:04:32Z"), amount_spent: "407.58", points_earned: 9 },
            { transaction_id: 431, customer_id: 173, transaction_date: new Date("2023-02-23T16:21:27Z"), amount_spent: "149.62", points_earned: 7 },
            { transaction_id: 432, customer_id: 181, transaction_date: new Date("2023-07-21T18:37:12Z"), amount_spent: "242.41", points_earned: 16 },
            { transaction_id: 433, customer_id: 142, transaction_date: new Date("2023-10-02T10:12:15Z"), amount_spent: "9.38", points_earned: 40 },
            { transaction_id: 434, customer_id: 83, transaction_date: new Date("2023-06-13T17:40:41Z"), amount_spent: "41.47", points_earned: 47 },
            { transaction_id: 435, customer_id: 81, transaction_date: new Date("2023-04-01T11:33:59Z"), amount_spent: "34.51", points_earned: 23 },
            { transaction_id: 436, customer_id: 39, transaction_date: new Date("2023-04-06T16:22:40Z"), amount_spent: "273.66", points_earned: 43 },
            { transaction_id: 437, customer_id: 72, transaction_date: new Date("2023-06-20T14:11:28Z"), amount_spent: "10.09", points_earned: 6 },
            { transaction_id: 438, customer_id: 22, transaction_date: new Date("2023-12-03T13:33:50Z"), amount_spent: "42.67", points_earned: 8 },
            { transaction_id: 439, customer_id: 109, transaction_date: new Date("2023-03-31T11:23:39Z"), amount_spent: "439.35", points_earned: 7 },
            { transaction_id: 440, customer_id: 9, transaction_date: new Date("2023-03-06T16:51:57Z"), amount_spent: "240.73", points_earned: 12 },
            { transaction_id: 441, customer_id: 154, transaction_date: new Date("2023-06-02T09:16:12Z"), amount_spent: "40.19", points_earned: 6 },
            { transaction_id: 442, customer_id: 87, transaction_date: new Date("2023-03-18T11:10:12Z"), amount_spent: "364.50", points_earned: 19 },
            { transaction_id: 443, customer_id: 130, transaction_date: new Date("2023-10-27T20:34:18Z"), amount_spent: "17.05", points_earned: 9 },
            { transaction_id: 444, customer_id: 157, transaction_date: new Date("2023-04-23T15:38:33Z"), amount_spent: "18.23", points_earned: 21 },
            { transaction_id: 445, customer_id: 59, transaction_date: new Date("2023-11-18T14:33:48Z"), amount_spent: "163.16", points_earned: 5 },
            { transaction_id: 446, customer_id: 193, transaction_date: new Date("2023-04-17T13:12:46Z"), amount_spent: "5.21", points_earned: 7 },
            { transaction_id: 447, customer_id: 83, transaction_date: new Date("2023-04-15T16:38:16Z"), amount_spent: "451.82", points_earned: 47 },
            { transaction_id: 448, customer_id: 132, transaction_date: new Date("2023-07-06T08:28:08Z"), amount_spent: "299.03", points_earned: 22 },
            { transaction_id: 449, customer_id: 171, transaction_date: new Date("2023-04-05T11:47:46Z"), amount_spent: "18.40", points_earned: 23 },
            { transaction_id: 450, customer_id: 112, transaction_date: new Date("2023-11-01T17:03:53Z"), amount_spent: "433.16", points_earned: 39 },
            { transaction_id: 451, customer_id: 21, transaction_date: new Date("2023-06-16T16:38:40Z"), amount_spent: "16.76", points_earned: 40 },
            { transaction_id: 452, customer_id: 82, transaction_date: new Date("2023-10-04T14:37:05Z"), amount_spent: "133.48", points_earned: 9 },
            { transaction_id: 453, customer_id: 1, transaction_date: new Date("2023-04-16T12:47:54Z"), amount_spent: "142.55", points_earned: 10 },
            { transaction_id: 454, customer_id: 175, transaction_date: new Date("2023-02-09T16:04:44Z"), amount_spent: "266.37", points_earned: 45 },
            { transaction_id: 455, customer_id: 88, transaction_date: new Date("2023-05-22T14:09:25Z"), amount_spent: "137.65", points_earned: 44 },
            { transaction_id: 456, customer_id: 17, transaction_date: new Date("2023-12-08T17:29:57Z"), amount_spent: "366.50", points_earned: 27 },
            { transaction_id: 457, customer_id: 102, transaction_date: new Date("2023-08-04T10:29:08Z"), amount_spent: "411.21", points_earned: 9 },
            { transaction_id: 458, customer_id: 47, transaction_date: new Date("2023-03-22T02:13:29Z"), amount_spent: "153.60", points_earned: 30 },
            { transaction_id: 459, customer_id: 196, transaction_date: new Date("2023-10-15T18:54:34Z"), amount_spent: "97.99", points_earned: 18 },
            { transaction_id: 460, customer_id: 30, transaction_date: new Date("2023-05-24T08:00:50Z"), amount_spent: "152.80", points_earned: 9 },
            { transaction_id: 461, customer_id: 4, transaction_date: new Date("2023-04-08T14:34:40Z"), amount_spent: "175.18", points_earned: 25 },
            { transaction_id: 462, customer_id: 129, transaction_date: new Date("2023-03-04T11:26:23Z"), amount_spent: "200.55", points_earned: 5 },
            { transaction_id: 463, customer_id: 146, transaction_date: new Date("2023-07-06T13:54:20Z"), amount_spent: "39.65", points_earned: 16 },
            { transaction_id: 464, customer_id: 94, transaction_date: new Date("2023-02-06T10:34:05Z"), amount_spent: "53.28", points_earned: 22 },
            { transaction_id: 465, customer_id: 136, transaction_date: new Date("2023-02-12T15:08:16Z"), amount_spent: "14.58", points_earned: 5 },
            { transaction_id: 466, customer_id: 115, transaction_date: new Date("2023-03-19T15:48:56Z"), amount_spent: "44.85", points_earned: 23 },
            { transaction_id: 467, customer_id: 171, transaction_date: new Date("2023-02-16T13:46:22Z"), amount_spent: "51.66", points_earned: 14 },
            { transaction_id: 468, customer_id: 73, transaction_date: new Date("2023-08-19T11:27:13Z"), amount_spent: "6.34", points_earned: 11 },
            { transaction_id: 469, customer_id: 88, transaction_date: new Date("2023-03-17T14:22:56Z"), amount_spent: "390.07", points_earned: 12 },
            { transaction_id: 470, customer_id: 167, transaction_date: new Date("2023-01-12T11:11:52Z"), amount_spent: "63.50", points_earned: 9 },
            { transaction_id: 471, customer_id: 66, transaction_date: new Date("2023-10-01T11:18:31Z"), amount_spent: "249.36", points_earned: 41 },
            { transaction_id: 472, customer_id: 112, transaction_date: new Date("2023-05-25T10:28:31Z"), amount_spent: "30.66", points_earned: 33 },
            { transaction_id: 473, customer_id: 171, transaction_date: new Date("2023-11-08T09:27:48Z"), amount_spent: "84.92", points_earned: 37 },
            { transaction_id: 474, customer_id: 149, transaction_date: new Date("2023-03-26T15:34:22Z"), amount_spent: "182.85", points_earned: 5 },
            { transaction_id: 475, customer_id: 103, transaction_date: new Date("2023-01-28T13:51:43Z"), amount_spent: "183.29", points_earned: 11 },
            { transaction_id: 476, customer_id: 59, transaction_date: new Date("2023-08-15T16:29:18Z"), amount_spent: "160.50", points_earned: 22 },
            { transaction_id: 477, customer_id: 112, transaction_date: new Date("2023-05-28T15:19:49Z"), amount_spent: "385.82", points_earned: 10 },
            { transaction_id: 478, customer_id: 70, transaction_date: new Date("2023-11-12T10:30:54Z"), amount_spent: "162.15", points_earned: 6 },
            { transaction_id: 479, customer_id: 50, transaction_date: new Date("2023-03-28T15:43:32Z"), amount_spent: "405.86", points_earned: 17 },
            { transaction_id: 480, customer_id: 148, transaction_date: new Date("2023-10-22T11:45:31Z"), amount_spent: "316.62", points_earned: 5 },
            { transaction_id: 481, customer_id: 8, transaction_date: new Date("2023-01-07T14:08:19Z"), amount_spent: "15.54", points_earned: 13 },
            { transaction_id: 482, customer_id: 42, transaction_date: new Date("2023-11-30T16:15:31Z"), amount_spent: "183.55", points_earned: 12 },
            { transaction_id: 483, customer_id: 124, transaction_date: new Date("2023-11-01T16:12:33Z"), amount_spent: "102.26", points_earned: 5 },
            { transaction_id: 484, customer_id: 37, transaction_date: new Date("2023-04-13T18:52:34Z"), amount_spent: "312.78", points_earned: 11 },
            { transaction_id: 485, customer_id: 147, transaction_date: new Date("2023-06-21T11:21:18Z"), amount_spent: "213.72", points_earned: 6 },
            { transaction_id: 486, customer_id: 141, transaction_date: new Date("2023-11-03T11:26:30Z"), amount_spent: "59.43", points_earned: 5 },
            { transaction_id: 487, customer_id: 81, transaction_date: new Date("2023-11-04T18:38:43Z"), amount_spent: "59.53", points_earned: 16 },
            { transaction_id: 488, customer_id: 26, transaction_date: new Date("2023-10-04T10:09:00Z"), amount_spent: "325.44", points_earned: 36 },
            { transaction_id: 489, customer_id: 73, transaction_date: new Date("2023-01-18T11:22:32Z"), amount_spent: "25.45", points_earned: 34 },
            { transaction_id: 490, customer_id: 145, transaction_date: new Date("2023-07-19T17:33:48Z"), amount_spent: "99.46", points_earned: 36 },
            { transaction_id: 491, customer_id: 33, transaction_date: new Date("2023-02-01T10:36:04Z"), amount_spent: "388.57", points_earned: 20 },
            { transaction_id: 492, customer_id: 197, transaction_date: new Date("2023-11-20T13:29:58Z"), amount_spent: "6.78", points_earned: 6 },
            { transaction_id: 493, customer_id: 134, transaction_date: new Date("2023-04-19T09:55:41Z"), amount_spent: "101.94", points_earned: 46 },
            { transaction_id: 494, customer_id: 1, transaction_date: new Date("2023-07-08T14:03:08Z"), amount_spent: "50.69", points_earned: 14 },
            { transaction_id: 495, customer_id: 160, transaction_date: new Date("2023-06-15T07:19:19Z"), amount_spent: "425.81", points_earned: 9 },
            { transaction_id: 496, customer_id: 178, transaction_date: new Date("2023-06-24T10:59:38Z"), amount_spent: "333.50", points_earned: 6 },
            { transaction_id: 497, customer_id: 40, transaction_date: new Date("2023-10-16T14:50:28Z"), amount_spent: "116.07", points_earned: 46 },
            { transaction_id: 498, customer_id: 107, transaction_date: new Date("2023-06-15T19:25:20Z"), amount_spent: "456.39", points_earned: 7 },
            { transaction_id: 499, customer_id: 5, transaction_date: new Date("2023-04-12T14:57:09Z"), amount_spent: "19.62", points_earned: 34 },
            { transaction_id: 500, customer_id: 114, transaction_date: new Date("2023-01-19T06:29:04Z"), amount_spent: "7.50", points_earned: 36 },
        ],
    });
    await prisma.transactions.createMany({
        data: [
            { transaction_id: 501, customer_id: 116, transaction_date: new Date("2023-06-15T13:01:53Z"), amount_spent: "115.34", points_earned: 6 },
            { transaction_id: 502, customer_id: 118, transaction_date: new Date("2023-07-05T15:41:29Z"), amount_spent: "248.82", points_earned: 7 },
            { transaction_id: 503, customer_id: 153, transaction_date: new Date("2023-06-18T12:42:25Z"), amount_spent: "220.41", points_earned: 6 },
            { transaction_id: 504, customer_id: 199, transaction_date: new Date("2023-06-03T08:16:33Z"), amount_spent: "332.99", points_earned: 13 },
            { transaction_id: 505, customer_id: 195, transaction_date: new Date("2023-11-30T09:04:19Z"), amount_spent: "17.74", points_earned: 24 },
            { transaction_id: 506, customer_id: 48, transaction_date: new Date("2023-09-29T15:09:22Z"), amount_spent: "5.44", points_earned: 26 },
            { transaction_id: 507, customer_id: 198, transaction_date: new Date("2023-10-02T09:49:12Z"), amount_spent: "278.75", points_earned: 21 },
            { transaction_id: 508, customer_id: 157, transaction_date: new Date("2023-04-04T15:10:07Z"), amount_spent: "144.97", points_earned: 32 },
            { transaction_id: 509, customer_id: 39, transaction_date: new Date("2023-07-09T07:50:54Z"), amount_spent: "468.87", points_earned: 43 },
            { transaction_id: 510, customer_id: 29, transaction_date: new Date("2023-07-30T13:08:14Z"), amount_spent: "225.34", points_earned: 6 },
            { transaction_id: 511, customer_id: 134, transaction_date: new Date("2023-04-23T13:44:19Z"), amount_spent: "247.90", points_earned: 5 },
            { transaction_id: 512, customer_id: 43, transaction_date: new Date("2023-04-24T12:01:24Z"), amount_spent: "46.83", points_earned: 37 },
            { transaction_id: 513, customer_id: 43, transaction_date: new Date("2023-08-08T10:59:11Z"), amount_spent: "76.41", points_earned: 7 },
            { transaction_id: 514, customer_id: 24, transaction_date: new Date("2023-07-27T11:54:12Z"), amount_spent: "10.37", points_earned: 12 },
            { transaction_id: 515, customer_id: 64, transaction_date: new Date("2023-02-25T17:22:05Z"), amount_spent: "101.13", points_earned: 5 },
            { transaction_id: 516, customer_id: 80, transaction_date: new Date("2023-10-25T11:52:02Z"), amount_spent: "248.15", points_earned: 19 },
            { transaction_id: 517, customer_id: 47, transaction_date: new Date("2023-10-03T12:44:23Z"), amount_spent: "6.79", points_earned: 13 },
            { transaction_id: 518, customer_id: 67, transaction_date: new Date("2023-07-03T08:16:32Z"), amount_spent: "177.27", points_earned: 38 },
            { transaction_id: 519, customer_id: 10, transaction_date: new Date("2023-08-26T16:50:19Z"), amount_spent: "299.39", points_earned: 27 },
            { transaction_id: 520, customer_id: 145, transaction_date: new Date("2023-04-06T17:21:19Z"), amount_spent: "5.11", points_earned: 8 },
            { transaction_id: 521, customer_id: 59, transaction_date: new Date("2023-10-18T15:05:42Z"), amount_spent: "13.74", points_earned: 41 },
            { transaction_id: 522, customer_id: 134, transaction_date: new Date("2023-07-27T08:58:06Z"), amount_spent: "248.08", points_earned: 8 },
            { transaction_id: 523, customer_id: 70, transaction_date: new Date("2023-12-22T08:22:31Z"), amount_spent: "191.60", points_earned: 18 },
            { transaction_id: 524, customer_id: 6, transaction_date: new Date("2023-02-10T14:25:29Z"), amount_spent: "42.01", points_earned: 6 },
            { transaction_id: 525, customer_id: 199, transaction_date: new Date("2023-05-14T11:13:21Z"), amount_spent: "6.37", points_earned: 17 },
            { transaction_id: 526, customer_id: 18, transaction_date: new Date("2023-12-18T15:58:59Z"), amount_spent: "61.35", points_earned: 5 },
            { transaction_id: 527, customer_id: 12, transaction_date: new Date("2023-09-23T11:07:59Z"), amount_spent: "156.30", points_earned: 47 },
            { transaction_id: 528, customer_id: 196, transaction_date: new Date("2023-02-28T11:07:48Z"), amount_spent: "230.98", points_earned: 23 },
            { transaction_id: 529, customer_id: 161, transaction_date: new Date("2023-08-29T10:05:13Z"), amount_spent: "419.90", points_earned: 41 },
            { transaction_id: 530, customer_id: 131, transaction_date: new Date("2023-08-16T12:04:16Z"), amount_spent: "104.70", points_earned: 15 },
            { transaction_id: 531, customer_id: 98, transaction_date: new Date("2023-06-09T09:14:54Z"), amount_spent: "238.11", points_earned: 5 },
            { transaction_id: 532, customer_id: 141, transaction_date: new Date("2023-02-04T09:45:15Z"), amount_spent: "14.31", points_earned: 47 },
            { transaction_id: 533, customer_id: 101, transaction_date: new Date("2023-08-23T16:04:59Z"), amount_spent: "74.82", points_earned: 10 },
            { transaction_id: 534, customer_id: 144, transaction_date: new Date("2023-07-02T09:48:33Z"), amount_spent: "125.20", points_earned: 7 },
            { transaction_id: 535, customer_id: 1, transaction_date: new Date("2023-05-27T14:22:31Z"), amount_spent: "165.40", points_earned: 6 },
            { transaction_id: 536, customer_id: 86, transaction_date: new Date("2023-09-16T06:32:55Z"), amount_spent: "7.99", points_earned: 6 },
            { transaction_id: 537, customer_id: 133, transaction_date: new Date("2023-02-15T09:34:45Z"), amount_spent: "8.64", points_earned: 41 },
            { transaction_id: 538, customer_id: 139, transaction_date: new Date("2023-11-02T13:58:55Z"), amount_spent: "19.41", points_earned: 6 },
            { transaction_id: 539, customer_id: 45, transaction_date: new Date("2023-05-19T17:12:18Z"), amount_spent: "34.04", points_earned: 46 },
            { transaction_id: 540, customer_id: 140, transaction_date: new Date("2023-09-26T14:39:55Z"), amount_spent: "406.20", points_earned: 49 },
            { transaction_id: 541, customer_id: 182, transaction_date: new Date("2023-01-17T14:46:30Z"), amount_spent: "482.80", points_earned: 12 },
            { transaction_id: 542, customer_id: 59, transaction_date: new Date("2023-12-30T20:34:05Z"), amount_spent: "69.81", points_earned: 6 },
            { transaction_id: 543, customer_id: 129, transaction_date: new Date("2023-03-06T15:57:41Z"), amount_spent: "71.29", points_earned: 12 },
            { transaction_id: 544, customer_id: 113, transaction_date: new Date("2023-08-12T11:23:59Z"), amount_spent: "66.62", points_earned: 7 },
            { transaction_id: 545, customer_id: 4, transaction_date: new Date("2023-02-15T11:07:44Z"), amount_spent: "497.42", points_earned: 5 },
            { transaction_id: 546, customer_id: 50, transaction_date: new Date("2023-06-25T07:43:01Z"), amount_spent: "6.82", points_earned: 13 },
            { transaction_id: 547, customer_id: 104, transaction_date: new Date("2023-10-15T12:09:02Z"), amount_spent: "345.15", points_earned: 11 },
            { transaction_id: 548, customer_id: 99, transaction_date: new Date("2023-08-03T13:19:30Z"), amount_spent: "72.67", points_earned: 12 },
            { transaction_id: 549, customer_id: 132, transaction_date: new Date("2023-10-23T13:18:35Z"), amount_spent: "180.69", points_earned: 28 },
            { transaction_id: 550, customer_id: 123, transaction_date: new Date("2023-04-27T15:34:16Z"), amount_spent: "112.70", points_earned: 24 },
            { transaction_id: 551, customer_id: 100, transaction_date: new Date("2023-04-26T11:13:27Z"), amount_spent: "135.96", points_earned: 12 },
            { transaction_id: 552, customer_id: 23, transaction_date: new Date("2023-10-15T15:20:22Z"), amount_spent: "26.48", points_earned: 5 },
            { transaction_id: 553, customer_id: 143, transaction_date: new Date("2023-03-02T14:03:39Z"), amount_spent: "17.88", points_earned: 29 },
            { transaction_id: 554, customer_id: 117, transaction_date: new Date("2023-05-17T16:02:40Z"), amount_spent: "460.59", points_earned: 6 },
            { transaction_id: 555, customer_id: 59, transaction_date: new Date("2023-10-18T11:08:24Z"), amount_spent: "191.81", points_earned: 44 },
            { transaction_id: 556, customer_id: 2, transaction_date: new Date("2023-06-27T13:30:56Z"), amount_spent: "19.57", points_earned: 21 },
            { transaction_id: 557, customer_id: 95, transaction_date: new Date("2023-09-07T09:12:59Z"), amount_spent: "287.07", points_earned: 10 },
            { transaction_id: 558, customer_id: 15, transaction_date: new Date("2023-04-23T14:56:19Z"), amount_spent: "39.26", points_earned: 8 },
            { transaction_id: 559, customer_id: 40, transaction_date: new Date("2023-11-14T14:16:16Z"), amount_spent: "187.06", points_earned: 27 },
            { transaction_id: 560, customer_id: 189, transaction_date: new Date("2023-03-28T11:56:12Z"), amount_spent: "179.94", points_earned: 6 },
            { transaction_id: 561, customer_id: 41, transaction_date: new Date("2023-04-30T14:03:19Z"), amount_spent: "382.92", points_earned: 6 },
            { transaction_id: 562, customer_id: 98, transaction_date: new Date("2023-04-08T15:12:40Z"), amount_spent: "104.58", points_earned: 29 },
            { transaction_id: 563, customer_id: 191, transaction_date: new Date("2023-10-11T09:33:14Z"), amount_spent: "109.84", points_earned: 18 },
            { transaction_id: 564, customer_id: 98, transaction_date: new Date("2023-03-19T10:50:15Z"), amount_spent: "65.13", points_earned: 8 },
            { transaction_id: 565, customer_id: 50, transaction_date: new Date("2023-03-06T14:18:01Z"), amount_spent: "38.76", points_earned: 41 },
            { transaction_id: 566, customer_id: 191, transaction_date: new Date("2023-09-02T05:30:30Z"), amount_spent: "207.15", points_earned: 49 },
            { transaction_id: 567, customer_id: 176, transaction_date: new Date("2023-12-17T10:15:14Z"), amount_spent: "161.30", points_earned: 33 },
            { transaction_id: 568, customer_id: 186, transaction_date: new Date("2023-05-25T17:56:26Z"), amount_spent: "22.79", points_earned: 10 },
            { transaction_id: 569, customer_id: 47, transaction_date: new Date("2023-04-25T12:08:55Z"), amount_spent: "156.73", points_earned: 24 },
            { transaction_id: 570, customer_id: 194, transaction_date: new Date("2023-04-24T01:58:30Z"), amount_spent: "10.10", points_earned: 44 },
            { transaction_id: 571, customer_id: 17, transaction_date: new Date("2023-08-17T11:24:07Z"), amount_spent: "8.23", points_earned: 5 },
            { transaction_id: 572, customer_id: 103, transaction_date: new Date("2023-07-17T10:16:26Z"), amount_spent: "140.89", points_earned: 36 },
            { transaction_id: 573, customer_id: 47, transaction_date: new Date("2023-05-22T13:04:09Z"), amount_spent: "200.18", points_earned: 6 },
            { transaction_id: 574, customer_id: 167, transaction_date: new Date("2023-01-10T14:37:19Z"), amount_spent: "189.78", points_earned: 40 },
            { transaction_id: 575, customer_id: 21, transaction_date: new Date("2023-07-23T12:16:48Z"), amount_spent: "291.24", points_earned: 32 },
            { transaction_id: 576, customer_id: 164, transaction_date: new Date("2023-10-07T09:34:33Z"), amount_spent: "485.94", points_earned: 32 },
            { transaction_id: 577, customer_id: 100, transaction_date: new Date("2023-03-03T07:10:43Z"), amount_spent: "176.59", points_earned: 38 },
            { transaction_id: 578, customer_id: 26, transaction_date: new Date("2023-03-14T18:31:43Z"), amount_spent: "45.35", points_earned: 42 },
            { transaction_id: 579, customer_id: 91, transaction_date: new Date("2023-12-06T16:13:58Z"), amount_spent: "92.26", points_earned: 10 },
            { transaction_id: 580, customer_id: 190, transaction_date: new Date("2023-05-15T17:34:58Z"), amount_spent: "123.79", points_earned: 26 },
            { transaction_id: 581, customer_id: 146, transaction_date: new Date("2023-01-02T10:13:36Z"), amount_spent: "281.53", points_earned: 8 },
            { transaction_id: 582, customer_id: 85, transaction_date: new Date("2023-12-28T09:54:50Z"), amount_spent: "338.27", points_earned: 17 },
            { transaction_id: 583, customer_id: 39, transaction_date: new Date("2023-11-10T06:11:25Z"), amount_spent: "285.55", points_earned: 49 },
            { transaction_id: 584, customer_id: 151, transaction_date: new Date("2023-12-21T14:27:03Z"), amount_spent: "277.39", points_earned: 8 },
            { transaction_id: 585, customer_id: 15, transaction_date: new Date("2023-09-20T07:43:21Z"), amount_spent: "9.88", points_earned: 11 },
            { transaction_id: 586, customer_id: 102, transaction_date: new Date("2023-09-02T10:41:51Z"), amount_spent: "154.90", points_earned: 13 },
            { transaction_id: 587, customer_id: 161, transaction_date: new Date("2023-03-19T11:46:16Z"), amount_spent: "351.32", points_earned: 25 },
            { transaction_id: 588, customer_id: 191, transaction_date: new Date("2023-03-25T08:32:18Z"), amount_spent: "5.03", points_earned: 31 },
            { transaction_id: 589, customer_id: 13, transaction_date: new Date("2023-12-21T09:34:16Z"), amount_spent: "69.58", points_earned: 27 },
            { transaction_id: 590, customer_id: 169, transaction_date: new Date("2023-11-18T14:56:21Z"), amount_spent: "182.47", points_earned: 32 },
            { transaction_id: 591, customer_id: 118, transaction_date: new Date("2023-12-12T04:20:12Z"), amount_spent: "35.27", points_earned: 18 },
            { transaction_id: 592, customer_id: 156, transaction_date: new Date("2023-06-22T23:54:15Z"), amount_spent: "187.44", points_earned: 7 },
            { transaction_id: 593, customer_id: 199, transaction_date: new Date("2023-01-03T18:18:43Z"), amount_spent: "28.84", points_earned: 21 },
            { transaction_id: 594, customer_id: 60, transaction_date: new Date("2023-06-13T20:30:16Z"), amount_spent: "107.74", points_earned: 34 },
            { transaction_id: 595, customer_id: 88, transaction_date: new Date("2023-11-11T12:35:02Z"), amount_spent: "353.39", points_earned: 17 },
            { transaction_id: 596, customer_id: 40, transaction_date: new Date("2023-02-25T16:46:01Z"), amount_spent: "5.46", points_earned: 5 },
            { transaction_id: 597, customer_id: 137, transaction_date: new Date("2023-11-22T06:30:34Z"), amount_spent: "62.09", points_earned: 8 },
            { transaction_id: 598, customer_id: 80, transaction_date: new Date("2023-07-07T09:47:29Z"), amount_spent: "33.59", points_earned: 21 },
            { transaction_id: 599, customer_id: 21, transaction_date: new Date("2023-04-06T11:35:47Z"), amount_spent: "142.18", points_earned: 6 },
            { transaction_id: 600, customer_id: 198, transaction_date: new Date("2023-11-23T17:03:59Z"), amount_spent: "8.06", points_earned: 15 },
        ],
    });
}

main()
    .then(() => prisma.$disconnect())
    .catch(async error => {
        console.error(error);
        await prisma.$disconnect();
        process.exit(1);
    });
