fix[SQL]: final version of the database + python file to generate file. TODO : remove already used primary keys and not used foreign keys.
This commit is contained in:
parent
be3aba341f
commit
ac5e01f0e0
@ -18,52 +18,60 @@ CREATE TABLE acheter
|
|||||||
|
|
||||||
CREATE TABLE avoir_motif
|
CREATE TABLE avoir_motif
|
||||||
(
|
(
|
||||||
id_piece INTEGER NOT NULL,
|
id_piece INTEGER ,
|
||||||
id_motif INTEGER NOT NULL,
|
id_motif INTEGER ,
|
||||||
CONSTRAINT pk__avoir_motif PRIMARY KEY (id_piece, id_motif)
|
CONSTRAINT pk__avoir_motif PRIMARY KEY (id_piece, id_motif)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE avoir_tag
|
||||||
|
(
|
||||||
|
id_tag INTEGER ,
|
||||||
|
id_boite INTEGER ,
|
||||||
|
CONSTRAINT pk__avoir_tag PRIMARY KEY (id_tag, id_boite)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE boites
|
CREATE TABLE boites
|
||||||
(
|
(
|
||||||
id_boite SERIAL NOT NULL,
|
id_boite INTEGER NOT NULL,
|
||||||
titre_boite varchar(255) NOT NULL,
|
titre_boite varchar(255) NOT NULL,
|
||||||
date_boite DATE ,
|
date_boite DATE ,
|
||||||
|
id_marque INTEGER ,
|
||||||
CONSTRAINT pk__boites PRIMARY KEY (id_boite)
|
CONSTRAINT pk__boites PRIMARY KEY (id_boite)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE colorer
|
CREATE TABLE colorer
|
||||||
(
|
(
|
||||||
id_piece INTEGER NOT NULL,
|
id_piece INTEGER NOT NULL,
|
||||||
id_couleur INTEGER NOT NULL,
|
id_couleur INTEGER ,
|
||||||
CONSTRAINT pk__colorer PRIMARY KEY (id_piece, id_couleur)
|
CONSTRAINT pk__colorer PRIMARY KEY (id_piece, id_couleur)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE construire
|
CREATE TABLE construire
|
||||||
(
|
(
|
||||||
id_boite INTEGER NOT NULL,
|
id_boite INTEGER ,
|
||||||
id_modele INTEGER NOT NULL,
|
id_modele INTEGER ,
|
||||||
CONSTRAINT pk__construire PRIMARY KEY (id_boite, id_modele)
|
CONSTRAINT pk__construire PRIMARY KEY (id_boite, id_modele)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE contenir
|
CREATE TABLE contenir
|
||||||
(
|
(
|
||||||
id_boite INTEGER NOT NULL,
|
id_boite INTEGER ,
|
||||||
id_piece INTEGER NOT NULL,
|
id_piece INTEGER ,
|
||||||
quantite_contenir INTEGER NOT NULL,
|
quantite_contenir INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__contenir PRIMARY KEY (id_boite, id_piece)
|
CONSTRAINT pk__contenir PRIMARY KEY (id_boite, id_piece)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE couleurs
|
CREATE TABLE couleurs
|
||||||
(
|
(
|
||||||
id_couleur SERIAL NOT NULL,
|
id_couleur INTEGER NOT NULL,
|
||||||
nom_couleur VARCHAR(255) ,
|
nom_couleur VARCHAR(255) ,
|
||||||
CONSTRAINT pk__couleurs PRIMARY KEY (id_couleur)
|
CONSTRAINT pk__couleurs PRIMARY KEY (id_couleur)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE enregistrer
|
CREATE TABLE enregistrer
|
||||||
(
|
(
|
||||||
id_boite INTEGER NOT NULL,
|
id_boite INTEGER ,
|
||||||
id_membre INTEGER NOT NULL,
|
id_membre INTEGER ,
|
||||||
quantite_enregistrer INTEGER NOT NULL,
|
quantite_enregistrer INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__enregistrer PRIMARY KEY (id_boite, id_membre)
|
CONSTRAINT pk__enregistrer PRIMARY KEY (id_boite, id_membre)
|
||||||
);
|
);
|
||||||
@ -71,7 +79,7 @@ CREATE TABLE enregistrer
|
|||||||
CREATE TABLE etre
|
CREATE TABLE etre
|
||||||
(
|
(
|
||||||
id_piece INTEGER NOT NULL,
|
id_piece INTEGER NOT NULL,
|
||||||
id_marque INTEGER NOT NULL,
|
id_marque INTEGER ,
|
||||||
CONSTRAINT pk__etre PRIMARY KEY (id_piece, id_marque)
|
CONSTRAINT pk__etre PRIMARY KEY (id_piece, id_marque)
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -98,7 +106,7 @@ CREATE TABLE fils
|
|||||||
|
|
||||||
CREATE TABLE illustrations
|
CREATE TABLE illustrations
|
||||||
(
|
(
|
||||||
id_illustration SERIAL NOT NULL,
|
id_illustration INTEGER NOT NULL,
|
||||||
url_illustration VARCHAR(2048) ,
|
url_illustration VARCHAR(2048) ,
|
||||||
id_modele INTEGER NOT NULL,
|
id_modele INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__illustrations PRIMARY KEY (id_illustration)
|
CONSTRAINT pk__illustrations PRIMARY KEY (id_illustration)
|
||||||
@ -106,34 +114,41 @@ CREATE TABLE illustrations
|
|||||||
|
|
||||||
CREATE TABLE marques
|
CREATE TABLE marques
|
||||||
(
|
(
|
||||||
id_marque SERIAL NOT NULL,
|
id_marque INTEGER NOT NULL,
|
||||||
nom_marque VARCHAR(255) ,
|
nom_marque VARCHAR(255) ,
|
||||||
CONSTRAINT pk__marques PRIMARY KEY (id_marque)
|
CONSTRAINT pk__marques PRIMARY KEY (id_marque)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE membres
|
||||||
|
(
|
||||||
|
id_membre INTEGER NOT NULL,
|
||||||
|
nom_membre VARCHAR(255) NOT NULL,
|
||||||
|
CONSTRAINT pk__membres PRIMARY KEY (id_membre)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE messages
|
CREATE TABLE messages
|
||||||
(
|
(
|
||||||
id_message SERIAL NOT NULL,
|
id_message INTEGER NOT NULL,
|
||||||
contenu_message VARCHAR(255) ,
|
contenu_message VARCHAR(255) ,
|
||||||
id_membre SERIAL NOT NULL,
|
id_membre INTEGER NOT NULL,
|
||||||
id_fil SERIAL NOT NULL,
|
id_fil INTEGER NOT NULL,
|
||||||
id_message_2 SERIAL NOT NULL,
|
id_message_2 INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__messages PRIMARY KEY (id_message)
|
CONSTRAINT pk__messages PRIMARY KEY (id_message)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE modeles
|
CREATE TABLE modeles
|
||||||
(
|
(
|
||||||
id_modele SERIAL NOT NULL,
|
id_modele INTEGER NOT NULL,
|
||||||
nom_modele VARCHAR(255) ,
|
nom_modele VARCHAR(255) ,
|
||||||
url_notice_modele VARCHAR(2048) ,
|
url_notice_modele VARCHAR(2048) ,
|
||||||
id_membre INTEGER NOT NULL,
|
id_membre INTEGER NOT NULL,
|
||||||
id_modele_2 INTEGER NOT NULL,
|
id_modele_etendu INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__modeles PRIMARY KEY (id_modele)
|
CONSTRAINT pk__modeles PRIMARY KEY (id_modele)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE necessiter
|
CREATE TABLE necessiter
|
||||||
(
|
(
|
||||||
id_modele INTEGER NOT NULL,
|
id_modele INTEGER ,
|
||||||
id_piece INTEGER NOT NULL,
|
id_piece INTEGER NOT NULL,
|
||||||
quantite_necessiter INTEGER NOT NULL,
|
quantite_necessiter INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__necessiter PRIMARY KEY (id_modele, id_piece)
|
CONSTRAINT pk__necessiter PRIMARY KEY (id_modele, id_piece)
|
||||||
@ -141,59 +156,59 @@ CREATE TABLE necessiter
|
|||||||
|
|
||||||
CREATE TABLE noter
|
CREATE TABLE noter
|
||||||
(
|
(
|
||||||
id_modele INTEGER NOT NULL,
|
id_modele INTEGER ,
|
||||||
id_membre INTEGER NOT NULL,
|
id_membre INTEGER ,
|
||||||
note_noter VARCHAR(255) NOT NULL,
|
note_noter VARCHAR(255) NOT NULL,
|
||||||
CONSTRAINT pk__noter PRIMARY KEY (id_modele, id_membre)
|
CONSTRAINT pk__noter PRIMARY KEY (id_modele, id_membre)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE perdre
|
CREATE TABLE perdre
|
||||||
(
|
(
|
||||||
id_membre INTEGER NOT NULL,
|
id_membre INTEGER ,
|
||||||
id_boite INTEGER NOT NULL,
|
id_boite INTEGER ,
|
||||||
id_piece INTEGER NOT NULL,
|
id_piece INTEGER NOT NULL,
|
||||||
quantite_perdre INTEGER NOT NULL,
|
quantite_perdre INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__perdre PRIMARY KEY (id_membre, id_boite, id_piece)
|
CONSTRAINT pk__perdre PRIMARY KEY (id_membre, id_boite, id_piece)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE tags
|
||||||
|
(
|
||||||
|
id_tag INTEGER NOT NULL,
|
||||||
|
nom_tag VARCHAR(255) ,
|
||||||
|
CONSTRAINT pk__tags PRIMARY KEY (id_tag)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE varier
|
CREATE TABLE varier
|
||||||
(
|
(
|
||||||
id_modele INTEGER NOT NULL,
|
id_modele INTEGER ,
|
||||||
id_modele_2 INTEGER NOT NULL,
|
id_modele_etendu INTEGER ,
|
||||||
CONSTRAINT pk__varier PRIMARY KEY (id_modele, id_modele_2)
|
CONSTRAINT pk__varier PRIMARY KEY (id_modele, id_modele_etendu)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE formes
|
CREATE TABLE formes
|
||||||
(
|
(
|
||||||
id_forme SERIAL NOT NULL,
|
id_forme INTEGER NOT NULL,
|
||||||
nom_forme VARCHAR(255) NOT NULL,
|
nom_forme VARCHAR(255) NOT NULL,
|
||||||
CONSTRAINT pk__formes PRIMARY KEY (id_forme)
|
CONSTRAINT pk__formes PRIMARY KEY (id_forme)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE membres
|
|
||||||
(
|
|
||||||
id_membre SERIAL NOT NULL,
|
|
||||||
nom_membre VARCHAR(255) NOT NULL,
|
|
||||||
mdp_membre VARCHAR(255) NOT NULL,
|
|
||||||
CONSTRAINT pk__membres PRIMARY KEY (id_membre)
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE TABLE motifs
|
CREATE TABLE motifs
|
||||||
(
|
(
|
||||||
id_motif SERIAL NOT NULL,
|
id_motif INTEGER NOT NULL,
|
||||||
nom_motif VARCHAR(255) NOT NULL,
|
nom_motif VARCHAR(255) NOT NULL,
|
||||||
CONSTRAINT pk__motifs PRIMARY KEY (id_motif)
|
CONSTRAINT pk__motifs PRIMARY KEY (id_motif)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE pieces
|
CREATE TABLE pieces
|
||||||
(
|
(
|
||||||
id_piece SERIAL NOT NULL,
|
id_piece INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__pieces PRIMARY KEY (id_piece)
|
CONSTRAINT pk__pieces PRIMARY KEY (id_piece)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE pieces_complexes
|
CREATE TABLE pieces_complexes
|
||||||
(
|
(
|
||||||
id_piece_complexe SERIAL NOT NULL,
|
id_piece_complexe INTEGER NOT NULL,
|
||||||
CONSTRAINT pk__pieces_complexes PRIMARY KEY (id_piece_complexe)
|
CONSTRAINT pk__pieces_complexes PRIMARY KEY (id_piece_complexe)
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -217,6 +232,18 @@ ALTER TABLE avoir_motif
|
|||||||
ADD CONSTRAINT fk2__avoir_motif FOREIGN KEY (id_motif)
|
ADD CONSTRAINT fk2__avoir_motif FOREIGN KEY (id_motif)
|
||||||
REFERENCES motifs (id_motif);
|
REFERENCES motifs (id_motif);
|
||||||
|
|
||||||
|
ALTER TABLE avoir_tag
|
||||||
|
ADD CONSTRAINT fk1__avoir_tag FOREIGN KEY (id_tag)
|
||||||
|
REFERENCES tags (id_tag);
|
||||||
|
|
||||||
|
ALTER TABLE avoir_tag
|
||||||
|
ADD CONSTRAINT fk2__avoir_tag FOREIGN KEY (id_boite)
|
||||||
|
REFERENCES boites (id_boite);
|
||||||
|
|
||||||
|
ALTER TABLE boites
|
||||||
|
ADD CONSTRAINT fk1__boites FOREIGN KEY (id_marque)
|
||||||
|
REFERENCES marques (id_marque);
|
||||||
|
|
||||||
ALTER TABLE colorer
|
ALTER TABLE colorer
|
||||||
ADD CONSTRAINT fk1__colorer FOREIGN KEY (id_piece)
|
ADD CONSTRAINT fk1__colorer FOREIGN KEY (id_piece)
|
||||||
REFERENCES pieces (id_piece);
|
REFERENCES pieces (id_piece);
|
||||||
@ -234,7 +261,11 @@ ALTER TABLE construire
|
|||||||
REFERENCES modeles (id_modele);
|
REFERENCES modeles (id_modele);
|
||||||
|
|
||||||
ALTER TABLE contenir
|
ALTER TABLE contenir
|
||||||
ADD CONSTRAINT fk2__contenir FOREIGN KEY (id_boite)
|
ADD CONSTRAINT fk1__contenir FOREIGN KEY (id_boite)
|
||||||
|
REFERENCES boites (id_boite);
|
||||||
|
|
||||||
|
ALTER TABLE contenir
|
||||||
|
ADD CONSTRAINT fk2__contenir FOREIGN KEY (id_piece)
|
||||||
REFERENCES pieces (id_piece);
|
REFERENCES pieces (id_piece);
|
||||||
|
|
||||||
ALTER TABLE enregistrer
|
ALTER TABLE enregistrer
|
||||||
@ -249,6 +280,10 @@ ALTER TABLE etre
|
|||||||
ADD CONSTRAINT fk1__etre FOREIGN KEY (id_piece)
|
ADD CONSTRAINT fk1__etre FOREIGN KEY (id_piece)
|
||||||
REFERENCES pieces (id_piece);
|
REFERENCES pieces (id_piece);
|
||||||
|
|
||||||
|
ALTER TABLE etre
|
||||||
|
ADD CONSTRAINT fk2__etre FOREIGN KEY (id_marque)
|
||||||
|
REFERENCES marques (id_marque);
|
||||||
|
|
||||||
ALTER TABLE etre_complexe
|
ALTER TABLE etre_complexe
|
||||||
ADD CONSTRAINT fk1__etre_complexe FOREIGN KEY (id_piece)
|
ADD CONSTRAINT fk1__etre_complexe FOREIGN KEY (id_piece)
|
||||||
REFERENCES pieces (id_piece);
|
REFERENCES pieces (id_piece);
|
||||||
@ -274,13 +309,25 @@ ALTER TABLE illustrations
|
|||||||
REFERENCES modeles (id_modele);
|
REFERENCES modeles (id_modele);
|
||||||
|
|
||||||
ALTER TABLE messages
|
ALTER TABLE messages
|
||||||
ADD CONSTRAINT fk1__messages FOREIGN KEY (id_fil)
|
ADD CONSTRAINT fk1__messages FOREIGN KEY (id_membre)
|
||||||
|
REFERENCES membres (id_membre);
|
||||||
|
|
||||||
|
ALTER TABLE messages
|
||||||
|
ADD CONSTRAINT fk2__messages FOREIGN KEY (id_fil)
|
||||||
REFERENCES fils (id_fil);
|
REFERENCES fils (id_fil);
|
||||||
|
|
||||||
ALTER TABLE messages
|
ALTER TABLE messages
|
||||||
ADD CONSTRAINT fk2__messages FOREIGN KEY (id_message_2)
|
ADD CONSTRAINT fk3__messages FOREIGN KEY (id_message_2)
|
||||||
REFERENCES messages (id_message);
|
REFERENCES messages (id_message);
|
||||||
|
|
||||||
|
ALTER TABLE modeles
|
||||||
|
ADD CONSTRAINT fk1__modeles FOREIGN KEY (id_membre)
|
||||||
|
REFERENCES membres (id_membre);
|
||||||
|
|
||||||
|
ALTER TABLE modeles
|
||||||
|
ADD CONSTRAINT fk2__modeles FOREIGN KEY (id_modele_etendu)
|
||||||
|
REFERENCES modeles (id_modele);
|
||||||
|
|
||||||
ALTER TABLE necessiter
|
ALTER TABLE necessiter
|
||||||
ADD CONSTRAINT fk1__necessiter FOREIGN KEY (id_modele)
|
ADD CONSTRAINT fk1__necessiter FOREIGN KEY (id_modele)
|
||||||
REFERENCES modeles (id_modele);
|
REFERENCES modeles (id_modele);
|
||||||
@ -314,7 +361,7 @@ ALTER TABLE varier
|
|||||||
REFERENCES modeles (id_modele);
|
REFERENCES modeles (id_modele);
|
||||||
|
|
||||||
ALTER TABLE varier
|
ALTER TABLE varier
|
||||||
ADD CONSTRAINT fk2__varier FOREIGN KEY (id_modele_2)
|
ADD CONSTRAINT fk2__varier FOREIGN KEY (id_modele_etendu)
|
||||||
REFERENCES modeles (id_modele);
|
REFERENCES modeles (id_modele);
|
||||||
|
|
||||||
-- ============================================================================
|
-- ============================================================================
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
brand
|
brand
|
||||||
"Runolfsdottir, Daugherty and Von"
|
|
||||||
"Wiegand, O'Conner and Streich"
|
|
||||||
Klein LLC
|
Klein LLC
|
||||||
DuBuque and Sons
|
DuBuque and Sons
|
||||||
Wisozk-Heidenreich
|
Wisozk-Heidenreich
|
||||||
@ -8,29 +6,18 @@ Fadel-Torp
|
|||||||
Predovic-Aufderhar
|
Predovic-Aufderhar
|
||||||
Simonis Inc
|
Simonis Inc
|
||||||
Gleason and Sons
|
Gleason and Sons
|
||||||
"Prosacco, Kovacek and Senger"
|
|
||||||
Hilll-Douglas
|
Hilll-Douglas
|
||||||
"Hagenes, Pfeffer and Kuvalis"
|
|
||||||
Leannon Inc
|
Leannon Inc
|
||||||
Hane Inc
|
Hane Inc
|
||||||
Bechtelar-Mosciski
|
Bechtelar-Mosciski
|
||||||
"Predovic, Moore and Baumbach"
|
|
||||||
Hane-Kirlin
|
Hane-Kirlin
|
||||||
"Gibson, Collier and Buckridge"
|
|
||||||
"Powlowski, Gislason and Shanahan"
|
|
||||||
"Gleichner, Bogisich and Gerhold"
|
|
||||||
Oberbrunner-Sauer
|
Oberbrunner-Sauer
|
||||||
Lakin Inc
|
Lakin Inc
|
||||||
"Kemmer, Ortiz and Cartwright"
|
|
||||||
|
|
||||||
"Lockman, Jacobson and Daugherty"
|
|
||||||
Daniel-Kris
|
Daniel-Kris
|
||||||
Price-Gerhold
|
Price-Gerhold
|
||||||
"Crist, Lockman and Mertz"
|
|
||||||
|
|
||||||
Schultz Inc
|
Schultz Inc
|
||||||
"Cruickshank, Borer and Bruen"
|
|
||||||
"Quigley, Koch and Fahey"
|
|
||||||
Erdman and Sons
|
Erdman and Sons
|
||||||
Blick-Howell
|
Blick-Howell
|
||||||
Leannon Group
|
Leannon Group
|
||||||
@ -39,50 +26,32 @@ Corwin-Schimmel
|
|||||||
Morar-Harber
|
Morar-Harber
|
||||||
|
|
||||||
Kemmer and Sons
|
Kemmer and Sons
|
||||||
"Wuckert, Kris and Cummings"
|
|
||||||
|
|
||||||
"Sporer, Schmidt and Yost"
|
|
||||||
"Runolfsdottir, Crist and Wehner"
|
|
||||||
Boehm-Balistreri
|
Boehm-Balistreri
|
||||||
Schumm LLC
|
Schumm LLC
|
||||||
Olson-Schmitt
|
Olson-Schmitt
|
||||||
McCullough-Stoltenberg
|
McCullough-Stoltenberg
|
||||||
Ferry LLC
|
Ferry LLC
|
||||||
"Lubowitz, Thiel and Wehner"
|
|
||||||
Cruickshank and Sons
|
Cruickshank and Sons
|
||||||
Goodwin-Mayert
|
Goodwin-Mayert
|
||||||
Feest Inc
|
Feest Inc
|
||||||
"Baumbach, Nicolas and Heathcote"
|
|
||||||
"Jacobson, Dach and Zulauf"
|
|
||||||
Koss-Flatley
|
Koss-Flatley
|
||||||
Stark Inc
|
Stark Inc
|
||||||
Ratke-Bode
|
Ratke-Bode
|
||||||
"VonRueden, Klocko and Lueilwitz"
|
|
||||||
Walker-Pacocha
|
Walker-Pacocha
|
||||||
"Johnson, Will and Bauch"
|
|
||||||
O'Reilly-Davis
|
|
||||||
Schumm-Jacobs
|
Schumm-Jacobs
|
||||||
"Beahan, Kirlin and Tremblay"
|
|
||||||
"Mayer, Bahringer and Pollich"
|
|
||||||
Botsford Inc
|
Botsford Inc
|
||||||
Baumbach LLC
|
Baumbach LLC
|
||||||
"Corwin, Casper and Kirlin"
|
|
||||||
Turcotte Group
|
Turcotte Group
|
||||||
"Rippin, Hayes and Kshlerin"
|
|
||||||
"Hane, Wiegand and Flatley"
|
|
||||||
"Lockman, Rath and Dickinson"
|
|
||||||
Boyle-Brown
|
Boyle-Brown
|
||||||
Kuvalis and Sons
|
Kuvalis and Sons
|
||||||
Cartwright Inc
|
Cartwright Inc
|
||||||
|
|
||||||
"Christiansen, Leuschke and Kshlerin"
|
|
||||||
Russel-Heller
|
Russel-Heller
|
||||||
"Hudson, Kilback and Fritsch"
|
|
||||||
Gleichner-Barton
|
Gleichner-Barton
|
||||||
Kreiger-Walsh
|
Kreiger-Walsh
|
||||||
Murphy-Von
|
Murphy-Von
|
||||||
Morissette-Zulauf
|
Morissette-Zulauf
|
||||||
"Jakubowski, VonRueden and White"
|
|
||||||
Jacobs-Schaefer
|
Jacobs-Schaefer
|
||||||
Fay and Sons
|
Fay and Sons
|
||||||
|
|
||||||
@ -91,48 +60,35 @@ Reichel LLC
|
|||||||
Gutkowski LLC
|
Gutkowski LLC
|
||||||
Littel Inc
|
Littel Inc
|
||||||
Towne-Harvey
|
Towne-Harvey
|
||||||
"Kozey, Haley and Emard"
|
|
||||||
"Bogan, Morar and Medhurst"
|
|
||||||
Lang-Kirlin
|
Lang-Kirlin
|
||||||
VonRueden and Sons
|
VonRueden and Sons
|
||||||
Bogan-Tremblay
|
Bogan-Tremblay
|
||||||
Bradtke-Monahan
|
Bradtke-Monahan
|
||||||
Stiedemann-Kling
|
Stiedemann-Kling
|
||||||
"Bartoletti, Stoltenberg and Lesch"
|
|
||||||
Champlin-Jacobs
|
Champlin-Jacobs
|
||||||
Walsh-Blick
|
Walsh-Blick
|
||||||
Hagenes-Paucek
|
Hagenes-Paucek
|
||||||
Volkman and Sons
|
Volkman and Sons
|
||||||
Abshire Inc
|
Abshire Inc
|
||||||
"Jenkins, Swift and O'Kon"
|
|
||||||
Senger-Johnston
|
Senger-Johnston
|
||||||
Hand Group
|
Hand Group
|
||||||
Rolfson-Mayert
|
Rolfson-Mayert
|
||||||
Volkman-Ondricka
|
Volkman-Ondricka
|
||||||
"Bruen, Kuhn and Daugherty"
|
|
||||||
Runolfsdottir-Walter
|
Runolfsdottir-Walter
|
||||||
"Fahey, Labadie and Friesen"
|
|
||||||
Schulist-Wolf
|
Schulist-Wolf
|
||||||
"Moen, Keeling and Koelpin"
|
|
||||||
Reichel-Franecki
|
Reichel-Franecki
|
||||||
Effertz and Sons
|
Effertz and Sons
|
||||||
Howe LLC
|
Howe LLC
|
||||||
Rohan-Bartoletti
|
Rohan-Bartoletti
|
||||||
"Hilpert, McCullough and Okuneva"
|
|
||||||
Pacocha-Emmerich
|
Pacocha-Emmerich
|
||||||
"Denesik, Huel and Rippin"
|
|
||||||
Nolan-Quitzon
|
Nolan-Quitzon
|
||||||
Stiedemann Inc
|
Stiedemann Inc
|
||||||
"Schneider, Bernhard and Heaney"
|
|
||||||
Connelly-Leuschke
|
Connelly-Leuschke
|
||||||
Cummings-Gibson
|
Cummings-Gibson
|
||||||
"Schroeder, Stoltenberg and Beahan"
|
|
||||||
Weimann-Kub
|
Weimann-Kub
|
||||||
Nitzsche-McDermott
|
Nitzsche-McDermott
|
||||||
"Crist, McClure and O'Hara"
|
|
||||||
Von Group
|
Von Group
|
||||||
Dietrich LLC
|
Dietrich LLC
|
||||||
"Paucek, Bartell and Grant"
|
|
||||||
Schamberger and Sons
|
Schamberger and Sons
|
||||||
Jones-Bogisich
|
Jones-Bogisich
|
||||||
Corwin Inc
|
Corwin Inc
|
||||||
@ -145,15 +101,10 @@ Kuvalis LLC
|
|||||||
|
|
||||||
Schamberger-Kautzer
|
Schamberger-Kautzer
|
||||||
Dickinson-Grady
|
Dickinson-Grady
|
||||||
"Graham, Kunze and Von"
|
|
||||||
|
|
||||||
Parisian-Runte
|
Parisian-Runte
|
||||||
Hirthe Inc
|
Hirthe Inc
|
||||||
"Klein, Hermann and Schmidt"
|
|
||||||
"Medhurst, Howell and Wyman"
|
|
||||||
Tromp-Renner
|
Tromp-Renner
|
||||||
"Schoen, Bailey and Moen"
|
|
||||||
"Sauer, Leannon and Stark"
|
|
||||||
Pfeffer LLC
|
Pfeffer LLC
|
||||||
Jaskolski and Sons
|
Jaskolski and Sons
|
||||||
Koepp and Sons
|
Koepp and Sons
|
||||||
@ -167,12 +118,9 @@ Shields-Kihn
|
|||||||
Wilderman-Wisozk
|
Wilderman-Wisozk
|
||||||
Nienow-Sanford
|
Nienow-Sanford
|
||||||
Stiedemann LLC
|
Stiedemann LLC
|
||||||
"Pouros, Weber and Huels"
|
|
||||||
Fay-Weber
|
Fay-Weber
|
||||||
Cartwright-Wiegand
|
Cartwright-Wiegand
|
||||||
Veum Inc
|
Veum Inc
|
||||||
"Predovic, Kuphal and Morar"
|
|
||||||
"Schmidt, Emmerich and Daugherty"
|
|
||||||
Greenholt Group
|
Greenholt Group
|
||||||
Bergnaum and Sons
|
Bergnaum and Sons
|
||||||
Steuber-Breitenberg
|
Steuber-Breitenberg
|
||||||
@ -180,43 +128,27 @@ Rempel-Lynch
|
|||||||
Baumbach Inc
|
Baumbach Inc
|
||||||
Jast-Schiller
|
Jast-Schiller
|
||||||
Streich LLC
|
Streich LLC
|
||||||
"Casper, Bradtke and Hickle"
|
|
||||||
"VonRueden, Powlowski and Wehner"
|
|
||||||
Marquardt-Parisian
|
Marquardt-Parisian
|
||||||
Labadie and Sons
|
Labadie and Sons
|
||||||
Gulgowski LLC
|
Gulgowski LLC
|
||||||
"Hand, Beatty and Ratke"
|
|
||||||
"Bosco, MacGyver and Weimann"
|
|
||||||
Balistreri Group
|
Balistreri Group
|
||||||
Kiehn-Hirthe
|
Kiehn-Hirthe
|
||||||
Effertz-Gorczany
|
Effertz-Gorczany
|
||||||
O'Keefe-Heaney
|
|
||||||
Goldner-Breitenberg
|
Goldner-Breitenberg
|
||||||
O'Connell-Conroy
|
|
||||||
Upton-Beier
|
Upton-Beier
|
||||||
White LLC
|
White LLC
|
||||||
"Rowe, Halvorson and Goyette"
|
|
||||||
Rowe Group
|
Rowe Group
|
||||||
"Grady, Rolfson and Purdy"
|
|
||||||
"Dach, McCullough and Simonis"
|
|
||||||
Wolf-Roberts
|
Wolf-Roberts
|
||||||
"Gibson, Rosenbaum and Quigley"
|
|
||||||
Hudson-Pacocha
|
Hudson-Pacocha
|
||||||
|
|
||||||
Mohr-Pacocha
|
Mohr-Pacocha
|
||||||
"Casper, Crooks and Berge"
|
|
||||||
Doyle LLC
|
Doyle LLC
|
||||||
Kihn-Kirlin
|
Kihn-Kirlin
|
||||||
Dooley LLC
|
Dooley LLC
|
||||||
"Welch, Gislason and Hand"
|
|
||||||
Vandervort-Feest
|
Vandervort-Feest
|
||||||
|
|
||||||
"Gorczany, Botsford and Kling"
|
|
||||||
Thiel-Gorczany
|
Thiel-Gorczany
|
||||||
Reichel-Mertz
|
Reichel-Mertz
|
||||||
"Kutch, Mann and Kuhic"
|
|
||||||
"Doyle, Quitzon and Leannon"
|
|
||||||
O'Reilly and Sons
|
|
||||||
Medhurst Group
|
Medhurst Group
|
||||||
Feil and Sons
|
Feil and Sons
|
||||||
Runolfsdottir Group
|
Runolfsdottir Group
|
||||||
@ -225,27 +157,17 @@ Lang Group
|
|||||||
|
|
||||||
Ullrich LLC
|
Ullrich LLC
|
||||||
Oberbrunner-Hirthe
|
Oberbrunner-Hirthe
|
||||||
"Zboncak, Kshlerin and Schowalter"
|
|
||||||
Bosco-Lehner
|
Bosco-Lehner
|
||||||
Orn Group
|
Orn Group
|
||||||
Blick-Bruen
|
Blick-Bruen
|
||||||
"Stroman, Jacobs and Feil"
|
|
||||||
Green and Sons
|
Green and Sons
|
||||||
"Hane, Brekke and Lowe"
|
|
||||||
|
|
||||||
"Deckow, Watsica and Waelchi"
|
|
||||||
Sporer Group
|
Sporer Group
|
||||||
Prohaska-Hauck
|
Prohaska-Hauck
|
||||||
Reynolds Group
|
Reynolds Group
|
||||||
Block-Parisian
|
Block-Parisian
|
||||||
"Wolf, Will and Bernhard"
|
|
||||||
"Mante, Schumm and Hansen"
|
|
||||||
"Christiansen, Kovacek and Dietrich"
|
|
||||||
Schumm-Ortiz
|
Schumm-Ortiz
|
||||||
"Hickle, Wehner and Raynor"
|
|
||||||
Leffler-Murazik
|
Leffler-Murazik
|
||||||
"Bode, Lynch and Hermann"
|
|
||||||
"Johns, Hagenes and Yost"
|
|
||||||
Crist LLC
|
Crist LLC
|
||||||
Marquardt Group
|
Marquardt Group
|
||||||
Gislason Inc
|
Gislason Inc
|
||||||
@ -254,97 +176,66 @@ Ondricka-Hintz
|
|||||||
Walsh LLC
|
Walsh LLC
|
||||||
Koepp-Schamberger
|
Koepp-Schamberger
|
||||||
Rath-Runolfsdottir
|
Rath-Runolfsdottir
|
||||||
"Dickens, Auer and Lind"
|
|
||||||
"Hartmann, Smith and Becker"
|
|
||||||
"Dare, Kreiger and Heller"
|
|
||||||
Bayer-Green
|
Bayer-Green
|
||||||
Reichert Group
|
Reichert Group
|
||||||
Haag LLC
|
Haag LLC
|
||||||
"Kiehn, Lehner and Kreiger"
|
|
||||||
Haley-Donnelly
|
Haley-Donnelly
|
||||||
Russel Inc
|
Russel Inc
|
||||||
Zulauf Inc
|
Zulauf Inc
|
||||||
Hermiston and Sons
|
Hermiston and Sons
|
||||||
"Gorczany, Gutmann and Maggio"
|
|
||||||
|
|
||||||
Runolfsdottir Inc
|
Runolfsdottir Inc
|
||||||
Smitham-Ryan
|
Smitham-Ryan
|
||||||
Goyette LLC
|
Goyette LLC
|
||||||
"Medhurst, Jakubowski and Hermiston"
|
|
||||||
|
|
||||||
"Keeling, Howe and Emard"
|
|
||||||
Cummerata Inc
|
Cummerata Inc
|
||||||
Marks-Nikolaus
|
Marks-Nikolaus
|
||||||
"Dach, Orn and Abbott"
|
|
||||||
"Gutkowski, Bahringer and Howe"
|
|
||||||
Turcotte Group
|
Turcotte Group
|
||||||
"Lowe, Ziemann and Beer"
|
|
||||||
Walsh Group
|
Walsh Group
|
||||||
Erdman LLC
|
Erdman LLC
|
||||||
"Stokes, Wiza and Larson"
|
|
||||||
Willms-Ortiz
|
Willms-Ortiz
|
||||||
Miller and Sons
|
Miller and Sons
|
||||||
"Walker, Heathcote and Ondricka"
|
|
||||||
Moore and Sons
|
Moore and Sons
|
||||||
Leffler-Dicki
|
Leffler-Dicki
|
||||||
Kautzer-Funk
|
Kautzer-Funk
|
||||||
Murazik-Sipes
|
Murazik-Sipes
|
||||||
"Baumbach, Hilpert and Medhurst"
|
|
||||||
Pollich Group
|
Pollich Group
|
||||||
Volkman-Koepp
|
Volkman-Koepp
|
||||||
Prosacco LLC
|
Prosacco LLC
|
||||||
|
|
||||||
"Paucek, Morar and Ratke"
|
|
||||||
Trantow LLC
|
Trantow LLC
|
||||||
McClure-Stanton
|
McClure-Stanton
|
||||||
Corwin-Prohaska
|
Corwin-Prohaska
|
||||||
"Turcotte, Pagac and Hilpert"
|
|
||||||
Carroll and Sons
|
Carroll and Sons
|
||||||
"Wolf, Marquardt and Anderson"
|
|
||||||
"Beahan, Witting and Ratke"
|
|
||||||
|
|
||||||
West-Hane
|
West-Hane
|
||||||
Ernser and Sons
|
Ernser and Sons
|
||||||
Jacobson-Kohler
|
Jacobson-Kohler
|
||||||
"Reilly, Leffler and McLaughlin"
|
|
||||||
Orn-Lemke
|
Orn-Lemke
|
||||||
Moen-Lemke
|
Moen-Lemke
|
||||||
"Satterfield, Hudson and Volkman"
|
|
||||||
Hackett-Mosciski
|
Hackett-Mosciski
|
||||||
Hane LLC
|
Hane LLC
|
||||||
Wisoky-Jenkins
|
Wisoky-Jenkins
|
||||||
"Witting, Wolf and Bailey"
|
|
||||||
"Lebsack, Bogisich and Jaskolski"
|
|
||||||
"Franecki, Herzog and Botsford"
|
|
||||||
Grady Inc
|
Grady Inc
|
||||||
Hagenes Group
|
Hagenes Group
|
||||||
"Frami, Rodriguez and Jerde"
|
|
||||||
Donnelly-Waelchi
|
Donnelly-Waelchi
|
||||||
Hermann LLC
|
Hermann LLC
|
||||||
Weber and Sons
|
Weber and Sons
|
||||||
Stamm LLC
|
Stamm LLC
|
||||||
Fay-Satterfield
|
Fay-Satterfield
|
||||||
"Cremin, Balistreri and Jakubowski"
|
|
||||||
"Lemke, Grady and Bailey"
|
|
||||||
"Herman, Donnelly and Ankunding"
|
|
||||||
Ondricka-Waelchi
|
Ondricka-Waelchi
|
||||||
Jacobson and Sons
|
Jacobson and Sons
|
||||||
Smitham LLC
|
Smitham LLC
|
||||||
"Zulauf, Lowe and Murray"
|
|
||||||
Heidenreich-Robel
|
Heidenreich-Robel
|
||||||
Langworth-Beier
|
Langworth-Beier
|
||||||
Spinka-Emard
|
Spinka-Emard
|
||||||
Funk LLC
|
Funk LLC
|
||||||
"Hagenes, Leuschke and Moore"
|
|
||||||
|
|
||||||
"Hamill, Herman and Huels"
|
|
||||||
"Treutel, Boyle and Halvorson"
|
|
||||||
Mayer and Sons
|
Mayer and Sons
|
||||||
McGlynn-Beer
|
McGlynn-Beer
|
||||||
Rippin-Steuber
|
Rippin-Steuber
|
||||||
Moen-Yundt
|
Moen-Yundt
|
||||||
Vandervort-Breitenberg
|
Vandervort-Breitenberg
|
||||||
"Zulauf, Gerlach and Thiel"
|
|
||||||
Tromp and Sons
|
Tromp and Sons
|
||||||
Pagac-Gislason
|
Pagac-Gislason
|
||||||
|
|
||||||
@ -355,8 +246,6 @@ Steuber Inc
|
|||||||
Boyle-Ondricka
|
Boyle-Ondricka
|
||||||
Thompson LLC
|
Thompson LLC
|
||||||
Wilkinson-Flatley
|
Wilkinson-Flatley
|
||||||
"Schinner, Ferry and Nicolas"
|
|
||||||
"Lang, Senger and Schultz"
|
|
||||||
Powlowski-Hane
|
Powlowski-Hane
|
||||||
Schumm and Sons
|
Schumm and Sons
|
||||||
Thiel and Sons
|
Thiel and Sons
|
||||||
@ -369,119 +258,66 @@ Miller LLC
|
|||||||
Lindgren Group
|
Lindgren Group
|
||||||
Reilly-Kautzer
|
Reilly-Kautzer
|
||||||
Barton and Sons
|
Barton and Sons
|
||||||
"Satterfield, Heaney and Donnelly"
|
|
||||||
Sawayn Inc
|
Sawayn Inc
|
||||||
"Pfannerstill, Abbott and Daugherty"
|
|
||||||
Schmitt-Runolfsson
|
Schmitt-Runolfsson
|
||||||
"Kirlin, Goldner and Keeling"
|
|
||||||
Gibson-Donnelly
|
Gibson-Donnelly
|
||||||
Marks LLC
|
Marks LLC
|
||||||
Yost LLC
|
Yost LLC
|
||||||
"Reichert, Kuhlman and Upton"
|
|
||||||
"Gorczany, Kerluke and Von"
|
|
||||||
"Hamill, Hauck and Grimes"
|
|
||||||
Paucek and Sons
|
Paucek and Sons
|
||||||
|
|
||||||
Rice-Krajcik
|
Rice-Krajcik
|
||||||
Pfannerstill LLC
|
Pfannerstill LLC
|
||||||
"Gutmann, Pouros and Schuppe"
|
|
||||||
Willms-Runolfsdottir
|
Willms-Runolfsdottir
|
||||||
"Lebsack, Volkman and Spinka"
|
|
||||||
Grady Inc
|
Grady Inc
|
||||||
Reichert-Schroeder
|
Reichert-Schroeder
|
||||||
"Feeney, Koelpin and Reichel"
|
|
||||||
"Denesik, Vandervort and Pacocha"
|
|
||||||
Kilback-Johnston
|
Kilback-Johnston
|
||||||
"Spencer, Koepp and Deckow"
|
|
||||||
|
|
||||||
"Sipes, Barrows and Labadie"
|
|
||||||
"Weber, Prosacco and Watsica"
|
|
||||||
Bauch-Brown
|
Bauch-Brown
|
||||||
"Krajcik, Romaguera and Langworth"
|
|
||||||
"Gleichner, Kerluke and Koss"
|
|
||||||
"Schumm, Bartell and Wehner"
|
|
||||||
Aufderhar LLC
|
Aufderhar LLC
|
||||||
"Huels, Prohaska and Gislason"
|
|
||||||
"Trantow, Bosco and Stokes"
|
|
||||||
"Emmerich, Lind and Cummings"
|
|
||||||
Emmerich-Schumm
|
Emmerich-Schumm
|
||||||
"Kemmer, Schuster and Larson"
|
|
||||||
|
|
||||||
"Satterfield, Abshire and Ferry"
|
|
||||||
|
|
||||||
"Cronin, Dickinson and Koch"
|
|
||||||
Marquardt-O'Conner
|
|
||||||
Bednar-Luettgen
|
Bednar-Luettgen
|
||||||
Conroy-Wilkinson
|
Conroy-Wilkinson
|
||||||
Langosh-Howe
|
Langosh-Howe
|
||||||
Breitenberg-Gerhold
|
Breitenberg-Gerhold
|
||||||
"Cummerata, Parisian and Hegmann"
|
|
||||||
"Rice, Gutmann and Braun"
|
|
||||||
"Haley, Barton and Zemlak"
|
|
||||||
Considine-Miller
|
Considine-Miller
|
||||||
"Deckow, Rogahn and VonRueden"
|
|
||||||
"Lang, Gleason and Grady"
|
|
||||||
Langworth and Sons
|
Langworth and Sons
|
||||||
Balistreri LLC
|
Balistreri LLC
|
||||||
Parisian-Pollich
|
Parisian-Pollich
|
||||||
Jacobson Inc
|
Jacobson Inc
|
||||||
|
|
||||||
Ferry-Torphy
|
Ferry-Torphy
|
||||||
"Christiansen, Lang and Schaefer"
|
|
||||||
Effertz LLC
|
Effertz LLC
|
||||||
"Reichert, Murphy and Effertz"
|
|
||||||
Trantow-Marvin
|
Trantow-Marvin
|
||||||
Borer and Sons
|
Borer and Sons
|
||||||
"Harber, Herman and Crooks"
|
|
||||||
"Fritsch, Emmerich and Abshire"
|
|
||||||
"Veum, Boyle and Hickle"
|
|
||||||
Pfeffer-Klein
|
Pfeffer-Klein
|
||||||
"Kulas, Roberts and Flatley"
|
|
||||||
Leannon-Grady
|
Leannon-Grady
|
||||||
"Streich, Mosciski and Reynolds"
|
|
||||||
"Willms, Shields and Hoeger"
|
|
||||||
Smitham-Mohr
|
Smitham-Mohr
|
||||||
"Schowalter, O'Keefe and Reinger"
|
|
||||||
Mante-Padberg
|
Mante-Padberg
|
||||||
Hills Inc
|
Hills Inc
|
||||||
Zemlak Group
|
Zemlak Group
|
||||||
Kessler-Green
|
Kessler-Green
|
||||||
"Corwin, Quigley and Bins"
|
|
||||||
Terry-Reichert
|
Terry-Reichert
|
||||||
"Rau, Hodkiewicz and Daugherty"
|
|
||||||
Macejkovic and Sons
|
Macejkovic and Sons
|
||||||
"Ondricka, Franecki and Schuppe"
|
|
||||||
|
|
||||||
Rice-Bayer
|
Rice-Bayer
|
||||||
Romaguera-Wuckert
|
Romaguera-Wuckert
|
||||||
"Goyette, Hudson and Fay"
|
|
||||||
"Ziemann, Kohler and Ryan"
|
|
||||||
Dickinson-Greenfelder
|
Dickinson-Greenfelder
|
||||||
VonRueden Group
|
VonRueden Group
|
||||||
|
|
||||||
"Lowe, Sauer and Quigley"
|
|
||||||
Krajcik and Sons
|
Krajcik and Sons
|
||||||
"Marquardt, Dietrich and O'Hara"
|
|
||||||
Romaguera-Pfannerstill
|
Romaguera-Pfannerstill
|
||||||
Heller-Hammes
|
Heller-Hammes
|
||||||
"Parker, Mann and Towne"
|
|
||||||
Wisozk LLC
|
Wisozk LLC
|
||||||
"Herman, Bauch and Hudson"
|
|
||||||
"Hickle, Schamberger and Crona"
|
|
||||||
"Marquardt, Ziemann and Nitzsche"
|
|
||||||
Auer-Beatty
|
Auer-Beatty
|
||||||
Heller-Marks
|
Heller-Marks
|
||||||
"Ritchie, Welch and Wuckert"
|
|
||||||
Kertzmann and Sons
|
Kertzmann and Sons
|
||||||
"Oberbrunner, Gislason and Becker"
|
|
||||||
Schuppe LLC
|
Schuppe LLC
|
||||||
Hammes-Schimmel
|
Hammes-Schimmel
|
||||||
"Walter, Quigley and Dicki"
|
|
||||||
Raynor Inc
|
Raynor Inc
|
||||||
Balistreri Group
|
Balistreri Group
|
||||||
McKenzie and Sons
|
McKenzie and Sons
|
||||||
O'Connell-Bode
|
|
||||||
"Nolan, Crist and Doyle"
|
|
||||||
Ebert Group
|
Ebert Group
|
||||||
Stanton and Sons
|
Stanton and Sons
|
||||||
Kiehn-Rohan
|
Kiehn-Rohan
|
||||||
@ -489,88 +325,62 @@ Collier and Sons
|
|||||||
Johns-Howe
|
Johns-Howe
|
||||||
Hilll-Emard
|
Hilll-Emard
|
||||||
Douglas-Dietrich
|
Douglas-Dietrich
|
||||||
"Raynor, Price and Marvin"
|
|
||||||
Quitzon Inc
|
Quitzon Inc
|
||||||
Olson-Schumm
|
Olson-Schumm
|
||||||
Larkin-Ruecker
|
Larkin-Ruecker
|
||||||
"Rowe, Turner and Moen"
|
|
||||||
Feeney Group
|
Feeney Group
|
||||||
|
|
||||||
Gislason LLC
|
Gislason LLC
|
||||||
Lemke and Sons
|
Lemke and Sons
|
||||||
Hackett Group
|
Hackett Group
|
||||||
"Kihn, Ratke and Ledner"
|
|
||||||
Moen Inc
|
Moen Inc
|
||||||
Murphy-Gottlieb
|
Murphy-Gottlieb
|
||||||
"Runolfsson, Greenholt and Doyle"
|
|
||||||
Barrows and Sons
|
Barrows and Sons
|
||||||
Dicki LLC
|
Dicki LLC
|
||||||
Pollich-Weimann
|
Pollich-Weimann
|
||||||
Stiedemann and Sons
|
Stiedemann and Sons
|
||||||
"Ferry, Durgan and Volkman"
|
|
||||||
Ledner-Stanton
|
Ledner-Stanton
|
||||||
"Volkman, Mosciski and Hagenes"
|
|
||||||
Koepp-Carter
|
Koepp-Carter
|
||||||
Rice Group
|
Rice Group
|
||||||
|
|
||||||
White and Sons
|
White and Sons
|
||||||
Jakubowski Inc
|
Jakubowski Inc
|
||||||
|
|
||||||
Daugherty-O'Reilly
|
|
||||||
Morissette-Hickle
|
Morissette-Hickle
|
||||||
Kutch-Senger
|
Kutch-Senger
|
||||||
Beier-Hand
|
Beier-Hand
|
||||||
"Hudson, Kutch and Legros"
|
|
||||||
Waters Inc
|
Waters Inc
|
||||||
Lang-Sporer
|
Lang-Sporer
|
||||||
Parisian Group
|
Parisian Group
|
||||||
Kuhn-Christiansen
|
Kuhn-Christiansen
|
||||||
"Jakubowski, Wolff and O'Kon"
|
|
||||||
Krajcik Inc
|
Krajcik Inc
|
||||||
Leuschke-Pacocha
|
Leuschke-Pacocha
|
||||||
Jacobson Inc
|
Jacobson Inc
|
||||||
"Glover, Brown and Rau"
|
|
||||||
D'Amore-Kertzmann
|
|
||||||
Shields Group
|
Shields Group
|
||||||
"Hyatt, Reynolds and Schuppe"
|
|
||||||
Hauck Group
|
Hauck Group
|
||||||
Hilpert-Grimes
|
Hilpert-Grimes
|
||||||
"Stiedemann, Smitham and Block"
|
|
||||||
Pacocha-Harvey
|
Pacocha-Harvey
|
||||||
Walsh-Krajcik
|
Walsh-Krajcik
|
||||||
"Koepp, Fay and Cummerata"
|
|
||||||
Quigley-Miller
|
Quigley-Miller
|
||||||
Swaniawski LLC
|
Swaniawski LLC
|
||||||
Miller-Cole
|
Miller-Cole
|
||||||
"Maggio, Morissette and Schmeler"
|
|
||||||
Gleason Group
|
Gleason Group
|
||||||
"Padberg, Cronin and Feest"
|
|
||||||
"Steuber, Cole and O'Reilly"
|
|
||||||
"Kub, Roberts and Leffler"
|
|
||||||
Dooley-Witting
|
Dooley-Witting
|
||||||
Conroy LLC
|
Conroy LLC
|
||||||
Parker Group
|
Parker Group
|
||||||
Spinka Group
|
Spinka Group
|
||||||
Kunde-Wunsch
|
Kunde-Wunsch
|
||||||
|
|
||||||
"Ullrich, Christiansen and Ebert"
|
|
||||||
Corkery-Farrell
|
Corkery-Farrell
|
||||||
Von-Metz
|
Von-Metz
|
||||||
O'Kon-Ratke
|
|
||||||
"Mueller, Purdy and O'Reilly"
|
|
||||||
Ondricka LLC
|
Ondricka LLC
|
||||||
"Quitzon, McLaughlin and Quigley"
|
|
||||||
Stamm-Renner
|
Stamm-Renner
|
||||||
Lubowitz-Lehner
|
Lubowitz-Lehner
|
||||||
Kshlerin-Larson
|
Kshlerin-Larson
|
||||||
Streich-Reichert
|
Streich-Reichert
|
||||||
Hackett-Medhurst
|
Hackett-Medhurst
|
||||||
"Lang, Reinger and Gerlach"
|
|
||||||
"Casper, Hansen and Mills"
|
|
||||||
"Lind, Schoen and Schmidt"
|
|
||||||
Kozey-Stroman
|
Kozey-Stroman
|
||||||
McDermott-Kuhic
|
McDermott-Kuhic
|
||||||
"Kuphal, Hettinger and Rippin"
|
|
||||||
Willms-Farrell
|
Willms-Farrell
|
||||||
Konopelski-Romaguera
|
Konopelski-Romaguera
|
||||||
Collier LLC
|
Collier LLC
|
||||||
@ -578,41 +388,29 @@ Carroll-Flatley
|
|||||||
Gerhold Group
|
Gerhold Group
|
||||||
Stracke Group
|
Stracke Group
|
||||||
|
|
||||||
O'Connell-Murazik
|
|
||||||
Reynolds-Johns
|
Reynolds-Johns
|
||||||
Gottlieb-Haag
|
Gottlieb-Haag
|
||||||
Cruickshank-Gusikowski
|
Cruickshank-Gusikowski
|
||||||
Baumbach and Sons
|
Baumbach and Sons
|
||||||
Dickinson-Ankunding
|
Dickinson-Ankunding
|
||||||
"Armstrong, Yost and Jenkins"
|
|
||||||
Schumm and Sons
|
Schumm and Sons
|
||||||
Kulas-Simonis
|
Kulas-Simonis
|
||||||
"Lowe, Smitham and Quitzon"
|
|
||||||
Ziemann-Haag
|
Ziemann-Haag
|
||||||
Wunsch-Hilll
|
Wunsch-Hilll
|
||||||
"Monahan, Runolfsson and Maggio"
|
|
||||||
Klocko-Kassulke
|
Klocko-Kassulke
|
||||||
"Champlin, Von and Ruecker"
|
|
||||||
Satterfield-DuBuque
|
Satterfield-DuBuque
|
||||||
"Bogan, Schowalter and Dach"
|
|
||||||
Collier Inc
|
Collier Inc
|
||||||
Herzog-Denesik
|
Herzog-Denesik
|
||||||
Gibson and Sons
|
Gibson and Sons
|
||||||
Miller LLC
|
Miller LLC
|
||||||
Hyatt LLC
|
Hyatt LLC
|
||||||
|
|
||||||
"Kling, Hamill and Bailey"
|
|
||||||
Walter Group
|
Walter Group
|
||||||
DuBuque Inc
|
DuBuque Inc
|
||||||
"Cruickshank, Ullrich and Schultz"
|
|
||||||
"Johns, Bayer and Stehr"
|
|
||||||
"Auer, Waters and Hegmann"
|
|
||||||
Reichert Group
|
Reichert Group
|
||||||
Hoppe Group
|
Hoppe Group
|
||||||
Beier-Zieme
|
Beier-Zieme
|
||||||
"Dibbert, Schroeder and Tillman"
|
|
||||||
Hammes Group
|
Hammes Group
|
||||||
"Homenick, Treutel and Hauck"
|
|
||||||
Abshire-Bradtke
|
Abshire-Bradtke
|
||||||
Hegmann and Sons
|
Hegmann and Sons
|
||||||
Schneider LLC
|
Schneider LLC
|
||||||
@ -621,21 +419,14 @@ Larkin LLC
|
|||||||
Gislason-Cummings
|
Gislason-Cummings
|
||||||
Hickle-Simonis
|
Hickle-Simonis
|
||||||
Stokes-Bahringer
|
Stokes-Bahringer
|
||||||
"Metz, Kunde and Huels"
|
|
||||||
"Lebsack, Sauer and VonRueden"
|
|
||||||
"Orn, Watsica and Tremblay"
|
|
||||||
Greenholt Inc
|
Greenholt Inc
|
||||||
Kozey Inc
|
Kozey Inc
|
||||||
Berge-Shields
|
Berge-Shields
|
||||||
"Hammes, Maggio and Purdy"
|
|
||||||
"Simonis, Langworth and Anderson"
|
|
||||||
Sauer-Hilpert
|
Sauer-Hilpert
|
||||||
Rau Inc
|
Rau Inc
|
||||||
Christiansen-Ortiz
|
Christiansen-Ortiz
|
||||||
Windler-Schneider
|
Windler-Schneider
|
||||||
"Dickens, Legros and Auer"
|
|
||||||
Waters Inc
|
Waters Inc
|
||||||
"Gusikowski, Schumm and Sporer"
|
|
||||||
Bayer LLC
|
Bayer LLC
|
||||||
Stokes Inc
|
Stokes Inc
|
||||||
|
|
||||||
@ -644,60 +435,43 @@ Buckridge-Schowalter
|
|||||||
|
|
||||||
Frami and Sons
|
Frami and Sons
|
||||||
Ruecker Group
|
Ruecker Group
|
||||||
"O'Keefe, Kerluke and Glover"
|
|
||||||
Bosco-Walter
|
Bosco-Walter
|
||||||
Hoeger-Reynolds
|
Hoeger-Reynolds
|
||||||
Reilly-Stiedemann
|
Reilly-Stiedemann
|
||||||
"Kilback, Watsica and Sipes"
|
|
||||||
Krajcik LLC
|
Krajcik LLC
|
||||||
"Gutkowski, Ziemann and Bashirian"
|
|
||||||
Terry-Hermann
|
Terry-Hermann
|
||||||
Kuhn-Baumbach
|
Kuhn-Baumbach
|
||||||
Lebsack LLC
|
Lebsack LLC
|
||||||
"Lindgren, Olson and Franecki"
|
|
||||||
"Bernhard, Bosco and Klocko"
|
|
||||||
Hagenes-Gottlieb
|
Hagenes-Gottlieb
|
||||||
Kirlin Group
|
Kirlin Group
|
||||||
|
|
||||||
Klocko LLC
|
Klocko LLC
|
||||||
Harvey-Daugherty
|
Harvey-Daugherty
|
||||||
"Stark, Hauck and Wolff"
|
|
||||||
"Ziemann, Heidenreich and Witting"
|
|
||||||
Torp-Rowe
|
Torp-Rowe
|
||||||
"Boehm, MacGyver and Gottlieb"
|
|
||||||
Franecki LLC
|
Franecki LLC
|
||||||
Padberg-Bechtelar
|
Padberg-Bechtelar
|
||||||
Kling Inc
|
Kling Inc
|
||||||
Buckridge-Stamm
|
Buckridge-Stamm
|
||||||
"Fadel, Bode and Wyman"
|
|
||||||
Kuphal and Sons
|
Kuphal and Sons
|
||||||
|
|
||||||
Stamm-Reichert
|
Stamm-Reichert
|
||||||
Windler Group
|
Windler Group
|
||||||
Turner LLC
|
Turner LLC
|
||||||
Lehner and Sons
|
Lehner and Sons
|
||||||
"Batz, Luettgen and MacGyver"
|
|
||||||
Nader-Sipes
|
Nader-Sipes
|
||||||
"Witting, Berge and Ullrich"
|
|
||||||
"Murray, Pagac and Donnelly"
|
|
||||||
|
|
||||||
"Howe, Jast and Quigley"
|
|
||||||
Schuppe-Hettinger
|
Schuppe-Hettinger
|
||||||
Nicolas LLC
|
Nicolas LLC
|
||||||
Metz and Sons
|
Metz and Sons
|
||||||
Trantow-Hahn
|
Trantow-Hahn
|
||||||
"Lebsack, Baumbach and Schaefer"
|
|
||||||
Predovic-Johnston
|
Predovic-Johnston
|
||||||
|
|
||||||
Farrell and Sons
|
Farrell and Sons
|
||||||
"Hartmann, Cole and Shanahan"
|
|
||||||
Heaney Inc
|
Heaney Inc
|
||||||
Moen-Kassulke
|
Moen-Kassulke
|
||||||
Keebler Inc
|
Keebler Inc
|
||||||
Blanda-Herman
|
Blanda-Herman
|
||||||
"Bartoletti, Rempel and Bartoletti"
|
|
||||||
Hand LLC
|
Hand LLC
|
||||||
"Wolf, Medhurst and Hilpert"
|
|
||||||
White LLC
|
White LLC
|
||||||
Wintheiser Group
|
Wintheiser Group
|
||||||
Hahn-Treutel
|
Hahn-Treutel
|
||||||
@ -705,54 +479,31 @@ Donnelly and Sons
|
|||||||
Homenick-Torp
|
Homenick-Torp
|
||||||
Beahan-Toy
|
Beahan-Toy
|
||||||
Moore-McDermott
|
Moore-McDermott
|
||||||
"Frami, Little and Murazik"
|
|
||||||
Stark Group
|
Stark Group
|
||||||
|
|
||||||
"McLaughlin, Cormier and Rempel"
|
|
||||||
Muller Group
|
Muller Group
|
||||||
"Romaguera, Wunsch and Leuschke"
|
|
||||||
Prosacco-Bogisich
|
Prosacco-Bogisich
|
||||||
Connelly-Howell
|
Connelly-Howell
|
||||||
Farrell-O'Hara
|
|
||||||
Dietrich-Toy
|
Dietrich-Toy
|
||||||
Wolf and Sons
|
Wolf and Sons
|
||||||
"Gleichner, Zemlak and Lind"
|
|
||||||
"Schimmel, Langworth and Deckow"
|
|
||||||
"Hills, Pouros and Gutkowski"
|
|
||||||
Conroy LLC
|
Conroy LLC
|
||||||
"Kuhn, Strosin and Blick"
|
|
||||||
"Fritsch, Hayes and Braun"
|
|
||||||
Toy Inc
|
Toy Inc
|
||||||
Rippin Inc
|
Rippin Inc
|
||||||
Hickle Group
|
Hickle Group
|
||||||
"Jaskolski, Macejkovic and Swaniawski"
|
|
||||||
"Sanford, Skiles and Stroman"
|
|
||||||
"Beatty, Heller and Hudson"
|
|
||||||
Anderson LLC
|
Anderson LLC
|
||||||
"Gottlieb, Gutkowski and Stroman"
|
|
||||||
Ullrich Group
|
Ullrich Group
|
||||||
Kutch Group
|
Kutch Group
|
||||||
Hudson Group
|
Hudson Group
|
||||||
Sauer Group
|
Sauer Group
|
||||||
Cruickshank-Harris
|
Cruickshank-Harris
|
||||||
"Wiza, McClure and Lang"
|
|
||||||
"Franecki, Stanton and Jacobs"
|
|
||||||
Schulist-Feest
|
Schulist-Feest
|
||||||
Marquardt Group
|
Marquardt Group
|
||||||
Senger and Sons
|
Senger and Sons
|
||||||
"Klocko, Runte and Bins"
|
|
||||||
"Bode, Murray and Dicki"
|
|
||||||
"Gerhold, Nikolaus and Blick"
|
|
||||||
Bogisich-Kessler
|
Bogisich-Kessler
|
||||||
"DuBuque, Ernser and McLaughlin"
|
|
||||||
"Dare, Murphy and Brekke"
|
|
||||||
"Borer, Robel and Nitzsche"
|
|
||||||
Jenkins-Zulauf
|
Jenkins-Zulauf
|
||||||
Gleichner-McCullough
|
Gleichner-McCullough
|
||||||
Schamberger-Pfannerstill
|
Schamberger-Pfannerstill
|
||||||
"Zemlak, Windler and Schaden"
|
|
||||||
Reichert-McClure
|
Reichert-McClure
|
||||||
"Schultz, Little and Bergstrom"
|
|
||||||
Kub-McCullough
|
Kub-McCullough
|
||||||
Cummerata-Hoeger
|
Cummerata-Hoeger
|
||||||
Thiel Group
|
Thiel Group
|
||||||
@ -760,13 +511,10 @@ Little Inc
|
|||||||
Ondricka-Jast
|
Ondricka-Jast
|
||||||
Dibbert LLC
|
Dibbert LLC
|
||||||
Auer and Sons
|
Auer and Sons
|
||||||
"Larkin, Cremin and Wehner"
|
|
||||||
"Goodwin, Heathcote and Koss"
|
|
||||||
Murray-Kutch
|
Murray-Kutch
|
||||||
Dare-Streich
|
Dare-Streich
|
||||||
Schroeder Group
|
Schroeder Group
|
||||||
Gorczany Inc
|
Gorczany Inc
|
||||||
"Bernier, Dickinson and Gerlach"
|
|
||||||
Kuhic-Von
|
Kuhic-Von
|
||||||
Wyman-Bins
|
Wyman-Bins
|
||||||
Weber and Sons
|
Weber and Sons
|
||||||
@ -775,66 +523,41 @@ Padberg-Gislason
|
|||||||
Donnelly-Heaney
|
Donnelly-Heaney
|
||||||
Hayes-Weissnat
|
Hayes-Weissnat
|
||||||
Veum-Ankunding
|
Veum-Ankunding
|
||||||
"Kunze, Marks and Stanton"
|
|
||||||
|
|
||||||
|
|
||||||
"Shields, Rempel and Sipes"
|
|
||||||
Walsh Inc
|
Walsh Inc
|
||||||
"Lesch, Murazik and Schoen"
|
|
||||||
"McLaughlin, Wunsch and Konopelski"
|
|
||||||
Predovic-Reichert
|
Predovic-Reichert
|
||||||
Spencer Inc
|
Spencer Inc
|
||||||
Trantow-Murazik
|
Trantow-Murazik
|
||||||
|
|
||||||
Vandervort Inc
|
Vandervort Inc
|
||||||
"Baumbach, Ernser and Green"
|
|
||||||
|
|
||||||
Brown LLC
|
Brown LLC
|
||||||
Wiegand-Renner
|
Wiegand-Renner
|
||||||
Boehm-Durgan
|
Boehm-Durgan
|
||||||
Mayert Group
|
Mayert Group
|
||||||
Cummerata and Sons
|
Cummerata and Sons
|
||||||
"Hyatt, Dicki and Dickinson"
|
|
||||||
"Kovacek, Jakubowski and Swaniawski"
|
|
||||||
Nolan-Boyer
|
Nolan-Boyer
|
||||||
Pfannerstill Group
|
Pfannerstill Group
|
||||||
Rutherford Inc
|
Rutherford Inc
|
||||||
"Pollich, Kling and Koss"
|
|
||||||
Oberbrunner-Schumm
|
Oberbrunner-Schumm
|
||||||
Oberbrunner LLC
|
Oberbrunner LLC
|
||||||
"Paucek, O'Hara and Grimes"
|
|
||||||
|
|
||||||
|
|
||||||
"O'Keefe, Cruickshank and Gutmann"
|
|
||||||
Balistreri-Quitzon
|
Balistreri-Quitzon
|
||||||
Mante-Bednar
|
Mante-Bednar
|
||||||
Friesen-Rempel
|
Friesen-Rempel
|
||||||
"Rolfson, Gutkowski and Jenkins"
|
|
||||||
"DuBuque, Luettgen and Hagenes"
|
|
||||||
"Sipes, Jacobi and Monahan"
|
|
||||||
"Lemke, Balistreri and Greenholt"
|
|
||||||
Schumm Inc
|
Schumm Inc
|
||||||
Pouros Inc
|
Pouros Inc
|
||||||
Zboncak-Purdy
|
Zboncak-Purdy
|
||||||
"Hyatt, Weber and Corwin"
|
|
||||||
Olson Inc
|
Olson Inc
|
||||||
Emmerich and Sons
|
Emmerich and Sons
|
||||||
"Ebert, Gleichner and Pfeffer"
|
|
||||||
"Denesik, Kreiger and Bashirian"
|
|
||||||
Schneider and Sons
|
Schneider and Sons
|
||||||
"Bode, Swaniawski and Nicolas"
|
|
||||||
"Goldner, Nitzsche and Fisher"
|
|
||||||
Runte-Schoen
|
Runte-Schoen
|
||||||
"Kohler, Weissnat and Rempel"
|
|
||||||
"Strosin, Langosh and Jacobs"
|
|
||||||
Streich-Douglas
|
Streich-Douglas
|
||||||
Homenick-Simonis
|
Homenick-Simonis
|
||||||
"Stokes, O'Kon and Larkin"
|
|
||||||
"Murphy, Wuckert and Fahey"
|
|
||||||
"Blanda, O'Connell and Lang"
|
|
||||||
Schiller and Sons
|
Schiller and Sons
|
||||||
Spinka LLC
|
Spinka LLC
|
||||||
"Jenkins, Harvey and Dibbert"
|
|
||||||
Senger Inc
|
Senger Inc
|
||||||
Heller-Kling
|
Heller-Kling
|
||||||
Ebert-Haley
|
Ebert-Haley
|
||||||
@ -848,63 +571,36 @@ Hayes-Roob
|
|||||||
Crist LLC
|
Crist LLC
|
||||||
Kerluke and Sons
|
Kerluke and Sons
|
||||||
Jakubowski Group
|
Jakubowski Group
|
||||||
"Stiedemann, Denesik and Stroman"
|
|
||||||
Sawayn-Bergnaum
|
Sawayn-Bergnaum
|
||||||
O'Keefe-Will
|
|
||||||
"Jacobs, Watsica and Schultz"
|
|
||||||
Stanton Inc
|
Stanton Inc
|
||||||
"Cole, Hamill and Lemke"
|
|
||||||
Lindgren-Rau
|
Lindgren-Rau
|
||||||
Morissette-Haley
|
Morissette-Haley
|
||||||
"Gleason, Schowalter and Bogan"
|
|
||||||
Daniel and Sons
|
Daniel and Sons
|
||||||
"Kunde, Collins and Jerde"
|
|
||||||
Zboncak-Emard
|
Zboncak-Emard
|
||||||
Predovic-Mann
|
Predovic-Mann
|
||||||
Kling Inc
|
Kling Inc
|
||||||
|
|
||||||
McClure LLC
|
McClure LLC
|
||||||
"Pfannerstill, Rutherford and Stoltenberg"
|
|
||||||
"Ebert, Hammes and Dare"
|
|
||||||
Osinski-Bailey
|
Osinski-Bailey
|
||||||
Mueller Inc
|
Mueller Inc
|
||||||
McClure-Waters
|
McClure-Waters
|
||||||
Hahn-Schulist
|
Hahn-Schulist
|
||||||
Spencer and Sons
|
Spencer and Sons
|
||||||
Williamson-Goodwin
|
Williamson-Goodwin
|
||||||
"Krajcik, Reinger and Mertz"
|
|
||||||
Zemlak Inc
|
Zemlak Inc
|
||||||
"Toy, Beer and Strosin"
|
|
||||||
"Cremin, Deckow and Nicolas"
|
|
||||||
Watsica-Schamberger
|
Watsica-Schamberger
|
||||||
"Rosenbaum, Wyman and Lueilwitz"
|
|
||||||
"Turner, Von and Kilback"
|
|
||||||
"O'Keefe, Gulgowski and Flatley"
|
|
||||||
"Kuhn, Kirlin and Zemlak"
|
|
||||||
Koelpin-Marquardt
|
Koelpin-Marquardt
|
||||||
Connelly and Sons
|
Connelly and Sons
|
||||||
Bradtke Inc
|
Bradtke Inc
|
||||||
"Baumbach, Ward and Hintz"
|
|
||||||
Cronin Group
|
Cronin Group
|
||||||
"Howe, Kris and Pfeffer"
|
|
||||||
"Witting, Hansen and Collier"
|
|
||||||
"Abernathy, Cartwright and Ruecker"
|
|
||||||
Donnelly Group
|
Donnelly Group
|
||||||
"Deckow, Gibson and Wolf"
|
|
||||||
"Goyette, McClure and Kutch"
|
|
||||||
Schmitt Group
|
Schmitt Group
|
||||||
"Dooley, Brakus and Boyle"
|
|
||||||
"Lesch, Reynolds and Metz"
|
|
||||||
Hermann-King
|
Hermann-King
|
||||||
Stamm-Littel
|
Stamm-Littel
|
||||||
Shields Group
|
Shields Group
|
||||||
Rippin-Wiegand
|
Rippin-Wiegand
|
||||||
Cremin Group
|
Cremin Group
|
||||||
"Aufderhar, Bogisich and Kemmer"
|
|
||||||
Balistreri-McCullough
|
Balistreri-McCullough
|
||||||
O'Kon-Baumbach
|
|
||||||
"Boehm, Smitham and Maggio"
|
|
||||||
"Bruen, Bode and Deckow"
|
|
||||||
Howe-Runolfsdottir
|
Howe-Runolfsdottir
|
||||||
|
|
||||||
Zemlak Group
|
Zemlak Group
|
||||||
@ -915,13 +611,9 @@ Auer Group
|
|||||||
Keebler-Hyatt
|
Keebler-Hyatt
|
||||||
Schmitt-Ratke
|
Schmitt-Ratke
|
||||||
|
|
||||||
"Bayer, Wisozk and Hessel"
|
|
||||||
"Cummings, Harvey and Windler"
|
|
||||||
Price-Bins
|
Price-Bins
|
||||||
"Pfeffer, Abshire and Barton"
|
|
||||||
Vandervort Group
|
Vandervort Group
|
||||||
Emard-Powlowski
|
Emard-Powlowski
|
||||||
"Mertz, Veum and Walker"
|
|
||||||
Harvey Inc
|
Harvey Inc
|
||||||
Tillman Inc
|
Tillman Inc
|
||||||
Kris LLC
|
Kris LLC
|
||||||
@ -929,73 +621,43 @@ Fisher and Sons
|
|||||||
Morissette LLC
|
Morissette LLC
|
||||||
Willms LLC
|
Willms LLC
|
||||||
Strosin-Howe
|
Strosin-Howe
|
||||||
"Koelpin, Reilly and Hoeger"
|
|
||||||
Thompson Inc
|
Thompson Inc
|
||||||
Kihn Group
|
Kihn Group
|
||||||
Donnelly and Sons
|
Donnelly and Sons
|
||||||
Labadie Group
|
Labadie Group
|
||||||
Gerhold and Sons
|
Gerhold and Sons
|
||||||
Murray Inc
|
Murray Inc
|
||||||
"Hamill, Jacobs and Wyman"
|
|
||||||
Kirlin-Lemke
|
Kirlin-Lemke
|
||||||
"Maggio, Daugherty and Huels"
|
|
||||||
O'Keefe Inc
|
|
||||||
Torphy-Lockman
|
Torphy-Lockman
|
||||||
Reinger Inc
|
Reinger Inc
|
||||||
Schuster-Jaskolski
|
Schuster-Jaskolski
|
||||||
Huels-Tromp
|
Huels-Tromp
|
||||||
Wehner-Harber
|
Wehner-Harber
|
||||||
"Blick, Hermiston and Volkman"
|
|
||||||
Leuschke Inc
|
Leuschke Inc
|
||||||
"Hirthe, Cummerata and Pacocha"
|
|
||||||
"Pagac, Emard and Becker"
|
|
||||||
|
|
||||||
|
|
||||||
Volkman-Kertzmann
|
Volkman-Kertzmann
|
||||||
Gerlach-Toy
|
Gerlach-Toy
|
||||||
Casper-Ondricka
|
Casper-Ondricka
|
||||||
|
|
||||||
"Brekke, Kuhn and Lesch"
|
|
||||||
Wolf Inc
|
Wolf Inc
|
||||||
"Klocko, Medhurst and Schmidt"
|
|
||||||
"Hirthe, Dicki and D'Amore"
|
|
||||||
"Kertzmann, Harber and Hammes"
|
|
||||||
Wisozk Group
|
Wisozk Group
|
||||||
"Kuphal, Hessel and Daugherty"
|
|
||||||
O'Kon LLC
|
|
||||||
"Wunsch, Koss and Boyer"
|
|
||||||
"Howell, Dickinson and Kuhlman"
|
|
||||||
Wuckert Inc
|
Wuckert Inc
|
||||||
"Mueller, Ferry and DuBuque"
|
|
||||||
Effertz Group
|
Effertz Group
|
||||||
Schuppe and Sons
|
Schuppe and Sons
|
||||||
"McClure, Goyette and O'Connell"
|
|
||||||
"Mohr, Towne and Corwin"
|
|
||||||
|
|
||||||
"Schaden, Hansen and Flatley"
|
|
||||||
Rodriguez LLC
|
Rodriguez LLC
|
||||||
Goldner-Purdy
|
Goldner-Purdy
|
||||||
Welch Inc
|
Welch Inc
|
||||||
"Mills, Barton and Kovacek"
|
|
||||||
"Mann, Kreiger and Jacobson"
|
|
||||||
Mann-Kling
|
Mann-Kling
|
||||||
|
|
||||||
"Bosco, Pagac and Ritchie"
|
|
||||||
"Runte, Dooley and Stokes"
|
|
||||||
Heidenreich and Sons
|
Heidenreich and Sons
|
||||||
Williamson-Barton
|
Williamson-Barton
|
||||||
McDermott-Dickinson
|
McDermott-Dickinson
|
||||||
Torp-Vandervort
|
Torp-Vandervort
|
||||||
Wisozk Group
|
Wisozk Group
|
||||||
Reichert and Sons
|
Reichert and Sons
|
||||||
"Friesen, Paucek and Waelchi"
|
|
||||||
Kirlin-Greenholt
|
Kirlin-Greenholt
|
||||||
"Schumm, Hettinger and Howell"
|
|
||||||
"Stark, Beier and Bahringer"
|
|
||||||
"Macejkovic, Greenholt and Herzog"
|
|
||||||
"Paucek, McDermott and Armstrong"
|
|
||||||
Volkman Inc
|
Volkman Inc
|
||||||
Braun-Greenholt
|
Braun-Greenholt
|
||||||
"Schulist, Glover and D'Amore"
|
|
||||||
Schmeler-Beatty
|
Schmeler-Beatty
|
||||||
"Hoeger, Corkery and Doyle"
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
|||||||
date
|
date
|
||||||
01/15/2011
|
01/15/2011
|
||||||
|
|
||||||
01/02/1973
|
01/02/1973
|
||||||
06/02/2004
|
06/02/2004
|
||||||
08/01/2022
|
08/01/2022
|
||||||
@ -16,7 +15,6 @@ date
|
|||||||
12/07/2007
|
12/07/2007
|
||||||
05/09/2020
|
05/09/2020
|
||||||
05/12/2012
|
05/12/2012
|
||||||
|
|
||||||
10/03/2000
|
10/03/2000
|
||||||
04/14/1986
|
04/14/1986
|
||||||
09/04/1997
|
09/04/1997
|
||||||
@ -58,7 +56,6 @@ date
|
|||||||
04/21/1976
|
04/21/1976
|
||||||
06/28/1975
|
06/28/1975
|
||||||
06/11/1984
|
06/11/1984
|
||||||
|
|
||||||
03/22/2016
|
03/22/2016
|
||||||
04/30/2016
|
04/30/2016
|
||||||
05/06/2001
|
05/06/2001
|
||||||
@ -70,21 +67,17 @@ date
|
|||||||
08/22/1982
|
08/22/1982
|
||||||
04/17/1975
|
04/17/1975
|
||||||
10/16/2010
|
10/16/2010
|
||||||
|
|
||||||
02/11/1988
|
02/11/1988
|
||||||
05/12/2006
|
05/12/2006
|
||||||
09/11/2006
|
09/11/2006
|
||||||
04/01/1983
|
04/01/1983
|
||||||
|
|
||||||
03/19/2018
|
03/19/2018
|
||||||
06/13/1986
|
06/13/1986
|
||||||
10/25/2020
|
10/25/2020
|
||||||
12/17/2012
|
12/17/2012
|
||||||
06/10/2004
|
06/10/2004
|
||||||
|
|
||||||
04/18/2018
|
04/18/2018
|
||||||
01/29/2006
|
01/29/2006
|
||||||
|
|
||||||
07/10/1980
|
07/10/1980
|
||||||
02/27/1985
|
02/27/1985
|
||||||
08/06/1992
|
08/06/1992
|
||||||
@ -124,7 +117,6 @@ date
|
|||||||
10/17/1988
|
10/17/1988
|
||||||
07/29/2019
|
07/29/2019
|
||||||
10/21/1990
|
10/21/1990
|
||||||
|
|
||||||
06/29/1999
|
06/29/1999
|
||||||
12/11/1995
|
12/11/1995
|
||||||
07/31/2015
|
07/31/2015
|
||||||
@ -157,8 +149,6 @@ date
|
|||||||
01/15/2001
|
01/15/2001
|
||||||
02/25/1987
|
02/25/1987
|
||||||
06/05/2005
|
06/05/2005
|
||||||
|
|
||||||
|
|
||||||
06/17/1983
|
06/17/1983
|
||||||
01/31/1987
|
01/31/1987
|
||||||
08/03/1981
|
08/03/1981
|
||||||
@ -190,13 +180,11 @@ date
|
|||||||
04/02/2015
|
04/02/2015
|
||||||
04/05/2010
|
04/05/2010
|
||||||
10/05/1982
|
10/05/1982
|
||||||
|
|
||||||
12/30/1976
|
12/30/1976
|
||||||
05/27/1980
|
05/27/1980
|
||||||
08/15/1976
|
08/15/1976
|
||||||
01/05/1975
|
01/05/1975
|
||||||
01/02/1994
|
01/02/1994
|
||||||
|
|
||||||
09/23/2024
|
09/23/2024
|
||||||
11/12/2020
|
11/12/2020
|
||||||
11/22/2020
|
11/22/2020
|
||||||
@ -219,8 +207,6 @@ date
|
|||||||
02/01/2023
|
02/01/2023
|
||||||
06/11/1972
|
06/11/1972
|
||||||
02/28/1977
|
02/28/1977
|
||||||
|
|
||||||
|
|
||||||
05/07/2013
|
05/07/2013
|
||||||
06/25/1990
|
06/25/1990
|
||||||
11/13/1994
|
11/13/1994
|
||||||
@ -278,7 +264,6 @@ date
|
|||||||
09/11/1970
|
09/11/1970
|
||||||
09/25/1998
|
09/25/1998
|
||||||
09/19/1986
|
09/19/1986
|
||||||
|
|
||||||
11/01/1980
|
11/01/1980
|
||||||
03/25/1988
|
03/25/1988
|
||||||
08/01/1974
|
08/01/1974
|
||||||
@ -304,14 +289,10 @@ date
|
|||||||
06/25/1976
|
06/25/1976
|
||||||
03/09/1998
|
03/09/1998
|
||||||
10/08/2008
|
10/08/2008
|
||||||
|
|
||||||
03/28/1981
|
03/28/1981
|
||||||
|
|
||||||
07/21/1991
|
07/21/1991
|
||||||
02/03/2022
|
02/03/2022
|
||||||
01/25/1995
|
01/25/1995
|
||||||
|
|
||||||
|
|
||||||
11/02/2007
|
11/02/2007
|
||||||
02/20/1987
|
02/20/1987
|
||||||
08/05/1992
|
08/05/1992
|
||||||
@ -326,14 +307,12 @@ date
|
|||||||
04/19/1989
|
04/19/1989
|
||||||
09/16/1998
|
09/16/1998
|
||||||
09/11/1998
|
09/11/1998
|
||||||
|
|
||||||
06/04/1982
|
06/04/1982
|
||||||
09/09/1989
|
09/09/1989
|
||||||
01/09/1983
|
01/09/1983
|
||||||
03/25/1981
|
03/25/1981
|
||||||
11/03/2005
|
11/03/2005
|
||||||
02/06/1970
|
02/06/1970
|
||||||
|
|
||||||
10/13/2011
|
10/13/2011
|
||||||
11/04/1975
|
11/04/1975
|
||||||
03/12/2004
|
03/12/2004
|
||||||
@ -343,7 +322,6 @@ date
|
|||||||
07/27/1991
|
07/27/1991
|
||||||
05/09/1984
|
05/09/1984
|
||||||
11/20/1989
|
11/20/1989
|
||||||
|
|
||||||
12/23/1981
|
12/23/1981
|
||||||
07/20/1984
|
07/20/1984
|
||||||
11/24/1976
|
11/24/1976
|
||||||
@ -362,7 +340,6 @@ date
|
|||||||
07/15/1988
|
07/15/1988
|
||||||
12/25/1982
|
12/25/1982
|
||||||
06/28/2000
|
06/28/2000
|
||||||
|
|
||||||
09/11/1983
|
09/11/1983
|
||||||
07/28/1978
|
07/28/1978
|
||||||
04/23/2016
|
04/23/2016
|
||||||
@ -383,7 +360,6 @@ date
|
|||||||
03/24/1984
|
03/24/1984
|
||||||
11/10/1969
|
11/10/1969
|
||||||
03/04/1989
|
03/04/1989
|
||||||
|
|
||||||
04/23/2009
|
04/23/2009
|
||||||
02/16/2020
|
02/16/2020
|
||||||
12/18/1984
|
12/18/1984
|
||||||
@ -410,7 +386,6 @@ date
|
|||||||
06/02/1977
|
06/02/1977
|
||||||
03/20/2024
|
03/20/2024
|
||||||
06/29/2000
|
06/29/2000
|
||||||
|
|
||||||
09/19/1995
|
09/19/1995
|
||||||
10/06/2020
|
10/06/2020
|
||||||
04/18/1997
|
04/18/1997
|
||||||
@ -424,7 +399,6 @@ date
|
|||||||
12/03/1976
|
12/03/1976
|
||||||
06/21/2012
|
06/21/2012
|
||||||
06/23/2019
|
06/23/2019
|
||||||
|
|
||||||
01/14/2019
|
01/14/2019
|
||||||
09/21/2002
|
09/21/2002
|
||||||
03/13/2004
|
03/13/2004
|
||||||
@ -490,7 +464,6 @@ date
|
|||||||
09/19/2013
|
09/19/2013
|
||||||
09/15/1994
|
09/15/1994
|
||||||
08/18/1993
|
08/18/1993
|
||||||
|
|
||||||
09/11/1998
|
09/11/1998
|
||||||
03/02/2016
|
03/02/2016
|
||||||
07/18/2012
|
07/18/2012
|
||||||
@ -502,12 +475,9 @@ date
|
|||||||
03/21/1987
|
03/21/1987
|
||||||
06/12/2014
|
06/12/2014
|
||||||
07/19/1987
|
07/19/1987
|
||||||
|
|
||||||
|
|
||||||
03/15/2021
|
03/15/2021
|
||||||
10/27/1992
|
10/27/1992
|
||||||
12/11/1990
|
12/11/1990
|
||||||
|
|
||||||
12/04/2017
|
12/04/2017
|
||||||
07/29/1979
|
07/29/1979
|
||||||
10/24/1979
|
10/24/1979
|
||||||
@ -517,7 +487,6 @@ date
|
|||||||
05/22/2002
|
05/22/2002
|
||||||
11/19/1985
|
11/19/1985
|
||||||
01/29/2004
|
01/29/2004
|
||||||
|
|
||||||
05/02/2008
|
05/02/2008
|
||||||
03/20/1980
|
03/20/1980
|
||||||
05/10/1990
|
05/10/1990
|
||||||
@ -548,7 +517,6 @@ date
|
|||||||
07/06/1982
|
07/06/1982
|
||||||
06/25/2015
|
06/25/2015
|
||||||
01/25/2001
|
01/25/2001
|
||||||
|
|
||||||
03/07/1988
|
03/07/1988
|
||||||
11/17/1987
|
11/17/1987
|
||||||
10/29/1991
|
10/29/1991
|
||||||
@ -576,14 +544,11 @@ date
|
|||||||
11/21/1995
|
11/21/1995
|
||||||
09/21/2020
|
09/21/2020
|
||||||
07/03/1991
|
07/03/1991
|
||||||
|
|
||||||
01/11/1985
|
01/11/1985
|
||||||
02/06/1993
|
02/06/1993
|
||||||
|
|
||||||
09/03/2007
|
09/03/2007
|
||||||
05/19/1973
|
05/19/1973
|
||||||
04/02/1973
|
04/02/1973
|
||||||
|
|
||||||
07/18/2021
|
07/18/2021
|
||||||
05/06/1970
|
05/06/1970
|
||||||
06/30/1980
|
06/30/1980
|
||||||
@ -599,7 +564,6 @@ date
|
|||||||
12/20/1992
|
12/20/1992
|
||||||
04/04/2008
|
04/04/2008
|
||||||
01/08/1986
|
01/08/1986
|
||||||
|
|
||||||
01/28/2011
|
01/28/2011
|
||||||
10/10/2010
|
10/10/2010
|
||||||
12/21/2003
|
12/21/2003
|
||||||
@ -649,7 +613,6 @@ date
|
|||||||
01/11/1990
|
01/11/1990
|
||||||
11/03/2005
|
11/03/2005
|
||||||
06/27/2000
|
06/27/2000
|
||||||
|
|
||||||
01/14/2015
|
01/14/2015
|
||||||
09/11/2024
|
09/11/2024
|
||||||
04/30/1997
|
04/30/1997
|
||||||
@ -661,7 +624,6 @@ date
|
|||||||
07/12/1981
|
07/12/1981
|
||||||
05/25/2005
|
05/25/2005
|
||||||
04/03/1985
|
04/03/1985
|
||||||
|
|
||||||
09/30/1992
|
09/30/1992
|
||||||
04/17/1983
|
04/17/1983
|
||||||
01/17/2003
|
01/17/2003
|
||||||
@ -696,7 +658,6 @@ date
|
|||||||
11/14/1978
|
11/14/1978
|
||||||
04/06/2012
|
04/06/2012
|
||||||
11/18/1981
|
11/18/1981
|
||||||
|
|
||||||
01/06/1982
|
01/06/1982
|
||||||
05/08/1995
|
05/08/1995
|
||||||
07/12/2006
|
07/12/2006
|
||||||
@ -704,14 +665,11 @@ date
|
|||||||
12/05/1987
|
12/05/1987
|
||||||
01/14/2005
|
01/14/2005
|
||||||
09/25/1978
|
09/25/1978
|
||||||
|
|
||||||
05/09/1997
|
05/09/1997
|
||||||
09/11/1998
|
09/11/1998
|
||||||
02/03/1990
|
02/03/1990
|
||||||
|
|
||||||
05/28/1990
|
05/28/1990
|
||||||
03/26/1999
|
03/26/1999
|
||||||
|
|
||||||
02/17/2000
|
02/17/2000
|
||||||
07/19/2007
|
07/19/2007
|
||||||
02/29/1992
|
02/29/1992
|
||||||
@ -719,16 +677,13 @@ date
|
|||||||
04/24/2017
|
04/24/2017
|
||||||
03/15/2010
|
03/15/2010
|
||||||
11/21/2020
|
11/21/2020
|
||||||
|
|
||||||
10/22/2003
|
10/22/2003
|
||||||
02/03/1983
|
02/03/1983
|
||||||
|
|
||||||
02/26/1971
|
02/26/1971
|
||||||
09/19/1996
|
09/19/1996
|
||||||
08/10/1974
|
08/10/1974
|
||||||
10/25/2003
|
10/25/2003
|
||||||
12/04/2019
|
12/04/2019
|
||||||
|
|
||||||
07/12/2004
|
07/12/2004
|
||||||
05/29/1997
|
05/29/1997
|
||||||
12/18/1980
|
12/18/1980
|
||||||
@ -736,7 +691,6 @@ date
|
|||||||
10/13/1993
|
10/13/1993
|
||||||
06/01/1977
|
06/01/1977
|
||||||
09/14/1983
|
09/14/1983
|
||||||
|
|
||||||
01/14/1979
|
01/14/1979
|
||||||
07/20/2017
|
07/20/2017
|
||||||
01/14/1993
|
01/14/1993
|
||||||
@ -757,7 +711,6 @@ date
|
|||||||
08/25/1984
|
08/25/1984
|
||||||
09/10/2008
|
09/10/2008
|
||||||
09/15/1990
|
09/15/1990
|
||||||
|
|
||||||
08/05/2002
|
08/05/2002
|
||||||
02/17/2024
|
02/17/2024
|
||||||
02/17/1972
|
02/17/1972
|
||||||
@ -766,7 +719,6 @@ date
|
|||||||
10/13/2000
|
10/13/2000
|
||||||
08/25/2019
|
08/25/2019
|
||||||
06/13/1993
|
06/13/1993
|
||||||
|
|
||||||
09/29/1987
|
09/29/1987
|
||||||
06/07/2003
|
06/07/2003
|
||||||
02/14/1986
|
02/14/1986
|
||||||
@ -789,7 +741,6 @@ date
|
|||||||
05/31/1992
|
05/31/1992
|
||||||
11/21/1969
|
11/21/1969
|
||||||
05/31/2022
|
05/31/2022
|
||||||
|
|
||||||
06/09/1984
|
06/09/1984
|
||||||
06/15/2014
|
06/15/2014
|
||||||
07/23/1994
|
07/23/1994
|
||||||
@ -812,7 +763,6 @@ date
|
|||||||
11/14/1982
|
11/14/1982
|
||||||
02/13/1973
|
02/13/1973
|
||||||
12/29/1979
|
12/29/1979
|
||||||
|
|
||||||
03/29/2005
|
03/29/2005
|
||||||
09/30/1970
|
09/30/1970
|
||||||
02/27/1982
|
02/27/1982
|
||||||
@ -841,11 +791,9 @@ date
|
|||||||
07/26/1986
|
07/26/1986
|
||||||
04/07/1976
|
04/07/1976
|
||||||
08/13/1989
|
08/13/1989
|
||||||
|
|
||||||
12/30/2015
|
12/30/2015
|
||||||
04/04/2003
|
04/04/2003
|
||||||
08/26/1991
|
08/26/1991
|
||||||
|
|
||||||
03/06/1992
|
03/06/1992
|
||||||
01/27/1987
|
01/27/1987
|
||||||
02/04/1986
|
02/04/1986
|
||||||
@ -875,12 +823,10 @@ date
|
|||||||
05/13/1975
|
05/13/1975
|
||||||
10/05/2011
|
10/05/2011
|
||||||
11/17/2020
|
11/17/2020
|
||||||
|
|
||||||
10/01/1971
|
10/01/1971
|
||||||
10/05/1987
|
10/05/1987
|
||||||
11/06/1973
|
11/06/1973
|
||||||
04/23/1995
|
04/23/1995
|
||||||
|
|
||||||
12/16/1996
|
12/16/1996
|
||||||
12/20/1985
|
12/20/1985
|
||||||
08/15/1980
|
08/15/1980
|
||||||
@ -928,7 +874,6 @@ date
|
|||||||
03/17/2001
|
03/17/2001
|
||||||
09/18/1997
|
09/18/1997
|
||||||
12/13/2014
|
12/13/2014
|
||||||
|
|
||||||
04/15/2024
|
04/15/2024
|
||||||
11/26/2009
|
11/26/2009
|
||||||
10/22/2000
|
10/22/2000
|
||||||
@ -937,7 +882,6 @@ date
|
|||||||
09/22/2016
|
09/22/2016
|
||||||
11/06/1969
|
11/06/1969
|
||||||
07/28/1995
|
07/28/1995
|
||||||
|
|
||||||
12/26/1995
|
12/26/1995
|
||||||
10/23/2005
|
10/23/2005
|
||||||
02/20/1988
|
02/20/1988
|
||||||
@ -968,7 +912,6 @@ date
|
|||||||
11/15/1971
|
11/15/1971
|
||||||
02/13/2000
|
02/13/2000
|
||||||
01/31/1989
|
01/31/1989
|
||||||
|
|
||||||
03/22/1974
|
03/22/1974
|
||||||
06/26/2021
|
06/26/2021
|
||||||
07/19/1999
|
07/19/1999
|
||||||
|
|
@ -47,7 +47,6 @@ Bruna
|
|||||||
Hembry
|
Hembry
|
||||||
Prandi
|
Prandi
|
||||||
Humbatch
|
Humbatch
|
||||||
O'Spillane
|
|
||||||
Stilgoe
|
Stilgoe
|
||||||
Puttock
|
Puttock
|
||||||
Klima
|
Klima
|
||||||
@ -73,7 +72,6 @@ Esposito
|
|||||||
Stoggell
|
Stoggell
|
||||||
Bernardotte
|
Bernardotte
|
||||||
Ucceli
|
Ucceli
|
||||||
O'Day
|
|
||||||
Swadlin
|
Swadlin
|
||||||
Pawlyn
|
Pawlyn
|
||||||
Langstone
|
Langstone
|
||||||
@ -130,12 +128,10 @@ Elmes
|
|||||||
Edeler
|
Edeler
|
||||||
Kemster
|
Kemster
|
||||||
Maskell
|
Maskell
|
||||||
O'Griffin
|
|
||||||
Braunthal
|
Braunthal
|
||||||
Penylton
|
Penylton
|
||||||
Tidbold
|
Tidbold
|
||||||
Hooke
|
Hooke
|
||||||
O'Dowgaine
|
|
||||||
Domingues
|
Domingues
|
||||||
Roget
|
Roget
|
||||||
Amdohr
|
Amdohr
|
||||||
@ -297,7 +293,6 @@ Bridson
|
|||||||
Clines
|
Clines
|
||||||
|
|
||||||
Thebe
|
Thebe
|
||||||
O' Hogan
|
|
||||||
Burg
|
Burg
|
||||||
Cumbers
|
Cumbers
|
||||||
Snalham
|
Snalham
|
||||||
@ -306,7 +301,6 @@ Raffles
|
|||||||
Viggars
|
Viggars
|
||||||
Brok
|
Brok
|
||||||
Geistmann
|
Geistmann
|
||||||
O' Reagan
|
|
||||||
Scutter
|
Scutter
|
||||||
Kelsall
|
Kelsall
|
||||||
Degenhardt
|
Degenhardt
|
||||||
@ -416,7 +410,6 @@ Ballston
|
|||||||
Thatcher
|
Thatcher
|
||||||
Sydney
|
Sydney
|
||||||
Jahn
|
Jahn
|
||||||
O'Leagham
|
|
||||||
Stokell
|
Stokell
|
||||||
Calfe
|
Calfe
|
||||||
Akker
|
Akker
|
||||||
@ -505,7 +498,6 @@ Meeus
|
|||||||
Iacovini
|
Iacovini
|
||||||
Hollow
|
Hollow
|
||||||
Latham
|
Latham
|
||||||
O'Sirin
|
|
||||||
Skoggings
|
Skoggings
|
||||||
Simmens
|
Simmens
|
||||||
Durbyn
|
Durbyn
|
||||||
@ -531,7 +523,6 @@ Pavlitschek
|
|||||||
Debill
|
Debill
|
||||||
Bennellick
|
Bennellick
|
||||||
Piburn
|
Piburn
|
||||||
O'Kenny
|
|
||||||
Monini
|
Monini
|
||||||
Sacchetti
|
Sacchetti
|
||||||
Cicchillo
|
Cicchillo
|
||||||
@ -637,7 +628,6 @@ Roadknight
|
|||||||
Eltune
|
Eltune
|
||||||
Gallear
|
Gallear
|
||||||
|
|
||||||
M'Quharge
|
|
||||||
Stonestreet
|
Stonestreet
|
||||||
Clewett
|
Clewett
|
||||||
Confort
|
Confort
|
||||||
@ -654,7 +644,6 @@ Lieber
|
|||||||
Stratten
|
Stratten
|
||||||
Lantaph
|
Lantaph
|
||||||
Renfield
|
Renfield
|
||||||
O'Dee
|
|
||||||
Vampouille
|
Vampouille
|
||||||
McSparran
|
McSparran
|
||||||
Hargitt
|
Hargitt
|
||||||
@ -826,7 +815,6 @@ Cumbridge
|
|||||||
Scadden
|
Scadden
|
||||||
Pate
|
Pate
|
||||||
Fike
|
Fike
|
||||||
O'Roan
|
|
||||||
Magauran
|
Magauran
|
||||||
Ramsden
|
Ramsden
|
||||||
Hilley
|
Hilley
|
||||||
@ -907,13 +895,11 @@ Wicks
|
|||||||
Anderl
|
Anderl
|
||||||
Baldin
|
Baldin
|
||||||
Webermann
|
Webermann
|
||||||
O'Loughlin
|
|
||||||
Cheney
|
Cheney
|
||||||
Kernar
|
Kernar
|
||||||
Balazin
|
Balazin
|
||||||
|
|
||||||
Sidry
|
Sidry
|
||||||
O'Kieran
|
|
||||||
Beecham
|
Beecham
|
||||||
Sollas
|
Sollas
|
||||||
Casotti
|
Casotti
|
||||||
|
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
DROP TABLE IF EXISTS acheter CASCADE;
|
DROP TABLE IF EXISTS acheter CASCADE;
|
||||||
DROP TABLE IF EXISTS avoir_motif CASCADE;
|
DROP TABLE IF EXISTS avoir_motif CASCADE;
|
||||||
|
DROP TABLE IF EXISTS avoir_tag CASCADE;
|
||||||
DROP TABLE IF EXISTS boites CASCADE;
|
DROP TABLE IF EXISTS boites CASCADE;
|
||||||
DROP TABLE IF EXISTS colorer CASCADE;
|
DROP TABLE IF EXISTS colorer CASCADE;
|
||||||
DROP TABLE IF EXISTS construire CASCADE;
|
DROP TABLE IF EXISTS construire CASCADE;
|
||||||
@ -16,14 +17,15 @@ DROP TABLE IF EXISTS etre_forme CASCADE;
|
|||||||
DROP TABLE IF EXISTS fils CASCADE;
|
DROP TABLE IF EXISTS fils CASCADE;
|
||||||
DROP TABLE IF EXISTS illustrations CASCADE;
|
DROP TABLE IF EXISTS illustrations CASCADE;
|
||||||
DROP TABLE IF EXISTS marques CASCADE;
|
DROP TABLE IF EXISTS marques CASCADE;
|
||||||
|
DROP TABLE IF EXISTS membres CASCADE;
|
||||||
DROP TABLE IF EXISTS messages CASCADE;
|
DROP TABLE IF EXISTS messages CASCADE;
|
||||||
DROP TABLE IF EXISTS modeles CASCADE;
|
DROP TABLE IF EXISTS modeles CASCADE;
|
||||||
DROP TABLE IF EXISTS necessiter CASCADE;
|
DROP TABLE IF EXISTS necessiter CASCADE;
|
||||||
DROP TABLE IF EXISTS noter CASCADE;
|
DROP TABLE IF EXISTS noter CASCADE;
|
||||||
DROP TABLE IF EXISTS perdre CASCADE;
|
DROP TABLE IF EXISTS perdre CASCADE;
|
||||||
|
DROP TABLE IF EXISTS tags CASCADE;
|
||||||
DROP TABLE IF EXISTS varier CASCADE;
|
DROP TABLE IF EXISTS varier CASCADE;
|
||||||
DROP TABLE IF EXISTS formes CASCADE;
|
DROP TABLE IF EXISTS formes CASCADE;
|
||||||
DROP TABLE IF EXISTS membres CASCADE;
|
|
||||||
DROP TABLE IF EXISTS motifs CASCADE;
|
DROP TABLE IF EXISTS motifs CASCADE;
|
||||||
DROP TABLE IF EXISTS pieces CASCADE;
|
DROP TABLE IF EXISTS pieces CASCADE;
|
||||||
DROP TABLE IF EXISTS pieces_complexes CASCADE;
|
DROP TABLE IF EXISTS pieces_complexes CASCADE;
|
||||||
|
@ -109,7 +109,7 @@ def generate_line_contenir() -> str:
|
|||||||
|
|
||||||
def generate_line_couleurs() -> str:
|
def generate_line_couleurs() -> str:
|
||||||
idCouleur : str = random_element(pathIntegers)
|
idCouleur : str = random_element(pathIntegers)
|
||||||
nomCouleur : str = random_element(pathColors)
|
nomCouleur : str = "\'" + random_element(pathColors) + "\'"
|
||||||
|
|
||||||
return construct_line(idCouleur, nomCouleur)
|
return construct_line(idCouleur, nomCouleur)
|
||||||
|
|
||||||
@ -146,26 +146,27 @@ def generate_line_fils() -> str:
|
|||||||
|
|
||||||
def generate_line_illustrations() -> str:
|
def generate_line_illustrations() -> str:
|
||||||
idIllustr : str = random_element(pathIntegers)
|
idIllustr : str = random_element(pathIntegers)
|
||||||
urlIllustr : str = random_element(pathUrls)
|
urlIllustr : str = "\'" + random_element(pathUrls) + "\'"
|
||||||
idModele : str = random_element(pathIntegers)
|
idModele : str = random_element(pathIntegers)
|
||||||
|
|
||||||
return construct_line(idIllustr, urlIllustr, idModele)
|
return construct_line(idIllustr, urlIllustr, idModele)
|
||||||
|
|
||||||
def generate_line_marques() -> str:
|
def generate_line_marques() -> str:
|
||||||
idMarque : str = random_element(pathIntegers)
|
idMarque : str = random_element(pathIntegers)
|
||||||
nomMarque : str = random_element(pathBrands)
|
nomMarque : str = "\'" + random_element(pathBrands) + "\'"
|
||||||
|
|
||||||
return construct_line(idMarque, nomMarque)
|
return construct_line(idMarque, nomMarque)
|
||||||
|
|
||||||
def generate_line_membres() -> str:
|
def generate_line_membres() -> str:
|
||||||
idMembre : str = random_element(pathIntegers)
|
idMembre : str = random_element(pathIntegers)
|
||||||
nomMembre : str = random_element(pathNames)
|
nomMembre : str = "\'" + random_element(pathNames) + "\'"
|
||||||
|
|
||||||
return construct_line(idMembre, nomMembre)
|
return construct_line(idMembre, nomMembre)
|
||||||
|
|
||||||
def generate_line_messages() -> str:
|
def generate_line_messages() -> str:
|
||||||
idMessages : str = random_element(pathIntegers)
|
idMessages : str = random_element(pathIntegers)
|
||||||
contenu : str = random_element(pathSentences)
|
contenu : str = "\'" + random_element(pathSentences) + "\'"
|
||||||
|
id_membre : str = random_element(pathIntegers)
|
||||||
idFil : str = random_element(pathIntegers)
|
idFil : str = random_element(pathIntegers)
|
||||||
idMessages2 : str = random_element(pathIntegers)
|
idMessages2 : str = random_element(pathIntegers)
|
||||||
|
|
||||||
@ -173,8 +174,8 @@ def generate_line_messages() -> str:
|
|||||||
|
|
||||||
def generate_line_modeles() -> str:
|
def generate_line_modeles() -> str:
|
||||||
idModele : str = random_element(pathIntegers)
|
idModele : str = random_element(pathIntegers)
|
||||||
nomModele : str = random_element(pathNameModels)
|
nomModele : str = "\'" + random_element(pathNameModels) + "\'"
|
||||||
urlNotice : str = random_element(pathUrls)
|
urlNotice : str = "\'" + random_element(pathUrls) + "\'"
|
||||||
idMembre : str = random_element(pathIntegers)
|
idMembre : str = random_element(pathIntegers)
|
||||||
idModeleEte : str = random_element(pathIntegers)
|
idModeleEte : str = random_element(pathIntegers)
|
||||||
|
|
||||||
@ -191,7 +192,7 @@ def generate_line_necessiter() -> str:
|
|||||||
def generate_line_noter() -> str:
|
def generate_line_noter() -> str:
|
||||||
idModele : str = random_element(pathIntegers)
|
idModele : str = random_element(pathIntegers)
|
||||||
idMembre : str = random_element(pathIntegers)
|
idMembre : str = random_element(pathIntegers)
|
||||||
note : str = random_element(pathSentences)
|
note : str = "\'" + random_element(pathSentences) + "\'"
|
||||||
|
|
||||||
return construct_line(idModele, idMembre, note)
|
return construct_line(idModele, idMembre, note)
|
||||||
|
|
||||||
@ -205,15 +206,37 @@ def generate_line_perdre() -> str:
|
|||||||
|
|
||||||
def generate_line_tags() -> str:
|
def generate_line_tags() -> str:
|
||||||
idTag : str = random_element(pathIntegers)
|
idTag : str = random_element(pathIntegers)
|
||||||
nomTag : str = random_element(pathWords)
|
nomTag : str = "\'" + random_element(pathWords) + "\'"
|
||||||
|
|
||||||
return construct_line(idTag, nomTag)
|
return construct_line(idTag, nomTag)
|
||||||
|
|
||||||
def generate_line_varier() -> str:
|
def generate_line_varier() -> str:
|
||||||
idModele_1 : str = random_element(pathIntegers)
|
idModele_1 : str = random_element(pathIntegers)
|
||||||
idModele_2 : str = random_element(pathWords)
|
idModele_et : str = random_element(pathIntegers)
|
||||||
|
|
||||||
return construct_line(idModele_1, idModele_2)
|
return construct_line(idModele_1, idModele_et)
|
||||||
|
|
||||||
|
def generate_line_formes() -> str:
|
||||||
|
idForme : str = random_element(pathIntegers)
|
||||||
|
nomForme : str = "\'" + random_element(pathWords) + "\'"
|
||||||
|
|
||||||
|
return construct_line(idForme, nomForme)
|
||||||
|
|
||||||
|
def generate_line_motifs() -> str:
|
||||||
|
idMotif : str = random_element(pathIntegers)
|
||||||
|
nomMotif : str = "\'" + random_element(pathWords) + "\'"
|
||||||
|
|
||||||
|
return construct_line(idMotif, nomMotif)
|
||||||
|
|
||||||
|
def generate_line_pieces() -> str:
|
||||||
|
idPiece : str = random_element(pathIntegers)
|
||||||
|
|
||||||
|
return construct_line(idPiece)
|
||||||
|
|
||||||
|
def generate_line_pieces_complexes() -> str:
|
||||||
|
idPieceCo : str = random_element(pathIntegers)
|
||||||
|
|
||||||
|
return construct_line(idPieceCo)
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
@ -243,7 +266,13 @@ def store_table(nbLines : int, pathFile : str, funcGenerationLine) -> None:
|
|||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
# TODO
|
# Need to do it manually, otherwire it is too hard.
|
||||||
|
|
||||||
|
# Step 1 : remove the duplicated primary keys,
|
||||||
|
# if there are 2 objects with the same primary key.
|
||||||
|
|
||||||
|
# Step 2 : remove the lines that have a foreign key that does not exist.
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
@ -280,29 +309,33 @@ def convert_table_to_sql(pathFile : str, nameTable : str) -> None:
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
dictTables : dict = {
|
dictTables : dict = {
|
||||||
"Acheter" : generate_line_acheter,
|
"acheter" : generate_line_acheter,
|
||||||
"Avoir_motif" : generate_line_avoir_motif,
|
"avoir_motif" : generate_line_avoir_motif,
|
||||||
"Avoir_tag" : generate_line_avoir_tag,
|
"avoir_tag" : generate_line_avoir_tag,
|
||||||
"Boites" : generate_line_boites,
|
"boites" : generate_line_boites,
|
||||||
"Colorer" : generate_line_colorer,
|
"colorer" : generate_line_colorer,
|
||||||
"Construire" : generate_line_construire,
|
"construire" : generate_line_construire,
|
||||||
"Contenir" : generate_line_contenir,
|
"contenir" : generate_line_contenir,
|
||||||
"Couleurs" : generate_line_couleurs,
|
"couleurs" : generate_line_couleurs,
|
||||||
"Enregistrer" : generate_line_enregistrer,
|
"enregistrer" : generate_line_enregistrer,
|
||||||
"Etre" : generate_line_etre,
|
"etre" : generate_line_etre,
|
||||||
"Etre_complexe" : generate_line_etre_complexe,
|
"etre_complexe" : generate_line_etre_complexe,
|
||||||
"Etre_forme" : generate_line_etre_forme,
|
"etre_forme" : generate_line_etre_forme,
|
||||||
"Fils" : generate_line_fils,
|
"fils" : generate_line_fils,
|
||||||
"Illustrations" : generate_line_illustrations,
|
"illustrations" : generate_line_illustrations,
|
||||||
"Marques" : generate_line_marques,
|
"marques" : generate_line_marques,
|
||||||
"Membres" : generate_line_membres,
|
"membres" : generate_line_membres,
|
||||||
"Messages" : generate_line_messages,
|
"messages" : generate_line_messages,
|
||||||
"Modeles" : generate_line_modeles,
|
"modeles" : generate_line_modeles,
|
||||||
"Necessiter" : generate_line_necessiter,
|
"necessiter" : generate_line_necessiter,
|
||||||
"Noter" : generate_line_noter,
|
"noter" : generate_line_noter,
|
||||||
"Perdre" : generate_line_perdre,
|
"perdre" : generate_line_perdre,
|
||||||
"Tags" : generate_line_tags,
|
"tags" : generate_line_tags,
|
||||||
"Varier" : generate_line_varier
|
"varier" : generate_line_varier,
|
||||||
|
"formes" : generate_line_formes,
|
||||||
|
"motifs" : generate_line_motifs,
|
||||||
|
"pieces" : generate_line_pieces,
|
||||||
|
"pieces_complexes" : generate_line_pieces_complexes
|
||||||
}
|
}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@ -316,7 +349,7 @@ def givePathFile(nameTable : str) -> str:
|
|||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# Uncomment if you want to generate data.
|
# Uncomment if you want to generate data.
|
||||||
for nameTable in dictTables:
|
for nameTable in dictTables:
|
||||||
store_table(1000, givePathFile(nameTable), dictTables[nameTable])
|
store_table(200, givePathFile(nameTable), dictTables[nameTable])
|
||||||
|
|
||||||
fileSql = open("insert.sql", 'w+')
|
fileSql = open("insert.sql", 'w+')
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user