-
Notifications
You must be signed in to change notification settings - Fork 0
/
art.sql
4507 lines (4378 loc) · 678 KB
/
art.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 5.1.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jun 10, 2022 at 11:58 AM
-- Server version: 10.4.18-MariaDB
-- PHP Version: 7.3.27
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `art`
--
-- --------------------------------------------------------
--
-- Table structure for table `artists`
--
CREATE TABLE `artists` (
`ArtistID` int(11) NOT NULL,
`FirstName` varchar(50) DEFAULT NULL,
`LastName` varchar(50) NOT NULL,
`Nationality` varchar(50) DEFAULT NULL,
`Gender` varchar(1) DEFAULT 'M',
`YearOfBirth` int(11) DEFAULT 0,
`YearOfDeath` int(11) DEFAULT 0,
`Details` longtext DEFAULT NULL,
`ArtistLink` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `artists`
--
INSERT INTO `artists` (`ArtistID`, `FirstName`, `LastName`, `Nationality`, `Gender`, `YearOfBirth`, `YearOfDeath`, `Details`, `ArtistLink`) VALUES
(1, 'Pablo', 'Picasso', 'Spain', 'M', 1881, 1973, 'Pablo Diego José Francisco de Paula Juan Nepomuceno María de los Remedios Cipriano de la Santísima Trinidad Ruiz y Picasso known as Pablo Ruiz Picasso was a Spanish painter, draughtsman, and sculptor who lived most of his life in France. He is widely known for co-founding the Cubist movement and for the wide variety of styles that he helped develop and explore. Among his most famous works are the proto-Cubist Les Demoiselles d\'Avignon (1907) and Guernica (1937), a portrayal of the German bombing of Guernica during the Spanish Civil War.', 'http://en.wikipedia.org/wiki/Picasso'),
(2, 'Henri', 'Matisse', 'France', 'M', 1869, 1954, 'Henri Matisse was a French artist, known for his use of colour and his fluid and original draughtsmanship. He was a draughtsman, printmaker, and sculptor, but is known primarily as a painter. Matisse is commonly regarded, along with Picasso and Marcel Duchamp, as one of the three artists who helped to define the revolutionary developments in the plastic arts in the opening decades of the 20th century, responsible for significant developments in painting and sculpture. Although he was initially labelled a Fauve (wild beast), by the 1920s he was increasingly hailed as an upholder of the classical tradition in French painting. His mastery of the expressive language of colour and drawing, displayed in a body of work spanning over a half-century, won him recognition as a leading figure in modern art', 'http://en.wikipedia.org/wiki/Matisse'),
(5, 'Jacques-Louis', 'David', 'France', 'M', 1748, 1825, 'Jacques-Louis David was a French painter in the Neoclassical style, considered to be the preeminent painter of the era. In the 1780s his cerebral brand of history painting marked a change in taste away from Rococo frivolity toward a classical austerity and severity, heightened feeling chiming with the moral climate of the final years of the Ancien Régime.\r\nDavid later became an active supporter of the French Revolution and friend of Maximilien Robespierre (1758–1794), and was effectively a dictator of the arts under the French Republic. Imprisoned after Robespierre\'s fall from power, he aligned himself with yet another political regime upon his release, that of Napoleon I. It was at this time that he developed his Empire style, notable for its use of warm Venetian colours. David had a huge number of pupils, making him the strongest influence in French art of the early 19th century, especially academic Salon painting.', 'http://en.wikipedia.org/wiki/Jacques-Louis_David'),
(6, 'Jean-Auguste-Dominique', 'Ingres', 'France', 'M', 1780, 1867, 'Jean-Auguste-Dominique Ingres was a French Neoclassical painter. Although he considered himself to be a painter of history in the tradition of Nicolas Poussin and Jacques-Louis David, by the end of his life it was Ingres\'s portraits, both painted and drawn, that were recognized as his greatest legacy.', 'http://en.wikipedia.org/wiki/Ingres'),
(7, 'Eugene', 'Delacroix', 'France', 'M', 1798, 1863, 'Eugène Delacroix was a French Romantic artist regarded from the outset of his career as the leader of the French Romantic school. Delacroix\'s use of expressive brushstrokes and his study of the optical effects of colour profoundly shaped the work of the Impressionists, while his passion for the exotic inspired the artists of the Symbolist movement. A fine lithographer, Delacroix illustrated various works of William Shakespeare, the Scottish writer Walter Scott and the German writer Johann Wolfgang von Goethe.', 'http://en.wikipedia.org/wiki/Eug%C3%A8ne_Delacroix'),
(8, 'Francisco', 'Goya', 'Spain', 'M', 1746, 1828, 'Francisco José de Goya y Lucientes was a Spanish romantic painter and printmaker regarded both as the last of the Old Masters and the first of the moderns. Goya was a court painter to the Spanish Crown, and through his works was both a commentator on and chronicler of his era. The subversive and imaginative element in his art, as well as his bold handling of paint, provided a model for the work of later generations of artists, notably Manet, Picasso and Francis Bacon.', 'http://en.wikipedia.org/wiki/Goya'),
(10, 'Gustave', 'Courbet', 'France', 'M', 1818, 1877, 'Jean Désiré Gustave Courbet was a French painter who led the Realist movement in 19th-century French painting. The Realist movement bridged the Romantic movement (characterized by the paintings of Théodore Géricault and Eugène Delacroix), with the Barbizon School and the Impressionists. Courbet occupies an important place in 19th century French painting as an innovator and as an artist willing to make bold social commentary in his work.', 'http://en.wikipedia.org/wiki/Courbet'),
(12, 'Edouard', 'Manet', 'France', 'M', 1832, 1883, 'Édouard Manet was a French painter. One of the first 19th-century artists to approach modern-life subjects, he was a pivotal figure in the transition from Realism to Impressionism.', 'http://en.wikipedia.org/wiki/Manet'),
(13, 'James Abbott', 'Whistler', 'USA', 'M', 1834, 1903, 'James Abbott McNeill Whistler was an American-born, British-based artist. Averse to sentimentality and moral allusion in painting, he was a leading proponent of the credo \"art for art\'s sake\". His famous signature for his paintings was in the shape of a stylized butterfly possessing a long stinger for a tail. The symbol was apt, for it combined both aspects of his personality—his art was characterized by a subtle delicacy, while his public persona was combative. Finding a parallel between painting and music, Whistler titled many of his paintings \"arrangements\", \"harmonies\", and \"nocturnes\", emphasizing the primacy of tonal harmony. His most famous painting is Whistler\'s Mother (1871), the revered and oft parodied portrait of motherhood. Whistler influenced the art world and the broader culture of his time with his artistic theories and his friendships with leading artists and writers.', 'http://en.wikipedia.org/wiki/James_Abbott_McNeill_Whistler'),
(14, 'Pierre Auguste', 'Renoir', 'France', 'M', 1841, 1919, 'Pierre-Auguste Renoir was a French artist who was a leading painter in the development of the Impressionist style. As a celebrator of beauty, and especially feminine sensuality, it has been said that \"Renoir is the final representative of a tradition which runs directly from Rubens to Watteau.\"', 'http://en.wikipedia.org/wiki/Renoir'),
(15, 'Edgar', 'Degas', 'France', 'M', 1834, 1917, 'Edgar Degas, born Hilaire-Germain-Edgar De Gas, was a French artist famous for his work in painting, sculpture, printmaking and drawing. He is regarded as one of the founders of Impressionism although he rejected the term, and preferred to be called a realist. A superb draughtsman, he is especially identified with the subject of the dance, and over half of his works depict dancers. These display his mastery in the depiction of movement, as do his racecourse subjects and female nudes. His portraits are notable for their psychological complexity and depiction of human isolation.', 'http://en.wikipedia.org/wiki/Degas'),
(16, 'Mary', 'Cassatt', 'USA', 'F', 1845, 1926, 'Mary Stevenson Cassatt was an American painter and printmaker. She lived much of her adult life in France, where she first befriended Edgar Degas and later exhibited among the Impressionists. Cassatt often created images of the social and private lives of women, with particular emphasis on the intimate bonds between mothers and children.', 'http://en.wikipedia.org/wiki/Mary_Cassatt'),
(17, 'Claude', 'Monet', 'France', 'M', 1840, 1926, 'Claude Monet was a founder of French impressionist painting, and the most consistent and prolific practitioner of the movement\'s philosophy of expressing one\'s perceptions before nature, especially as applied to plein-air landscape painting. The term Impressionism is derived from the title of his painting Impression, Sunrise (Impression, soleil levant).', 'http://en.wikipedia.org/wiki/Claude_Monet'),
(18, 'Paul', 'Gauguin', 'France', 'M', 1848, 1903, 'Eugène Henri Paul Gauguin was a leading French Post-Impressionist artist. He was an important figure in the Symbolist movement as a painter, sculptor, print-maker, ceramist, and writer. His bold experimentation with coloring led directly to the Synthetist style of modern art while his expression of the inherent meaning of the subjects in his paintings, under the influence of the cloisonnist style, paved the way to Primitivism and the return to the pastoral. He was also an influential proponent of wood engraving and woodcuts as art forms.', 'http://en.wikipedia.org/wiki/Gauguin'),
(19, 'Vincent', 'Van Gogh', 'Netherlands', 'M', 1853, 1890, 'Vincent Willem van Gogh was a Dutch post-Impressionist painter whose work, notable for its rough beauty, emotional honesty, and bold color, had a far-reaching influence on 20th-century art. After years of painful anxiety and frequent bouts of mental illness, he died at the age of 37 from a self-inflicted gunshot wound. His work was then known to only a handful of people and appreciated by fewer still.', 'http://en.wikipedia.org/wiki/Van_Gogh'),
(20, 'Georges', 'Seurat', 'France', 'M', 1859, 1891, 'Georges-Pierre Seurat was a French Post-Impressionist painter and draftsman. He is noted for his innovative use of drawing media and for devising a technique of painting known as pointillism. His large-scale work A Sunday Afternoon on the Island of La Grande Jatte (1884–1886), Seurat\'s most famous painting, altered the direction of modern art by initiating Neo-impressionism, and is one of the icons of 19th century painting.', 'http://en.wikipedia.org/wiki/Seurat'),
(21, 'Paul', 'Cezanne', 'France', 'M', 1839, 1906, 'Paul Cézanne was a French artist and Post-Impressionist painter whose work laid the foundations of the transition from the 19th century conception of artistic endeavour to a new and radically different world of art in the 20th century. Cézanne can be said to form the bridge between late 19th century Impressionism and the early 20th century\'s new line of artistic enquiry, Cubism. The line attributed to both Matisse and Picasso that Cézanne \"is the father of us all\" cannot be easily dismissed.', 'http://en.wikipedia.org/wiki/C%C3%A9zanne'),
(24, 'Edvard', 'Munch', 'Norway', 'M', 1863, 1944, 'Edvard Munch was a Norwegian Symbolist painter, printmaker and an important forerunner of expressionist art. His best-known composition, The Scream, is part of a series The Frieze of Life, in which Munch explored the themes of love, fear, death, melancholia, and anxiety.', 'http://en.wikipedia.org/wiki/Edvard_Munch'),
(28, 'Henri', 'Toulouse-Lautrec', 'France', 'M', 1864, 1901, 'Henri Marie Raymond de Toulouse-Lautrec-Monfa or simply Henri de Toulouse-Lautrec was a French painter, printmaker, draughtsman, and illustrator, whose immersion in the colourful and theatrical life of fin de siècle Paris yielded an œuvre of exciting, elegant and provocative images of the modern and sometimes decadent life of those times. Toulouse-Lautrec is known along with Cézanne, Van Gogh, and Gauguin as one of the greatest painters of the Post-Impressionist period. In a 2005 auction at Christie\'s auction house a new record was set when \"La blanchisseuse\", an early painting of a young laundress, sold for $22.4 million U.S.', 'http://en.wikipedia.org/wiki/Toulouse-Lautrec'),
(29, 'Gustav', 'Klimt', 'Austria', 'M', 1862, 1918, 'Gustav Klimt was an Austrian Symbolist painter and one of the most prominent members of the Vienna Secession movement. His major works include paintings, murals, sketches, and other art objects. Klimt\'s primary subject was the female body, and his works are marked by a frank eroticism—nowhere is this more apparent than in his numerous drawings in pencil', 'http://en.wikipedia.org/wiki/Klimt'),
(32, 'Andre', 'Derain', 'France', 'M', 1880, 1919, 'André Derain was a French artist, painter, sculptor and co-founder of Fauvism with Henri Matisse', 'http://en.wikipedia.org/wiki/Andr%C3%A9_Derain'),
(40, 'Vasily', 'Kandinsky', 'Russia', 'M', 1866, 1944, 'Wassily Wassilyevich Kandinsky was a Russian painter and art theorist. He is credited with painting the first purely-abstract works. Born in Moscow, Kandinsky spent his childhood in Odessa. He enrolled at the University of Moscow, studying law and economics. Successful in his profession—he was offered a professorship (chair of Roman Law) at the University of Dorpat—he began painting studies (life-drawing, sketching and anatomy) at the age of 30.', 'http://en.wikipedia.org/wiki/Kandinsky'),
(41, 'Giacomo', 'Balla', 'Italy', 'M', 1871, 1958, 'Giacomo Balla was an Italian painter.', 'http://en.wikipedia.org/wiki/Giacomo_Balla'),
(45, 'Salvidor', 'Dali', 'Spain', 'M', 1904, 1989, 'Salvador Domènec Felip Jacint Dalí i Domènech, Marquis de Púbol, commonly known as Salvador Dalí was a prominent Spanish Catalan surrealist painter born in Figueres.', 'http://en.wikipedia.org/wiki/Salvador_Dal%C3%AD'),
(49, 'Georgia', 'O\'Keefe', 'USA', 'F', 1887, 1986, 'Georgia Totto O\'Keeffe was an American artist. Born near Sun Prairie, Wisconsin, O\'Keeffe first came to the attention of the New York art community in 1916, several decades after women had gained access to art training in America’s colleges and universities, and before any of its women artists were well known or highly celebrated. Within a decade, she had distinguished herself as one of America\'s most important modern artists, a position she maintained throughout her life. As a result, O’Keeffe not only carved out a significant place for women painters in an area of the American art community that had been exclusive to and is still dominated by men, but also she had become one of America’s most celebrated cultural icons well before her death at age 98 in 1986.', 'http://en.wikipedia.org/wiki/Georgia_O%27Keefe'),
(60, 'Paul', 'Klee', 'Switzerland', 'M', 1879, 1940, 'Paul Klee was born in Münchenbuchsee, Switzerland, and is considered both a German and a Swiss painter. His highly individual style was influenced by movements in art that included expressionism, cubism, and surrealism. He was, as well, a student of orientalism. Klee was a natural draftsman who experimented with and eventually mastered color theory, and wrote extensively about it; his lectures Writings on Form and Design Theory (Schriften zur Form und Gestaltungslehre), published in English as the Paul Klee Notebooks, are considered so important for modern art that they are compared to the importance that Leonardo da Vinci\'s A Treatise on Painting had for Renaissance. He and his colleague, the Russian painter Wassily Kandinsky, both taught at the German Bauhaus school of art, design and architecture. His works reflect his dry humour and his sometimes childlike perspective, his personal moods and beliefs, and his musicality.', 'http://en.wikipedia.org/wiki/Paul_Klee'),
(63, 'Henri', 'Rousseau', 'France', 'M', 1844, 1910, 'Henri Julien Félix Rousseau was a French Post-Impressionist painter in the Naive or Primitive manner. He was also known as Le Douanier (the customs officer), a humorous description of his occupation as a tax collector. Ridiculed during his life, he came to be recognized as a self-taught genius whose works are of high artistic quality.', 'http://en.wikipedia.org/wiki/Henri_Rousseau'),
(64, 'Marc', 'Chagall', 'Russia', 'M', 1887, 1985, 'Marc Chagall was a Belorussian-French artist associated with several major artistic styles and one of the most successful artists of the 20th century. He was an early modernist, and created works in virtually every artistic medium, including painting, book illustrations, stained glass, stage sets, ceramic, tapestries and fine art prints.', 'http://en.wikipedia.org/wiki/Chagall'),
(73, 'Piet', 'Mondrian', 'Netherlands', 'M', 1872, 1944, 'Pieter Cornelis \"Piet\" Mondriaan, after 1912 Mondrian, was a Dutch painter. He was an important contributor to the De Stijl art movement and group, which was founded by Theo van Doesburg. He evolved a non-representational form which he termed Neo-Plasticism. This consisted of white ground, upon which was painted a grid of vertical and horizontal black lines and the three primary colors.', 'http://en.wikipedia.org/wiki/Piet_Mondrian'),
(85, 'Jackson', 'Pollock', 'USA', 'M', 1912, 1959, 'Paul Jackson Pollock , known as Jackson Pollock, was an influential American painter and a major figure in the abstract expressionist movement. During his lifetime, Pollock enjoyed considerable fame and notoriety. He was regarded as a mostly reclusive artist. He had a volatile personality, and struggled with alcoholism for most of his life. In 1945, he married the artist Lee Krasner, who became an important influence on his career and on his legacy.', 'http://en.wikipedia.org/wiki/Jackson_pollock'),
(92, 'Filippo', 'Lippi', 'Italy', 'M', 1406, 1469, 'Filippo Lippi, also called Lippo Lippi, was an Italian painter of the Italian Quattrocento (15th century).', 'http://en.wikipedia.org/wiki/Filippo_Lippi'),
(93, 'Piero della', 'Francesca', 'Italy', 'M', 1412, 1492, '<strong>Piero della Francesca</strong> was a painter of the Early Renaissance. As testified by Giorgio Vasari in his <em>Lives of the Artists</em>, to contemporaries he was also known as a mathematician and geometer. Nowadays Piero della Francesca is chiefly appreciated for his art. His painting was characterized by its serene humanism, its use of geometric forms and perspective. His most famous work is the cycle of frescoes \"The Legend of the True Cross\" in the church of San Francesco in the Tuscan town of Arezzo.', 'http://en.wikipedia.org/wiki/Piero_della_Francesca'),
(94, 'Andrea', 'Mantegna', 'Italy', 'M', 1431, 1506, '<strong>Andrea Mantegna</strong> was an Italian painter, a student of Roman archeology, and son in law of Jacopo Bellini. Like other artists of the time, Mantegna experimented with perspective, e.g., by lowering the horizon in order to create a sense of greater monumentality. His flinty, metallic landscapes and somewhat stony figures give evidence of a fundamentally sculptural approach to painting. He also led a workshop that was the leading producer of prints in Venice before 1500.', 'http://en.wikipedia.org/wiki/Andrea_Mantegna'),
(95, 'Sandro', 'Botticelli', 'Italy', 'M', 1445, 1510, 'Alessandro di Mariano di Vanni Filipepi, better known as <strong>Sandro Botticelli</strong> was an Italian painter of the Early Renaissance. He belonged to the Florentine school under the patronage of Lorenzo de\' Medici, a movement that Giorgio Vasari would characterize less than a hundred years later as a \"golden age\", a thought, suitably enough, he expressed at the head of his Vita of Botticelli. Botticelli\'s posthumous reputation suffered until the late 19th century; since then his work has been seen to represent the linear grace of Early Renaissance painting. Among his best known works are The Birth of Venus and Primavera.', 'http://en.wikipedia.org/wiki/Sandro_Botticelli'),
(96, 'Pietro', 'Perugino', 'Italy', 'M', 1446, 1524, '<strong>Pietro Perugino</strong>, born Pietro Vannucci, was an Italian Renaissance painter of the Umbrian school, who developed some of the qualities that found classic expression in the High Renaissance. Raphael was his most famous pupil.', 'http://en.wikipedia.org/wiki/Pietro_Perugino'),
(97, 'Leonardo', 'da Vinci', 'Italy', 'M', 1452, 1519, '<strong>Leonardo di ser Piero da Vinci</strong> was an Italian Renaissance polymath: painter, sculptor, architect, musician, mathematician, engineer, inventor, anatomist, geologist, cartographer, botanist, and writer. His genius, perhaps more than that of any other figure, epitomized the Renaissance humanist ideal. Leonardo has often been described as the archetype of the Renaissance Man, a man of \"unquenchable curiosity\" and \"feverishly inventive imagination\". He is widely considered to be one of the greatest painters of all time and perhaps the most diversely talented person ever to have lived. According to art historian Helen Gardner, the scope and depth of his interests were without precedent and \"his mind and personality seem to us superhuman, the man himself mysterious and remote\". Marco Rosci states that while there is much speculation about Leonardo, his vision of the world is essentially logical rather than mysterious, and that the empirical methods he employed were unusual for his time.', 'http://en.wikipedia.org/wiki/Leonardo_da_Vinci'),
(98, NULL, 'Michelangelo', 'Italy', 'M', 1475, 1564, '<strong>Michelangelo di Lodovico Buonarroti Simoni</strong> commonly known as Michelangelo, was an Italian sculptor, painter, architect, poet, and engineer of the High Renaissance who exerted an unparalleled influence on the development of Western art. Despite making few forays beyond the arts, his versatility in the disciplines he took up was of such a high order that he is often considered a contender for the title of the archetypal Renaissance man, along with his fellow Italian Leonardo da Vinci. Michelangelo was considered the greatest living artist in his lifetime, and ever since then he has been held to be one of the greatest artists of all time. A number of his works in painting, sculpture, and architecture rank among the most famous in existence. His output in every field during his long life was prodigious; when the sheer volume of correspondence, sketches, and reminiscences that survive is also taken into account, he is the best-documented artist of the 16th century.', 'http://en.wikipedia.org/wiki/Michelangelo'),
(99, NULL, 'Raphael', 'Italy', 'M', 1483, 1520, 'Raffaello Sanzio da Urbino, better known simply as <strong>Raphael</strong>, was an Italian painter and architect of the High Renaissance. His work is admired for its clarity of form and ease of composition and for its visual achievement of the Neoplatonic ideal of human grandeur. Together with Michelangelo and Leonardo da Vinci, he forms the traditional trinity of great masters of that period.', 'http://en.wikipedia.org/wiki/Raphael'),
(100, NULL, 'Titian', 'Italy', 'M', 1488, 1576, '<strong>Tiziano Vecelli</strong> known in English as <strong>Titian</strong> was an Italian painter, the most important member of the 16th-century Venetian school. He was born in Pieve di Cadore, near Belluno (in Veneto), in the Republic of Venice. During his lifetime he was often called da Cadore, taken from the place of his birth. During the course of his long life, Titian\'s artistic manner changed drastically[4] but he retained a lifelong interest in color. Although his mature works may not contain the vivid, luminous tints of his early pieces, their loose brushwork and subtlety of polychromatic modulations are without precedent in the history of Western art.', 'http://en.wikipedia.org/wiki/Titian'),
(101, NULL, 'Caravaggio', 'Italy', 'M', 1571, 1610, '<strong>Michelangelo Merisi da Caravaggio</strong> was an Italian artist active in Rome, Naples, Malta, and Sicily between 1593 and 1610. His paintings, which combine a realistic observation of the human state, both physical and emotional, with a dramatic use of lighting, had a formative influence on the Baroque school of painting.', 'http://en.wikipedia.org/wiki/Caravaggio'),
(102, 'Peter Paul', 'Rubens', 'Belgium', 'M', 1577, 1640, 'Sir Peter Paul Rubens was a German-born Flemish Baroque painter, and a proponent of an extravagant Baroque style that emphasised movement, colour, and sensuality. He is well known for his Counter-Reformation altarpieces, portraits, landscapes, and history paintings of mythological and allegorical subjects.', 'http://en.wikipedia.org/wiki/Peter_Paul_Rubens'),
(103, 'Anthony van', 'Dyck', 'Belgium', 'M', 1599, 1641, '<strong>Sir Anthony van Dyck</strong> was a Flemish Baroque artist who became the leading court painter in England. He is most famous for his portraits of Charles I of England and his family and court, painted with a relaxed elegance that was to be the dominant influence on English portrait-painting for the next 150 years. He also painted biblical and mythological subjects, displayed outstanding facility as a draftsman, and was an important innovator in watercolour and etching.', 'http://en.wikipedia.org/wiki/Anthony_van_Dyck'),
(104, 'Diego', 'Velázquez', 'Spain', 'M', 1599, 1660, '<strong>Diego Rodríguez de Silva y Velázquez</strong> was a Spanish painter who was the leading artist in the court of King Philip IV. He was an individualistic artist of the contemporary Baroque period, important as a portrait artist. In addition to numerous renditions of scenes of historical and cultural significance, he painted scores of portraits of the Spanish royal family, other notable European figures, and commoners.', 'http://en.wikipedia.org/wiki/Diego_Vel%C3%A1zquez'),
(105, NULL, 'Rembrandt', 'Netherlands', 'M', 1606, 1669, '<strong>Rembrandt Harmenszoon van Rijn</strong> was a Dutch painter and etcher. He is generally considered one of the greatest painters and printmakers in European art history and the most important in Dutch history. His contributions to art came in a period of great wealth and cultural achievement that historians call the Dutch Golden Age when Dutch Golden Age painting, although in many ways antithetical to the Baroque style that dominated Europe, was extremely prolific and innovative.', 'http://en.wikipedia.org/wiki/Rembrandt'),
(106, 'Jan', 'Vermeer', 'Netherlands', 'M', 1632, 1675, '<strong>Jan Vermeer</strong> was a Dutch painter who specialized in domestic interior scenes of middle-class life. Vermeer was a moderately successful provincial genre painter in his lifetime. He seems never to have been particularly wealthy, leaving his wife and children in debt at his death, perhaps because he produced relatively few paintings. Vermeer worked slowly and with great care, using bright colours and sometimes expensive pigments, with a preference for cornflower blue and yellow. He is particularly renowned for his masterly treatment and use of light in his work.', 'http://en.wikipedia.org/wiki/Johannes_Vermeer'),
(107, 'Francois', 'Boucher', 'France', 'M', 1703, 1770, 'Possibly the most popular 18th century artist, <strong>Francois Boucher</strong> was a French painter in the Rococo style. When he was 17 years old, Boucher was apprenticed for a short time to the French painter Francois Lemoyne, and then to the engraver Jean-Francois Cars. After three years of work and artistic study, Boucher won the Grand Prix de Rome, a scholarship for artistic study, allowing him to travel to Italy and further his study in art. Upon his return to France, he was accepted into the Royal Academy of Painting and Sculpture, and three years later became a faculty member.', 'http://en.wikipedia.org/wiki/Fran%C3%A7ois_Boucher'),
(108, 'Jean-Baptiste-Simeon', 'Chardin', 'France', 'M', 1699, 1779, '<strong>Jean-Baptiste-Siméon Chardin</strong> was an 18th-century French painter. He is considered a master of still life, and is also noted for his genre paintings which depict kitchen maids, children, and domestic activities. Carefully balanced composition, soft diffusion of light, and granular impasto characterize his work.', 'http://en.wikipedia.org/wiki/Jean-Baptiste-Sim%C3%A9on_Chardin'),
(109, 'Joshua', 'Reynolds', 'England', 'M', 1740, 1790, '<strong>Sir Joshua Reynolds</strong> was an influential eighteenth-century English painter, specialising in portraits and promoting the \"Grand Style\" in painting which depended on idealization of the imperfect. He was one of the founders and first president of the Royal Academy, and was knighted by George III in 1769.', 'http://en.wikipedia.org/wiki/Joshua_Reynolds'),
(110, 'Thomas', 'Gainsborough', 'England', 'M', 1737, 1788, '<strong>Thomas Gainsborough</strong> was an English portrait and landscape painter. He is credited as the originator of the 18th century British landscape school.', 'http://en.wikipedia.org/wiki/Thomas_Gainsborough'),
(111, 'Artemisia', 'Gentileschi', 'Italy', 'F', 1593, 1656, '<strong>Artemisia Gentileschi</strong> was an Italian Baroque painter, today considered one of the most accomplished painters in the generation after Caravaggio. In an era when female painters were not easily accepted by the artistic community or patrons, she was the first female painter to become a member of the Accademia di Arte del Disegno in Florence. She painted many pictures of strong and suffering women from myth and the Bible – victims, suicides, warriors – and made a speciality of the Judith story. That she was a woman painting in the 17th century and that she was raped herself and participated in prosecuting the rapist long overshadowed her achievements as an artist. For many years she was regarded as a curiosity. Today she is regarded as one of the most progressive and expressionist painters of her generation.', 'http://en.wikipedia.org/wiki/Artemisia_Gentileschi'),
(112, 'Judith', 'Leyster', 'Netherlands', 'F', 1609, 1660, '<strong>Judith Jans Leyster (also Leijster)</strong> was a Dutch Golden Age painter. She was one of three significant women artists in Dutch Golden Age painting; the other two, Rachel Ruysch and Maria van Oosterwijk, were specialized painters of flower still-lifes, while Leyster painted genre works, a few portraits, and a single still life. The number of surviving works attributed to her varies between fewer than 20 and about 35. She largely gave up painting after her marriage, which produced five children.', 'http://en.wikipedia.org/wiki/Judith_Leyster'),
(113, 'Louise Élisabeth', 'Lebrun', 'France', 'F', 1755, 1842, '<strong>Louise Élisabeth Vigée Le Brun</strong> also known as Madame Lebrun, was a French painter, and is recognized as the most important female painter of the 18th century. Her style is generally considered Rococo and shows interest in the subject of neoclassical painting. Vigée Le Brun cannot be considered a pure Neoclassist, however, in that she creates mostly portraits in Neoclassical dress.', 'http://en.wikipedia.org/wiki/Elisabeth_Vigee-Lebrun'),
(114, NULL, 'Giotto', 'Italy', 'M', 1266, 1337, '<strong>Giotto di Bondone</strong> better known simply as Giotto, was an Italian painter and architect from Florence in the late Middle Ages. He is generally considered the first in a line of great artists who contributed to the Italian Renaissance.', 'https://en.wikipedia.org/wiki/Giotto'),
(115, 'Jan', 'van Eyck', 'Belgium', 'M', 1390, 1441, '<strong>Jan van Eyck</strong> was a Flemish painter active in Bruges and is generally considered one of the most significant Northern European painters of the 15th century. The few surviving records indicate that he was born around 1390, most likely in Maaseik. Outside of works completed with his brother Hubert van Eyck and those ascribed to Hand G —believed to be Jan— of the Turin-Milan Hours illuminated manuscript, only about 23 surviving works are confidently attributed to him, of which ten, including the Ghent altarpiece, are signed and dated.', 'http://en.wikipedia.org/wiki/Jan_van_Eyck'),
(116, 'Albrecht', 'Dürer', 'Germany', 'M', 1471, 1528, '<strong>Albrecht Dürer </strong> was a German painter, engraver, printmaker, mathematician, and theorist from Nuremberg. His high-quality woodcuts established his reputation and influence across Europe when he was still in his twenties, and he has been conventionally regarded as the greatest artist of the Northern Renaissance ever since. His vast body of work includes altarpieces and religious works, numerous portraits and self-portraits, and copper engravings. The woodcuts, such as the Apocalypse series (1498), retain a more Gothic flavour than the rest of his work. His well-known prints include the Knight, Death, and the Devil (1513), Saint Jerome in his Study (1514) and Melencolia I (1514), which has been the subject of extensive analysis and interpretation. His watercolours also mark him as one of the first European landscape artists, while his ambitious woodcuts revolutionized the potential of that medium. Dürer\'s introduction of classical motifs into Northern art, through his knowledge of Italian artists and German humanists, has secured his reputation as one of the most important figures of the Northern Renaissance. This is reinforced by his theoretical treatises, which involve principles of mathematics, perspective and ideal proportions.', 'http://en.wikipedia.org/wiki/Albrecht_D%C3%Bcrer'),
(117, 'Hieronymus', 'Bosch', 'Netherlands', 'M', 1450, 1516, '<strong>Hieronymus Bosch</strong>was an Early Netherlandish painter. His work is known for its use of fantastic imagery to illustrate moral and religious concepts and narratives.', 'http://en.wikipedia.org/wiki/Hieronymus_Bosch'),
(118, 'Pieter', 'Bruegel the Elder', 'Netherlands', 'M', 1525, 1569, '<strong>Pieter Bruegel (Brueghel) the Elder</strong> was a Flemish Renaissance painter and printmaker known for his landscapes and peasant scenes (so called genre painting). He is sometimes referred to as the \"Peasant Bruegel.\" From 1559 he dropped the \'h\' from his name and signed his paintings as Bruegel.', 'http://en.wikipedia.org/wiki/Pieter_Bruegel_the_Elder'),
(120, 'Agnolo', 'Bronzino', 'Italy', 'M', 1503, 1572, 'One of the greatest painters of the sixteenth century, Agnolo di Cosimo Tori, known as <strong>Bronzino</strong>, embodied the Mannerist style in the years of the government of Cosimo I de’ Medici.', 'http://en.wikipedia.org/wiki/Bronzino'),
(121, 'El', 'Greco', 'Greece', 'M', 1514, 1614, '<strong>El Greco</strong>, born Doménikos Theotokópoulos, was a painter, sculptor and architect of the Spanish Renaissance. \"El Greco\" (The Greek) was a nickname,a reference to his national Greek origin. El Greco\'s dramatic and expressionistic style was met with puzzlement by his contemporaries but found appreciation in the 20th century. El Greco is regarded as a precursor of both Expressionism and Cubism.', 'http://en.wikipedia.org/wiki/El_Greco'),
(123, 'Frans', 'Hals', 'Netherlands', 'M', 1582, 1666, '<strong>Frans Hals the Elder</strong> was a Dutch Golden Age portrait painter who lived and worked in Haarlem. He is notable for his loose painterly brushwork, and he helped introduce this lively style of painting into Dutch art. Hals played an important role in the evolution of 17th-century group portraiture.', 'https://en.wikipedia.org/wiki/Frans_Hals'),
(124, 'Jan', 'Steen', 'Netherlands', 'M', 1626, 1679, 'Jan Havickszoon Steen was a Dutch genre painter of the 17th century (also known as the Dutch Golden Age). His works are known for their psychological insight, sense of humour and abundance of colour', 'https://en.wikipedia.org/wiki/Jan_Steen'),
(125, 'Jan', 'Kruseman', 'Netherlands', 'M', 1804, 1862, 'Jan Adam Kruseman (1804-1862) of Haarlem was apprenticed to his uncle Cornelis Kruseman. He later studied at Brussels and Paris. In 1834-1836, he made a series of journeys to Germany, England and Scotland. For a while, he lived in Driebergen, before returning to Haarlem in 1858. Kruseman painted historical, biblical and genre scenes, although mainly portraits. In all he received around five hundred commissions from aristocrats and wealthy commoners for portraits.', 'https://en.wikipedia.org/wiki/Jan_Adam_Kruseman'),
(126, 'Pieter de', 'Hooch', 'Netherlands', 'M', 1629, 1684, 'Pieter de Hooch was a Dutch Golden Age painter famous for his genre works of quiet domestic scenes with an open doorway. He was a contemporary of Jan Vermeer in the Delft Guild of St. Luke, with whom his work shares themes and style.', 'https://en.wikipedia.org/wiki/Pieter_de_Hooch'),
(127, 'Jacob van', 'Ruisdael', 'Netherlands', 'M', 1628, 1682, 'The Haarlem-born painter Jacob van Ruisdael (ca. 1628-1682) began to paint at an early age. His first work dates from 1646. Ruisdael probably had lessons from his father, but his uncle, the artist Salomon van Ruysdael, must also have been a great influence on the young painter. As well as being a painter, Ruisdael was also a doctor. He painted not only woodland landscapes with strong, central motifs such as ruins, watermills and oaks, but also cityscapes and seascapes. Ruisdael\'s compositions are often more imposing than reality. His \'Bentheim Castle\' and \'Windmill at Wijk bij Duurstede\' are good examples of this.', 'https://en.wikipedia.org/wiki/Jacob_van_Ruisdael'),
(128, 'Anton', 'Mauve', 'Netherlands', 'M', 1838, 1888, 'Anthonij (Anton) Rudolf Mauve was a Dutch realist painter who was a leading member of the Hague School. He signed his paintings \'A. Mauve\' or with a monogrammed \'A.M.\'. A master colorist, he was a very significant early influence on his cousin-in-law Vincent van Gogh. Most of Mauve\'s work depicts people and animals in outdoor settings. In his Morning Ride in the Rijksmuseum, for example, fashionable equestrians at the seacoast are seen riding away from the viewer. An unconventional detail, horse droppings in the foreground, attests his commitment to realism.', 'https://en.wikipedia.org/wiki/Anton_Mauve'),
(129, 'Lawrence', 'Alma-Tadema', 'Netherlands', 'M', 1836, 1912, 'Sir Lawrence Alma-Tadema (born Lourens Alma Tadema) was a Dutch painter of special British denizenship. Born in Dronrijp, the Netherlands, and trained at the Royal Academy of Antwerp, Belgium, he settled in England in 1870 and spent the rest of his life there. A classical-subject painter, he became famous for his depictions of the luxury and decadence of the Roman Empire, with languorous figures set in fabulous marbled interiors or against a backdrop of dazzling blue Mediterranean Sea and sky. Though admired during his lifetime for his draftsmanship and depictions of Classical antiquity, his work fell into disrepute after his death, and only since the 1960s has it been re-evaluated for its importance within nineteenth-century English art.', 'https://en.wikipedia.org/wiki/Lawrence_Alma-Tadema'),
(130, 'Thérèse', 'Schwartze', 'Netherlands', 'F', 1851, 1918, 'Thérèse Schwartze was born on 20 December 1851 in Amsterdam in the Netherlands. She was the daughter of the painter Johan Georg Schwartze, who grew up in Philadelphia and trained in Düsseldorf. Schwartze received her first training from her father, before studying for a year at the Rijksacademie van Beeldende Kunsten. She then travelled to Munich and studied under Gabriel Max and Franz von Lenbach. In 1879 she went to Paris to continue her studies under Jean-Jacques Henner. When she returned to Amsterdam she became a member of Arti et Amicitiae.', 'https://en.wikipedia.org/wiki/Th%C3%A9r%C3%A8se_Schwartze'),
(131, NULL, 'Canaletto', 'Italy', 'M', 1697, 1768, 'Giovanni Antonio Canal, better known as Canaletto, was an Italian painter of landscapes of Venice. He was also an important printmaker in etching. He was the son of the painter Bernardo Canal, he visited England between 1746–56 and he is famous for his urban landscapes of Venice. He is very famous for his scenes, usually associated with \"evocative views of the city\".', 'https://en.wikipedia.org/wiki/Canaletto'),
(132, 'Nicolas', 'Poussin', 'France', 'M', 1594, 1665, 'Nicolas Poussin was the leading painter of the classical French Baroque style, although he spent most of his working life in Rome. His work is characterized by clarity, logic, and order, and favors line over color. Until the 20th century he remained a major inspiration for such classically oriented artists as Jacques-Louis David, Jean-Auguste-Dominique Ingres and Paul Cézanne. He worked in Rome for a circle of leading collectors from there and elsewhere, except for a short period when Cardinal Richelieu ordered him back to France to serve as First Painter to the King. Most of his works are history paintings of religious or mythological subjects that very often have a large landscape element.', 'https://en.wikipedia.org/wiki/Nicolas_Poussin'),
(133, 'Ferdinand Georg', 'Waldmüller', 'Austria', 'M', 1793, 1865, 'Ferdinand Georg Waldmüller (1793–1865) is considered the most important Austrian artist of the 19th century. On the one hand, he produced outstanding works in the artistic disciplines prevalent at the time – portraiture, landscape, still life, and genre painting – and, on the other hand, he was always, throughout his life, in search of accomplishment, striding new paths that led the way into the future.', 'https://en.wikipedia.org/wiki/Ferdinand_Georg_Waldm%C3%Bcller'),
(134, 'Rogier van der', 'Weyden', 'Netherlands', 'M', 1399, 1464, 'Rogier van der Weyden or Roger de la Pasture was an Early Netherlandish painter. His surviving works consist mainly of religious triptychs, altarpieces and commissioned single and diptych portraits. Although his life was generally uneventful, he was highly successful and internationally famous in his lifetime. His paintings were exported – or taken – to Italy and Spain, and he received commissions from, amongst others, Philip the Good, Netherlandish nobility and foreign princes. By the latter half of the 15th century, he had eclipsed Jan van Eyck in popularity. However his fame lasted only until the 17th century, and largely due to changing taste, he was almost totally forgotten by the mid-18th century. His reputation was slowly rebuilt during the following 200 years; today he is known, with Robert Campin and van Eyck, as the third of the three great Early Flemish artists, and widely as the most influential Northern painter of the 15th century.', 'https://en.wikipedia.org/wiki/Rogier_van_der_Weyden'),
(135, 'Giovanni', 'Bellini', 'Italy', 'M', 1430, 1516, 'Giovanni Bellini was an Italian Renaissance painter, probably the best known of the Bellini family of Venetian painters. His father was Jacopo Bellini, his brother was Gentile Bellini, and his brother-in-law was Andrea Mantegna. He is considered to have revolutionized Venetian painting, moving it towards a more sensuous and colouristic style. Through the use of clear, slow-drying oil paints, Giovanni created deep, rich tints and detailed shadings. His sumptuous coloring and fluent, atmospheric landscapes had a great effect on the Venetian painting school, especially on his pupils Giorgione and Titian.', 'https://en.wikipedia.org/wiki/Giovanni_Bellini'),
(136, 'Francesco', 'Hayez', 'Italy', 'M', 1791, 1882, 'Francesco Hayez was an Italian painter, the leading artist of Romanticism in mid-19th-century Milan, renowned for his grand historical paintings, political allegories and exceptionally fine portraits.', 'https://en.wikipedia.org/wiki/Francesco_Hayez'),
(137, 'Caspar David', 'Friedrich', 'Germany', 'M', 1774, 1840, 'Caspar David Friedrich was a 19th-century German Romantic landscape painter, generally considered the most important German artist of his generation. He is best known for his mid-period allegorical landscapes which typically feature contemplative figures silhouetted against night skies, morning mists, barren trees or Gothic ruins.', 'https://en.wikipedia.org/wiki/Caspar_David_Friedrich'),
(138, 'Arnold', 'Böcklin', 'Switzerland', 'M', 1827, 1901, 'Arnold Böcklin was a Swiss symbolist painter.', 'https://en.wikipedia.org/wiki/Arnold_B%C3%B6cklin'),
(139, 'John William', 'Waterhouse', 'England', 'M', 1849, 1917, 'John William Waterhouse was an English painter known for working in the Pre-Raphaelite style. He worked several decades after the breakup of the Pre-Raphaelite Brotherhood, which had seen its heyday in the mid-nineteenth century, leading to his sobriquet \"the modern Pre-Raphaelite\". Borrowing stylistic influences not only from the earlier Pre-Raphaelites but also from his contemporaries, the Impressionists, his artworks were known for their depictions of women from both ancient Greek mythology and Arthurian legend.', 'https://en.wikipedia.org/wiki/John_William_Waterhouse'),
(140, 'William', 'Bouguereau', 'France', 'M', 1825, 1905, 'William-Adolphe Bouguereau was a French academic painter and traditionalist. In his realistic genre paintings he used mythological themes, making modern interpretations of classical subjects, with an emphasis on the female human body. During his life he enjoyed significant popularity in France and the United States, was given numerous official honors, and received top prices for his work. As the quintessential salon painter of his generation, he was reviled by the Impressionist avant-garde. By the early twentieth century, Bouguereau and his art fell out of favor with the public, due in part to changing tastes. In the 1980s, a revival of interest in figure painting led to a rediscovery of Bouguereau and his work. Throughout the course of his life, Bouguereau executed 822 known finished paintings, although the whereabouts of many are still unknown.', 'https://en.wikipedia.org/wiki/William-Adolphe_Bouguereau'),
(141, 'Agnolo', 'Gaddi', 'Italy', 'M', 1350, 1396, 'Taddeo Gaddi was himself the major pupil of the Florentine master Giotto. Agnolo was an influential and prolific artist who was the last major Florentine painter stylistically descended from Giotto.', 'https://en.wikipedia.org/wiki/Agnolo_Gaddi');
-- --------------------------------------------------------
--
-- Table structure for table `customerlogon`
--
CREATE TABLE `customerlogon` (
`CustomerID` int(11) NOT NULL,
`UserName` varchar(255) DEFAULT NULL,
`Pass` varchar(255) DEFAULT NULL,
`Salt` varchar(255) DEFAULT NULL,
`State` int(11) DEFAULT NULL,
`DateJoined` datetime DEFAULT NULL,
`DateLastModified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `customerlogon`
--
INSERT INTO `customerlogon` (`CustomerID`, `UserName`, `Pass`, `Salt`, `State`, `DateJoined`, `DateLastModified`) VALUES
(1, '[email protected]', '81c71e87e09e4310e3b974c79a8f817b', 'HoGiVlunac11vDbbFHpoB0OdDOEkA6Uk', 1, '2012-10-08 00:00:00', '2012-11-15 00:00:00'),
(2, '[email protected]', '5a2b2e0fcff2d5d36bd0f988b1acfe41', 'VubVwUzwUC29gpVff7iZm3Aoe6LWba57', 1, '2012-08-22 00:00:00', '2012-10-15 00:00:00'),
(3, '[email protected]', 'cdcabbb42c07586007f367353c2bd241', 'YP6aWNCsANhgpmQ8vrrmZBb6L54sOxkp', 1, '2012-10-28 00:00:00', '2012-11-16 00:00:00'),
(4, '[email protected]', '9cad8e966c8b47a27e2703e51a75d23e', 'vFDJ8jISdVfCIMkTpbze5ECLMeritDe8', 1, '2012-07-31 00:00:00', '2012-08-14 00:00:00'),
(5, '[email protected]', '6d465b9782c5a1ffd5e64b8be43a25f1', 't5llWFtASh1LwDjbSuAcA7gZ7d8MBz2J', 1, '2012-08-06 00:00:00', '2012-09-25 00:00:00'),
(6, '[email protected]', '7eb81f3fdd0c1c96951b85905da420f2', 'VoTVT17OHoGxaZwmit3g07uwwdx0FoFE', 1, '2012-11-01 00:00:00', '2012-12-14 00:00:00'),
(7, '[email protected]', '6f8c4eed1a70ab63cc010e49157871fb', 'eWGrN16jTtprvlNS3ynaUUIZwYZSaYv3', 1, '2012-06-05 00:00:00', '2013-01-10 00:00:00'),
(8, '[email protected]', 'e62798b951bab59d58bcbd6b49159bed', '8kLYNpRXd57yHh2NG8xeMedFLb9q3v4V', 1, '2012-09-25 00:00:00', '2012-11-18 00:00:00'),
(9, '[email protected]', '3ce9cf0d08e544eaace1f5280b7e79ad', 'WLwDFTyhbHpBFySCJ8a6pqgpXkHM1oAV', 1, '2012-11-16 00:00:00', '2013-01-18 00:00:00'),
(10, '[email protected]', 'badc7aadfb35a97f503d2d0643fc48aa', 'LYRv2m2DkHT0er5GqAtnX4DiZ7pAKtA4', 1, '2012-12-07 00:00:00', '2013-03-07 00:00:00'),
(11, '[email protected]', '9ebc2309a19d8b6cc30a78b627d2a8d0', 'PgJBPfjDqmY30b6w38H0QBqolgyAQPpE', 1, '2013-01-14 00:00:00', '2013-04-19 00:00:00'),
(12, '[email protected]', 'acb354fef1df68cea98f75bfb4e11efe', 'NeNAmefofIuB18TsKSlySz8hTLw4NJXv', 1, '2013-02-07 00:00:00', '2013-06-11 00:00:00'),
(13, '[email protected]', 'd1b76d1c9e9a0af1b243348d6aa208db', 'CdQkKYIAH7784lUQ7CbJtXDwcgCuVnql', 1, '2012-12-20 00:00:00', '2013-01-11 00:00:00'),
(14, '[email protected]', '4d5df99ea28d85bee1943057c0fa5af1', '5JD3H7F7FCgA3XySfVUqn7IvZRRvkyLD', 1, '2012-05-21 00:00:00', '2012-10-28 00:00:00'),
(15, '[email protected]', '701a6c379457427da2109b6a5cc4db4e', 'rh5PWxACiKkaWhL8XjRoEiTB4vOjjnRH', 1, '2012-11-17 00:00:00', '2012-12-01 00:00:00'),
(16, '[email protected]', 'cad0020cfe7be03ec30799f3a555614a', 'G2tZArYb7JR25d02apafzwZ0GFFb6tIP', 1, '2013-02-12 00:00:00', '2013-03-21 00:00:00'),
(17, '[email protected]', '6edddf2a896de8586087175dfff26b25', 're1Hjavg48wRI7Kt0GOA8HquU2fczMY1', 1, '2012-09-10 00:00:00', '2012-11-05 00:00:00'),
(18, '[email protected]', '44494012fa8815059890b206d78b15e4', '1pUQJIlNVYAAPv0HYmkt8hWrErMfJKAg', 1, '2012-08-27 00:00:00', '2012-09-03 00:00:00'),
(19, '[email protected]', '3d708043f9b48cbf0b6906609864659f', 'KxWAVWa3dtIEFg9smi8v0vX0lii8vHBI', 1, '2012-07-29 00:00:00', '2012-12-10 00:00:00'),
(20, '[email protected]', '5b07a28fc054211e3ca3b1ea79fdd5e4', 'TMBUkDfMyv6hRez3KVDnCfjLht3yLvJX', 1, '2012-08-01 00:00:00', '2012-11-02 00:00:00'),
(21, '[email protected]', '417ea2d71b3d61dd12c7bf126fc8e83d', 'p3L5I7yj8OSnR43VFi8jKGHSeNY7MpsI', 1, '2012-10-29 00:00:00', '2012-12-07 00:00:00'),
(22, '[email protected]', '0ccc0904c901d7bf847c42a70f7fb187', 'aIP5DI349uWKfng6V084FTAauGKCKhnI', 1, '2012-11-12 00:00:00', '2013-01-21 00:00:00'),
(23, '[email protected]', '02982989b8ceb5e2276e85633ff7fe02', 'tCr41u0Ap5wwyjki778lGcV9hYVHHOwg', 1, '2013-05-14 00:00:00', '2013-05-14 00:00:00'),
(24, '[email protected]', '4f3a9fa4ab53fd6d486e1825d0923e13', '9A9GY16GX7LY02Y3M9vWV0ruYZHToRQT', 1, '2013-05-24 00:00:00', '2013-05-24 00:00:00'),
(25, '[email protected]', '57a618989f36d9a360b28a3137d21ea7', 'VIlh0rsTTk16V9zcxqLvh2gclZyQOUqS', 1, '2013-05-07 00:00:00', '2013-05-07 00:00:00'),
(26, '[email protected]', '40df37ea86d9eca113d9792920ea8f5f', 'yRh5Y1wmaitivmZquChMWdmsw7Qp7Zlm', 1, '2013-06-01 00:00:00', '2013-06-01 00:00:00'),
(27, '[email protected]', '01a5da61e8b9cfa23fc60d755ae9dd41', 'MPNdWXkMvW2lUfD4B1GCjjc897xQGodV', 1, '2013-05-17 00:00:00', '2013-05-17 00:00:00'),
(28, '[email protected]', 'f67ea90a2e7d22c2a1f1efb5db58cbb9', 'gfFw77kT6E2cujRF4k40Eekp0374PqXk', 1, '2013-05-21 00:00:00', '2013-05-21 00:00:00'),
(29, '[email protected]', '7824ba805eb58f0d8b5e4607f3d70b09', 'RwdSqVGvp4hfSSsVLGhpbKoJwUmv7vG1', 1, '2013-05-27 00:00:00', '2013-05-27 00:00:00'),
(30, '[email protected]', 'be8ecb3abe6abd9a83235cd731d3b3f3', 'LnirideCAMlz2LoILM2fb7nPE8yiqnRT', 1, '2013-05-24 00:00:00', '2013-05-26 00:00:00'),
(31, 'stanisław.wó[email protected]', '50096c8cc2ee2915e26989554bf7b190', 'cDw2VtsHAFhyQlOoc7nYCHyivicq1mzG', 1, '2013-05-25 00:00:00', '2013-06-25 00:00:00'),
(32, '[email protected]', '81c71e87e09e4310e3b974c79a8f817b', 'HoGiVlunac11vDbbFHpoB0OdDOEkA6Uk', 1, '2013-07-01 00:00:00', '2013-07-01 00:00:00'),
(33, '[email protected]', '5a2b2e0fcff2d5d36bd0f988b1acfe41', 'VubVwUzwUC29gpVff7iZm3Aoe6LWba57', 1, '2013-07-01 00:00:00', '2013-07-01 00:00:00'),
(34, '[email protected]', 'cdcabbb42c07586007f367353c2bd241', 'YP6aWNCsANhgpmQ8vrrmZBb6L54sOxkp', 1, '2013-07-05 00:00:00', '2013-07-05 00:00:00'),
(35, '[email protected]', '9cad8e966c8b47a27e2703e51a75d23e', 'vFDJ8jISdVfCIMkTpbze5ECLMeritDe8', 1, '2013-07-06 00:00:00', '2013-07-08 00:00:00'),
(36, '[email protected]', '6d465b9782c5a1ffd5e64b8be43a25f1', 't5llWFtASh1LwDjbSuAcA7gZ7d8MBz2J', 1, '2013-07-11 00:00:00', '2013-07-11 00:00:00'),
(37, '[email protected]', '7eb81f3fdd0c1c96951b85905da420f2', 'VoTVT17OHoGxaZwmit3g07uwwdx0FoFE', 1, '2013-07-13 00:00:00', '2013-07-13 00:00:00'),
(38, '[email protected]', '6f8c4eed1a70ab63cc010e49157871fb', 'eWGrN16jTtprvlNS3ynaUUIZwYZSaYv3', 1, '2013-07-13 00:00:00', '2013-07-13 00:00:00'),
(39, '[email protected]', 'e62798b951bab59d58bcbd6b49159bed', '8kLYNpRXd57yHh2NG8xeMedFLb9q3v4V', 1, '2013-07-15 00:00:00', '2013-07-15 00:00:00'),
(40, '[email protected]', '3ce9cf0d08e544eaace1f5280b7e79ad', 'WLwDFTyhbHpBFySCJ8a6pqgpXkHM1oAV', 1, '2013-07-16 00:00:00', '2013-07-16 00:00:00'),
(41, '[email protected]', 'badc7aadfb35a97f503d2d0643fc48aa', 'LYRv2m2DkHT0er5GqAtnX4DiZ7pAKtA4', 1, '2013-07-17 00:00:00', '2013-07-17 00:00:00'),
(42, '[email protected]', '9ebc2309a19d8b6cc30a78b627d2a8d0', 'PgJBPfjDqmY30b6w38H0QBqolgyAQPpE', 1, '2013-07-17 00:00:00', '2013-07-17 00:00:00'),
(43, '[email protected]', 'acb354fef1df68cea98f75bfb4e11efe', 'NeNAmefofIuB18TsKSlySz8hTLw4NJXv', 1, '2013-07-17 00:00:00', '2013-07-17 00:00:00'),
(48, '[email protected]', 'd1b76d1c9e9a0af1b243348d6aa208db', 'CdQkKYIAH7784lUQ7CbJtXDwcgCuVnql', 1, '2013-07-18 00:00:00', '2013-07-18 00:00:00'),
(49, '[email protected]', '4d5df99ea28d85bee1943057c0fa5af1', '5JD3H7F7FCgA3XySfVUqn7IvZRRvkyLD', 1, '2013-07-18 00:00:00', '2013-07-18 00:00:00'),
(50, '[email protected]', '701a6c379457427da2109b6a5cc4db4e', 'rh5PWxACiKkaWhL8XjRoEiTB4vOjjnRH', 1, '2013-07-19 00:00:00', '2013-07-20 00:00:00'),
(51, '[email protected]', 'cad0020cfe7be03ec30799f3a555614a', 'G2tZArYb7JR25d02apafzwZ0GFFb6tIP', 1, '2013-08-22 00:00:00', '2013-08-22 00:00:00'),
(52, '[email protected]', '6edddf2a896de8586087175dfff26b25', 're1Hjavg48wRI7Kt0GOA8HquU2fczMY1', 1, '2013-08-23 00:00:00', '2013-08-23 00:00:00'),
(53, '[email protected]', '44494012fa8815059890b206d78b15e4', '1pUQJIlNVYAAPv0HYmkt8hWrErMfJKAg', 1, '2013-08-26 00:00:00', '2013-08-26 00:00:00'),
(54, '[email protected]', '3d708043f9b48cbf0b6906609864659f', 'KxWAVWa3dtIEFg9smi8v0vX0lii8vHBI', 1, '2013-08-27 00:00:00', '2013-08-27 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `customers`
--
CREATE TABLE `customers` (
`CustomerID` int(11) NOT NULL,
`FirstName` varchar(255) DEFAULT NULL,
`LastName` varchar(255) DEFAULT NULL,
`Address` varchar(255) DEFAULT NULL,
`City` varchar(255) DEFAULT NULL,
`Region` varchar(255) DEFAULT NULL,
`Country` varchar(255) DEFAULT NULL,
`Postal` varchar(255) DEFAULT NULL,
`Phone` varchar(255) DEFAULT NULL,
`Email` varchar(255) DEFAULT NULL,
`Privacy` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `customers`
--
INSERT INTO `customers` (`CustomerID`, `FirstName`, `LastName`, `Address`, `City`, `Region`, `Country`, `Postal`, `Phone`, `Email`, `Privacy`) VALUES
(1, 'Luís', 'Gonçalves', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', '+55 (12) 3923-5555', '[email protected]', '1'),
(2, 'Leonie', 'Köhler', 'Theodor-Heuss-Straße 34', 'Stuttgart', NULL, 'Germany', '70174', '+49 0711 2842222', '[email protected]', '1'),
(3, 'Bjørn', 'Hansen', 'Ullevålsveien 14', 'Oslo', NULL, 'Norway', '0171', '+47 22 44 22 22', '[email protected]', '1'),
(4, 'François', 'Tremblay', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', '+1 (514) 721-4711', '[email protected]', '1'),
(5, 'František', 'Wichterlová', 'Klanova 9/506', 'Prague', NULL, 'Czech Republic', '14700', '+420 2 4172 5555', '[email protected]', '2'),
(6, 'Astrid', 'Gruber', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienna', NULL, 'Austria', '1010', '+43 01 5134505', '[email protected]', '1'),
(7, 'Helena', 'Holý', 'Rilská 3174/6', 'Prague', NULL, 'Czech Republic', '14300', '+420 2 4177 0449', '[email protected]', '2'),
(8, 'Frank', 'Harris', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', '+1 (425) 882-8080', '[email protected]', '1'),
(9, 'Jack', 'Smith', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', '+1 (425) 882-8080', '[email protected]', '2'),
(10, 'Michelle', 'Brooks', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', '+1 (212) 221-3546', '[email protected]', '1'),
(11, 'Tim', 'Goyer', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', '+1 (408) 996-1010', '[email protected]', '1'),
(12, 'Robert', 'Brown', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', '+1 (416) 363-8888', '[email protected]', '2'),
(13, 'Edward', 'Francis', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', '+1 (613) 234-3322', '[email protected]', '2'),
(14, 'Mark', 'Philips', '8210 111 ST NW', 'Edmonto', 'AB', 'Canada', 'T6G 2C7', '+1 (780) 434-4554', '[email protected]', '1'),
(15, 'Martha', 'Silk', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', '+1 (902) 450-0450', '[email protected]', '1'),
(16, 'Aaron', 'Mitchell', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', '+1 (204) 452-6452', '[email protected]', '2'),
(17, 'Ellie', 'Sullivan', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', '+1 (867) 920-2233', '[email protected]', '2'),
(18, 'João', 'Fernandes', 'Rua da Assunção 53', 'Lisbon', NULL, 'Portugal', NULL, '+351 (213) 466-111', '[email protected]', '2'),
(19, 'Madalena', 'Sampaio', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', NULL, 'Portugal', NULL, '+351 (225) 022-448', '[email protected]', '2'),
(20, 'Hannah', 'Schneider', 'Tauentzienstraße 8', 'Berlin', NULL, 'Germany', '10789', '+49 030 26550280', '[email protected]', '1'),
(21, 'Camille', 'Bernard', '4, Rue Milton', 'Paris', NULL, 'France', '75009', '+33 01 49 70 65 65', '[email protected]', '1'),
(22, 'Isabelle', 'Mercier', '68, Rue Jouvence', 'Dijon', NULL, 'France', '21000', '+33 03 80 73 66 99', '[email protected]', '1'),
(23, 'Emma', 'Jones', '202 Hoxton Street', 'London', NULL, 'United Kingdom', 'N1 5LH', '+44 020 7707 0707', '[email protected]', '1'),
(24, 'Phil', 'Hughes', '113 Lupus St', 'London', NULL, 'United Kingdom', 'SW1V 3EN', '+44 020 7976 5722', '[email protected]', '1'),
(25, 'Manoj', 'Pareek', '12,Community Centre', 'Delhi', NULL, 'India', '110017', '+91 0124 39883988', '[email protected]', '1'),
(26, 'Puja', 'Srivastava', '3,Raj Bhavan Road', 'Bangalore', NULL, 'India', '560001', '+91 080 22289999', '[email protected]', '2'),
(27, 'Mark', 'Taylor', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', '+61 (02) 9332 3633', '[email protected]', '1'),
(28, 'Richard', 'Cunningham', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', '+1 (817) 924-7272', '[email protected]', '1'),
(29, 'Patrick', 'Gray', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', '+1 (520) 622-4200', '[email protected]', '2'),
(30, 'Terhi', 'Hämäläinen', 'Porthaninkatu 9', 'Helsinki', NULL, 'Finland', '00530', '+358 09 870 2000', '[email protected]', '2'),
(31, 'Stanisław', 'Wójcik', 'Ordynacka 10', 'Warsaw', NULL, 'Poland', '00-358', '+48 22 828 37 39', 'stanisław.wó[email protected]', '1'),
(32, 'Niklas', 'Schröder', 'Barbarossastraße 19', 'Berlin', NULL, 'Germany', '10779', '+49 030 2141444', '[email protected]', '1'),
(33, 'Dominique', 'Lefebvre', '8, Rue Hanovre', 'Paris', NULL, 'France', '75002', '+33 01 47 42 71 71', '[email protected]', '2'),
(34, 'Diego', 'Gutiérrez', '307 Macacha Güemes', 'Buenos Aires', NULL, 'Argentina', '1106', '+54 (0)11 4311 4333', '[email protected]', '2'),
(35, 'Ladislav', 'Kovács', 'Erzsébet krt. 58.', 'Budapest', NULL, 'Hungary', 'H-1073', NULL, '[email protected]', '1'),
(36, 'Lucas', 'Mancini', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', '+39 06 39733434', '[email protected]', '2'),
(37, 'Johannes', 'Van der Berg', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', '+31 020 6223130', '[email protected]', '1'),
(38, 'Enrique', 'Muñoz', 'C/ San Bernardo 85', 'Madrid', NULL, 'Spain', '28015', '+34 914 454 454', '[email protected]', '2'),
(39, 'Joakim', 'Johansson', 'Celsiusg. 9', 'Stockholm', NULL, 'Sweden', '11230', '+46 08-651 52 52', '[email protected]', '1'),
(40, 'Julia', 'Barnett', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', '+1 (801) 531-7272', '[email protected]', '1'),
(41, 'Frank', 'Ralston', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', '+1 (312) 332-3232', '[email protected]', '1'),
(42, 'John', 'Gordon', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', '+1 (617) 522-1333', '[email protected]', '2'),
(43, 'Heather', 'Leacock', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', '+1 (407) 999-7788', '[email protected]', '1'),
(48, 'Jennifer', 'Peterson', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', '+1 (604) 688-2255', '[email protected]', '1'),
(49, 'Michael', 'Mitchell', '5827 Bowness Road NW', 'Calgary', 'AB', 'Canada', 'T3B 0C5', '+1 (403) 246-9887', '[email protected]', '1'),
(50, 'Steve', 'Johnson', '7727B 41 Ave SW', 'Calgary', 'AB', 'Canada', 'T3B 1Y7', '+1 (780) 836-9987', '[email protected]', '1'),
(51, 'Kara', 'Nielsen', 'Sønder Boulevard 51', 'Copenhagen', NULL, 'Denmark', '1720', '+453 3331 9991', '[email protected]', '1'),
(52, 'Kathy', 'Chase', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', '+1 (775) 223-7665', '[email protected]', '2'),
(53, 'Hugh', 'O\'Reilly', '3 Chatham Street', 'Dublin', NULL, 'Ireland', NULL, '+353 01 6792424', '[email protected]', '1'),
(54, 'Luis', 'Rojas', 'Calle Lira, 198', 'Santiago', NULL, 'Chile', NULL, '+56 (0)2 635 4444', '[email protected]', '2');
-- --------------------------------------------------------
--
-- Table structure for table `eras`
--
CREATE TABLE `eras` (
`EraID` int(11) NOT NULL,
`EraName` varchar(255) DEFAULT NULL,
`EraYears` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `eras`
--
INSERT INTO `eras` (`EraID`, `EraName`, `EraYears`) VALUES
(1, 'Medieval', 'Before 1400'),
(2, 'Renaissance', '1400-1550'),
(3, 'Post Renaissance', '1550-1700'),
(4, 'Early Modern', '1700-1875'),
(5, 'Modern', '1875-1945'),
(6, 'Contemporary', 'After 1945');
-- --------------------------------------------------------
--
-- Table structure for table `galleries`
--
CREATE TABLE `galleries` (
`GalleryID` int(11) NOT NULL,
`GalleryName` varchar(255) DEFAULT NULL,
`GalleryNativeName` varchar(255) DEFAULT NULL,
`GalleryCity` varchar(255) DEFAULT NULL,
`GalleryAddress` varchar(255) DEFAULT NULL,
`GalleryCountry` varchar(255) DEFAULT NULL,
`Latitude` double DEFAULT NULL,
`Longitude` double DEFAULT NULL,
`GalleryWebSite` varchar(255) DEFAULT NULL,
`FlickrPlaceID` varchar(255) DEFAULT NULL,
`YahooWoeID` varchar(255) DEFAULT NULL,
`GooglePlaceID` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `galleries`
--
INSERT INTO `galleries` (`GalleryID`, `GalleryName`, `GalleryNativeName`, `GalleryCity`, `GalleryAddress`, `GalleryCountry`, `Latitude`, `Longitude`, `GalleryWebSite`, `FlickrPlaceID`, `YahooWoeID`, `GooglePlaceID`) VALUES
(2, 'Prado Museum', 'Museo del Prado', 'Madrid', 'Paseo del Prado, s/n, 28014', 'Spain', 40.413393, -3.691953, 'http://www.museodelprado.es/', 'XrSazRhTUrh4j1shyQ', '20219885', 'ChIJ7aLYZp0oQg0RWoitk33wlBA'),
(3, 'State Museum', 'Staatliche Museen', 'Berlin', 'Stauffenbergstraße 41, 10785', 'Germany', 52.50861, 13.36472, 'http://www.smb.museum/', 'VULyzjBXVb89VXc', '675695', 'ChIJ6c-eGLRRqEcR_S0RGNMMbWw'),
(4, 'Uffizi Museum', 'Galleria degli Uffizi', 'Florence', 'Piazzale degli Uffizi, 6, 50122', 'Italy', 43.76863888, 11.25521, 'http://www.polomuseale.firenze.it/en/musei/?m=uffizi', 'GKD_20BTUrvaoc1jyA', '20150278', 'ChIJgZDFjQBUKhMRzcTwm8i33s0'),
(5, 'National Gallery', 'National Gallery', 'London', 'Trafalgar Square', 'UK', 51.5086, -0.1283, 'http://www.nationalgallery.org.uk/', '1EPGyGtTUrrDXJmGCA', '20094364', 'ChIJeclqF84EdkgRtKAjTmWFr0I'),
(6, 'Metropolitan Museum of Art', 'Metropolitan Museum of Art', 'New York City', '1000 5th Ave', 'USA', 40.7794472, -73.963111, 'http://www.metmuseum.org', 'zzA0hmBTUb9GY797pA', '23511893', 'ChIJb8Jg9pZYwokR-qHGtvSkLzs'),
(7, 'National Gallery of Art', 'National Gallery of Art', 'Washington, DC', '6th & Constitution Ave NW', 'USA', 38.89147, -77.02001, 'http://www.nga.gov/content/ngaweb.html', 'i0jd9gJTWr3c.68Wbg', '28751392', 'ChIJSYxSO5u3t4kRm4eyKw_Y7Kg'),
(11, 'The Art Institute of Chicago', 'The Art Institute of Chicago', 'Chicago', '111 S Michigan Ave', 'USA', 41.8794444, -87.62388, 'http://www.artic.edu/', 'S7hSKqFTVr6exT4J', '2441891', 'ChIJlUbZ4qMsDogR3tCinMzzKUg'),
(13, 'Philadelphia Museum of Art', 'Philadelphia Museum of Art', 'Philadelphia', '2600 Benjamin Franklin Pkwy', 'USA', 39.966, -75.181, 'http://www.philamuseum.org/', 'xDQDYKNTVrp.RmQV', '2401619', 'ChIJ_5CoRebFxokR08ApAyF2KIs'),
(16, 'Louvre Museum', 'Musée du Louvre', 'Paris', '75001', 'France', 48.8611, 2.33638, 'http://www.louvre.fr/', '36CFHdZUV7KNOKK4LQ', '55843752', 'ChIJ8XJ_6CVu5kcRWP1XT9TkBt4'),
(17, 'Tate Britain', 'Tate Britain', 'London', 'Millbank, Westminster', 'UK', 51.490833, -0.127222, 'http://www.tate.org.uk/visit/tate-britain', 'BjVxeKdVU7z_Fw', '41676', 'ChIJvWjCxekEdkgRoCgQVJHZH_U'),
(18, 'Art History Museum', 'Kunsthistorisches Museum', 'Vienna', 'Maria-Theresien-Platz, 1010', 'Austria', 48.2037, 16.3614, 'http://www.khm.at/', 'GmGVGDJUV7vR.KE', '551756', 'ChIJ8XfPY5oHbUcRQbimbLVSYG8'),
(19, 'Musée d\'Orsay', 'Musée d\'Orsay', 'Paris', '1 Rue de la Légion d\'Honneur, 75007', 'France', 48.86, 2.327, 'http://www.musee-orsay.fr/', '.jdUillUV7Kt1uHqAg', '55843777', 'ChIJG5Qwtitu5kcR2CNEsYy9cdA'),
(20, 'Museum of Modern Art', 'Museum of Modern Art', 'New York', '11 W 53rd St', 'USA', 40.761484, -73.977664, 'http://www.moma.org/', 'byMt1GpTWrhtqOpahg', '28288823', 'ChIJKxDbe_lYwokRVf__s8CPn-o'),
(22, 'Belvedere Gallery', 'Österreichische Galerie Belvedere', 'Vienna', 'Schloss Belvedere, Prinz Eugen-Straße 27, 1030', 'Austria', 48.19138, 16.38, 'http://www.belvedere.at/', 'wVuFk_FUV7sGJng', '551795', 'ChIJpZ4LAn0HbUcRMNCmNwlXeN8'),
(24, 'Hermitage Museum', 'Hermitage Museum', 'St. Petersburg', 'Palace Square, 2', 'Russia', 59.941, 30.3129, 'http://www.hermitagemuseum.org/', 'BfjabGxYUrw0knsYVA', '90600519', 'ChIJ6eLLMgsxlkYR_F1QoCoDTgc'),
(27, 'J. Paul Getty Museum', 'J. Paul Getty Museum', 'Los Angeles', '1200 Getty Center Dr', 'USA', 34.0775, -118.475, 'http://www.getty.edu/museum/', '6A92XzRTWr3WXDwJwQ', '28751324', 'ChIJpbxvgcW8woARza8I4QhFyyY'),
(28, 'National Gallery of Norway', 'Nationalgalleriet', 'Oslo', 'Universitetsgata 13, 0164', 'Norway', 59.9162, 10.7375, 'http://www.nasjonalmuseet.no/', 'lQQM7sZZVL.Hngs', '865764', 'ChIJOdGZU3xuQUYRRpZUX1Z3YUM'),
(29, 'Van Gogh Museum', 'Van Gogh Museum', 'Amsterdam', 'Museumplein 6, 1071 DJ', 'Netherlands', 52.358417, 4.881083, 'http://www.vangoghmuseum.nl/', 'xfcEFYhWULKtjYI', '728410', 'ChIJX1rTlu8JxkcRGsV8-a4oKMI'),
(30, 'Rijksmuseum', 'Rijksmuseum', 'Amsterdam', 'Museumstraat 1, 1071 XX', 'Netherlands', 52.36, 4.885278, 'http://www.rijksmuseum.nl/', 'xfcEFYhWULKtjYI', '728410', 'ChIJ5Ra7we4JxkcRhYVAaq5zQ9U'),
(32, 'Royal Picture Gallery Mauritshuis', 'Royal Picture Gallery Mauritshuis', 'The Hague', 'Plein 29, 2511 CS Den Haag', 'Netherlands', 52.080556, 4.314444, 'http://www.mauritshuis.nl/', 'gycEsvZWUbkGyFQ', '733553', 'ChIJEa9zVSO3xUcRXKUtUE5Qgbk'),
(34, 'Musée du Petit Palais', 'Petit Palais', 'Paris', 'Avenue Winston Churchill, 75008', 'France', 48.866084, 2.314759, 'http://www.parismusees.paris.fr/', 'a5KHUTVUVL6wFRTYsQ', '56448116', 'ChIJSUOPztFv5kcRnEbSPYG-9fM'),
(35, 'Solomon R. Guggenheim Museum', 'Solomon R. Guggenheim Museum', 'New York', '1071 5th Ave', 'USA', 40.782975, -73.958992, 'http://www.guggenheim.org/new-york', '1AJK9adTWr3qYGsuLA', '28751193', 'ChIJmZ5emqJYwokRuDz79o0coAQ'),
(36, 'The Courtauld Institute of Art', 'The Courtauld Institute of Art', 'London', 'Strand', 'UK', 51.510833, -0.117222, 'http://www.courtauld.ac.uk/', 'AZPsrPxTUbyolQ', '23636', 'ChIJvZhvcMoEdkgRB5qnzGs_VNw'),
(37, 'Barnes Foundation', 'Barnes Foundation', 'Philadelphia', '2025 Benjamin Franklin Pkwy', 'USA', 39.960659, -75.172523, 'http://www.barnesfoundation.org/', 'y3CJNJRTW7m785fi2A', '29389142', 'ChIJrcsBU8vHxokR4FXP2BplJks'),
(38, 'Sistine Chapel', 'Sistine Chapel', 'Rome', '00120, Vatican City', 'Italy', 41.903056, 12.454444, 'http://mv.vatican.va/', 'xfftaFtTUb6gXRUjTg', '23424986', 'ChIJ268jxWVgLxMRIj61f4fIFqs'),
(41, 'Picture Gallery', 'Gemäldegalerie', 'Berlin', 'Gemäldegalerie, 10785', 'Germany', 52.508472, 13.365417, 'http://www.smb.museum/', 'VULyzjBXVb89VXc', '675695', 'ChIJveOIOrRRqEcRIsZHHE5dQxA'),
(42, 'Brooklyn Museum', 'Brooklyn Museum', 'New York', '200 Eastern Pkwy', 'USA', 40.671306, -73.96375, 'http://www.brooklynmuseum.org/', '9R6NtodTWr2le.Hw.A', '28751453', 'ChIJyTmcRApbwokR-oXJRqpVI8Y'),
(43, 'Old Masters Gallery', 'Gemäldegalerie Alte Meister', 'Dresden', 'Theaterplatz 1, 01067', 'Germany', 51.053611, 13.734722, 'http://www.skd.museum/', 'fr.j5iRTVLL4Bs4Wag', '26822156', 'ChIJE6ZpuWjPCUcR0dN6tE-_u6o'),
(49, 'Museum of Fine Arts', 'Museum of Fine Arts', 'Boston', '465 Huntington Ave', 'USA', 42.339167, -71.094167, 'http://www.mfa.org/', 'c1_W2UJUVL.DGU.MbQ', '56574533', 'ChIJS3rn5w1644kRZNWVxNY_Ay8'),
(50, 'National Gallery of Scotland', 'National Gallery of Scotland', 'Edinburgh', 'The Mound', 'Scotland', 55.950917, -3.195667, 'http://www.nationalgalleries.org/', 'AtPXsOpTUrrN5fImVw', '20094252', 'ChIJ68bm6kjGh0gRkyF0XlT5Rww'),
(51, 'Albright–Knox Art Gallery', 'Albright–Knox Art Gallery', 'Buffalo', '1285 Elmwood Ave', 'USA', 42.932078, -78.877072, 'http://www.albrightknox.org/', 'dLCnqMtUV7L6BRUi6g', '55806539', 'ChIJe6SdptAS04kRzppu7BanDfk'),
(52, 'Detroit Institute of Arts', 'Detroit Institute of Arts', 'Detroit', '5200 Woodward Ave', 'USA', 42.359292, -83.064797, 'http://www.dia.org/', 'aLB8_gVUVLt45Q4MaQ', '56192713', 'ChIJO6USub3SJIgRshN1AKZBH20'),
(70, 'Indianapolis Museum of Art', 'Indianapolis Museum of Art', 'Indianapolis', '4000 Michigan Rd', 'USA', 39.8259, -86.1855, 'http://www.imamuseum.org/', '42QAS0hTV7j9Fq9a', '2523727', 'ChIJJYnup7pWa4gRheOf5vIg2JE'),
(81, 'Brera Art Gallery', 'Pinacoteca di Brera', 'Milan', 'Via Brera, 28, 20121', 'Italy', 45.471944, 9.188056, 'http://www.brera.beniculturali.it/', '49Gidk1WU7JxrFY', '718345', 'ChIJH05-WBHuhkcRNjexLI56Nhs');
-- --------------------------------------------------------
--
-- Table structure for table `genres`
--
CREATE TABLE `genres` (
`GenreID` int(11) NOT NULL,
`GenreName` varchar(50) NOT NULL,
`EraID` int(11) DEFAULT NULL,
`Description` longtext DEFAULT NULL,
`Link` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `genres`
--
INSERT INTO `genres` (`GenreID`, `GenreName`, `EraID`, `Description`, `Link`) VALUES
(1, 'Cubism', 5, '<strong>Cubism</strong> was a 20th century avant-garde art movement, pioneered by Pablo Picasso and Georges Braque, that revolutionized European painting and sculpture, and inspired related movements in music, literature and architecture. In cubist artworks, objects are broken up, analyzed, and re-assembled in an abstracted form—instead of depicting objects from one viewpoint, the artist depicts the subject from a multitude of viewpoints to represent the subject in a greater context. Often the surfaces intersect at seemingly random angles, removing a coherent sense of depth. The background and object planes interpenetrate one another to create the shallow ambiguous space, one of cubism\'s distinct characteristics.', 'http://en.wikipedia.org/wiki/Cubism'),
(33, 'Romanticism', 4, '<strong>Romanticism</strong> was an artistic, literary and intellectual movement that originated in the second half of the 18th century in Europe, and gained strength in reaction to the Industrial Revolution. In part, it was a revolt against aristocratic social and political norms of the Age of Enlightenment and a reaction against the scientific rationalization of nature. It was embodied most strongly in the visual arts, music, and literature, but had a major impact on historiography, education[4] and natural history.', 'http://en.wikipedia.org/wiki/Romanticism'),
(34, 'Realism', 4, '<strong>Realism</strong> as a tendency in 19th century art was related to similar movements in the theatre, literature and opera. All emphasized the depiction of everyday subjects, but by no means always discarding classical, Romantic or sentimental approaches to their treatment. The movement began in the 1850s in France. One of Gustave Courbet\'s most important works is A Burial at Ornans, 1849-1850, a canvas recording an event which he witnessed in September 1848. Courbet\'s painting of the funeral of his grand uncle became the first grand statement of the Realist style.', 'http://en.wikipedia.org/wiki/Realist_painting'),
(35, 'Impressionism', 4, '<strong>Impressionism</strong> was a 19th-century art movement that originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s. The name of the style is derived from the title of a Claude Monet work, Impression, soleil levant (Impression, Sunrise), which provoked the critic Louis Leroy to coin the term in a satiric review published in the Parisian newspaper Le Charivari.', 'http://en.wikipedia.org/wiki/Impressionism'),
(36, 'Post-Impressionism', 5, '<strong>Post-Impressionism</strong> is the term coined by the British artist and art critic Roger Fry in 1910 to describe the development of French art since Manet. Fry used the term when he organized the 1910 exhibition Manet and Post-Impressionism. Post-Impressionists extended Impressionism while rejecting its limitations: they continued using vivid colours, thick application of paint, distinctive brush strokes, and real-life subject matter, but they were more inclined to emphasize geometric forms, to distort form for expressive effect, and to use unnatural or arbitrary colour.', 'http://en.wikipedia.org/wiki/Post_Impressionism'),
(40, 'Fauvism', 5, '<strong>Fauvism</strong> is the style of les Fauves (French for \"the wild beasts\"), a short-lived and loose group of early twentieth-century Modern artists whose works emphasized painterly qualities and strong colour over the representational or realistic values retained by Impressionism. While Fauvism as a style began around 1900 and continued beyond 1910, the movement as such lasted only a few years, 1904–1908, and had three exhibitions. The leaders of the movement were Henri Matisse and André Derain.', 'http://en.wikipedia.org/wiki/Fauvism'),
(47, 'Surrealism', 5, '<strong>Surrealism</strong> is a cultural movement that began in the early 1920s, and is best known for the visual artworks and writings of the group members. Surrealist works feature the element of surprise, unexpected juxtapositions and non sequitur; however, many Surrealist artists and writers[who?] regard their work as an expression of the philosophical movement first and foremost, with the works being an artifact. Leader André Breton was explicit in his assertion that Surrealism was above all a revolutionary movement.', 'http://en.wikipedia.org/wiki/Surrealism'),
(56, 'Expressionism', 5, '<strong>Expressionism</strong> was a modernist movement, initially in poetry and painting, originating in Germany at the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists sought to express meaning or emotional experience rather than physical reality.', 'http://en.wikipedia.org/wiki/Expressionism'),
(64, 'Symbolism', 5, '<strong>Symbolism</strong> was a late nineteenth-century art movement of French, Russian and Belgian origin in poetry and other arts. The aesthetic was developed by Stéphane Mallarmé and Paul Verlaine during the 1860s and \'70s. In the 1880s, the aesthetic was articulated by a series of manifestos and attracted a generation of writers. The name \"symbolist\" itself was first applied by the critic Jean Moréas, who invented the term to distinguish the symbolists from the related decadents of literature and of art.', 'http://en.wikipedia.org/wiki/Symbolism_(arts)'),
(76, 'Neoclassicism', 5, '<strong>Neoclassicism</strong> is the name given to Western movements in the decorative and visual arts, literature, theatre, music, and architecture that draw inspiration from the \"classical\" art and culture of Ancient Greece or Ancient Rome. One such movement was dominant in Europe from the mid-18th to the 19th centuries.', 'http://en.wikipedia.org/wiki/Neoclassicism'),
(77, 'Northern Renaissance', 2, 'The <strong>Northern Renaissance</strong> is the Renaissance in northern Europe. Before 1597 Italian Renaissance humanism had little influence outside Italy. From the late 15th century the ideas spread around Europe. This influenced the German Renaissance, French Renaissance, English Renaissance, Renaissance in the Low Countries, Polish Renaissance and other national and localized movements, each with different characteristics and strengths.', 'http://en.wikipedia.org/wiki/Northern_Renaissance'),
(78, 'Renaissance', 2, '<strong>Renaissance</strong> art is the painting, sculpture and decorative arts of that period of European history known as the Renaissance, emerging as a distinct style in Italy in about 1400, in parallel with developments which occurred in philosophy, literature, music and science. Renaissance art, perceived as a \"rebirth\" of ancient traditions, took as its foundation the art of Classical antiquity, but transformed that tradition by the absorption of recent developments in the art of Northern Europe and by application of contemporary scientific knowledge. Renaissance art, with Renaissance Humanist philosophy, spread throughout Europe, affecting both artists and their patrons with the development of new techniques and new artistic sensibilities. Renaissance art marks the transition of Europe from the medieval period to the Early modern age.', 'http://en.wikipedia.org/wiki/Renaissance_art'),
(79, 'High Renaissance', 2, '<strong>High Renaissance</strong> is the period denoting the apogee of the visual arts in the Italian Renaissance. The High Renaissance period is traditionally taken to begin in the 1490s, with Leonardo\'s fresco of the Last Supper in Milan and the death of Lorenzo de\' Medici in Florence, and to have ended in 1527 with the sacking of Rome by the troops of Charles V. This term was first used in German (Hochrenaissance) in the early nineteenth century, and has its origins in the \"High Style\" of painting and sculpture described by Johann Joachim Winckelmann. Over the last twenty years, use of the term has been frequently criticized by academic art historians for oversimplifying artistic developments, ignoring historical context, and focusing only on a few iconic works.', 'http://en.wikipedia.org/wiki/High_Renaissance'),
(80, 'Mannerism', 3, '<strong>Mannerism</strong> is a period of European art that emerged from the later years of the Italian High Renaissance around 1520. It lasted until about 1580 in Italy, when the Baroque style began to replace it, but Northern Mannerism continued into the early 17th century.', 'http://en.wikipedia.org/wiki/Mannerism'),
(81, 'International Gothic', 1, '<strong>International Gothic</strong> is a phase of Gothic art which developed in Burgundy, Bohemia, France and northern Italy in the late 14th century and early 15th century.[1] It then spread very widely across Western Europe, hence the name for the period, which was introduced by the French art historian Louis Courajod at the end of the 19th century.', 'http://en.wikipedia.org/wiki/International_Gothic'),
(83, 'Rococo', 3, '<strong>Rococo</strong>, less commonly roccoco, also referred to as \"Late Baroque\", is an 18th-century artistic movement and style, which affected several aspects of the arts including painting, sculpture, architecture, interior design, decoration, literature, music and theatre. The Rococo developed in the early part of the 18th century in Paris, France as a reaction against the grandeur, symmetry and strict regulations of the Baroque, especially that of the Palace of Versailles. In such a way, Rococo artists opted for a more jocular, florid and graceful approach to Baroque art and architecture. Rococo art and architecture in such a way was ornate and made strong usage of creamy, pastel-like colours, asymmetrical designs, curves and gold. Unlike the more politically focused Baroque, the Rococo had more playful and often witty artistic themes. With regards to interior decoration, Rococo rooms were designed as total works of art with elegant and ornate furniture, small sculptures, ornamental mirrors, and tapestry complementing architecture, reliefs, and wall paintings. The Rococo additionally played an important role in theatre. In the book The Rococo, it is written that there was no other culture which \"has produced a wittier, more elegant, and teasing dialogue full of elusive and camouflaging language and gestures, refined feelings and subtle criticism\" than Rococo theatre, especially that of France.', 'http://en.wikipedia.org/wiki/Rococo'),
(84, 'Baroque', 3, 'The <strong>Baroque</strong> is a period of artistic style that used exaggerated motion and clear, easily interpreted detail to produce drama, tension, exuberance, and grandeur in sculpture, painting, architecture, literature, dance and music. The style began around 1600 in Rome, Italy and spread to most of Europe. The popularity and success of the Baroque style was encouraged by the Roman Catholic Church, which had decided at the time of the Council of Trent, in response to the Protestant Reformation, that the arts should communicate religious themes in direct and emotional involvement. The aristocracy also saw the dramatic style of Baroque architecture and art as a means of impressing visitors and expressing triumphant power and control. Baroque palaces are built around an entrance of courts, grand staircases and reception rooms of sequentially increasing opulence.', 'http://en.wikipedia.org/wiki/Baroque'),
(87, 'Dutch Golden Age', 3, '<strong>Dutch Golden Age</strong> painting spans the 17th century, during and after the later part of the Eighty Years\' War (1568–1648) for Dutch independence. Although Dutch painting of the Golden Age comes in the general European period of Baroque painting, and often shows many of its characteristics, most lacks the idealization and love of splendour typical of much Baroque work, including that of neighbouring Flanders. Most work, including that for which the period is best known, reflects the traditions of detailed realism inherited from Early Netherlandish painting.', 'https://en.wikipedia.org/wiki/Dutch_Golden_Age_painting'),
(88, 'Academic Art', 4, '<strong>Academic Art<strong> is a style of painting and sculpture produced under the influence of European academies of art. Specifically, academic art is the art and artists influenced by the standards of the French Académie des Beaux-Arts, which practiced under the movements of Neoclassicism and Romanticism, and the art that followed these two movements in the attempt to synthesize both of their styles, and which is best reflected by the paintings of William-Adolphe Bouguereau, Thomas Couture, and Hans Makart. In this context it is often called \"academism\", \"academicism\", \"L\'art pompier\", and \"eclecticism\", and sometimes linked with \"historicism\" and \"syncretism\". The art influenced by academies in general is also called \"academic art.\" In this context as new styles are embraced by academics, the new styles come to be considered academic, thus what was at one time a rebellion against academic art becomes academic art.', 'https://en.wikipedia.org/wiki/Academic_art');
-- --------------------------------------------------------
--
-- Table structure for table `orderdetails`
--
CREATE TABLE `orderdetails` (
`OrderDetailID` int(11) NOT NULL,
`OrderID` int(11) DEFAULT NULL,
`PaintingID` int(11) DEFAULT NULL,
`FrameID` int(11) DEFAULT NULL,
`GlassID` int(11) DEFAULT NULL,
`MattID` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `orderdetails`
--
INSERT INTO `orderdetails` (`OrderDetailID`, `OrderID`, `PaintingID`, `FrameID`, `GlassID`, `MattID`) VALUES
(1, 102, 559, 9, 5, 19),
(2, 477, 230, 3, 5, 9),
(3, 93, 563, 12, 5, 6),
(4, 324, 16, 11, 5, 35),
(5, 440, 432, 4, 5, 19),
(6, 252, 213, 11, 5, 3),
(7, 490, 51, 3, 2, 10),
(8, 299, 430, 10, 5, 9),
(9, 82, 195, 4, 2, 35),
(10, 160, 351, 17, 5, 33),
(11, 260, 567, 6, 2, 26),
(12, 126, 538, 2, 5, 35),
(13, 91, 65, 18, 2, 35),
(14, 247, 577, 15, 2, 35),
(15, 337, 42, 12, 5, 24),
(16, 68, 571, 14, 5, 35),
(17, 272, 425, 18, 5, 28),
(18, 305, 564, 18, 5, 35),
(19, 483, 426, 15, 5, 26),
(20, 391, 587, 4, 5, 12),
(21, 234, 399, 4, 5, 35),
(22, 343, 596, 2, 2, 35),
(23, 459, 41, 12, 5, 31),
(24, 480, 588, 6, 5, 9),
(25, 157, 230, 4, 5, 2),
(26, 58, 427, 18, 5, 31),
(27, 338, 498, 12, 2, 35),
(28, 253, 550, 1, 5, 29),
(29, 189, 539, 12, 5, 35),
(30, 277, 428, 15, 5, 35),
(31, 290, 51, 18, 1, 25),
(32, 19, 408, 4, 5, 1),
(33, 436, 427, 12, 5, 5),
(34, 398, 63, 15, 5, 27),
(35, 284, 42, 14, 5, 32),
(36, 200, 443, 12, 5, 35),
(37, 263, 516, 8, 5, 10),
(38, 5, 30, 18, 5, 19),
(39, 2, 399, 18, 5, 35),
(40, 194, 578, 12, 5, 22),
(41, 275, 192, 18, 3, 16),
(42, 143, 484, 18, 5, 34),
(43, 264, 60, 9, 3, 35),
(44, 7, 11, 3, 5, 15),
(45, 59, 425, 10, 5, 14),
(46, 326, 48, 18, 5, 35),
(47, 398, 401, 18, 5, 14),
(48, 73, 81, 5, 2, 14),
(49, 266, 484, 9, 3, 23),
(50, 227, 573, 18, 5, 20),
(51, 136, 484, 18, 5, 27),
(52, 480, 291, 13, 1, 31),
(53, 442, 58, 18, 5, 1),
(54, 478, 419, 6, 3, 22),
(55, 97, 463, 18, 5, 33),
(56, 234, 47, 4, 5, 33),
(57, 130, 383, 12, 5, 5),
(58, 114, 433, 1, 2, 21),
(59, 200, 549, 18, 5, 20),
(60, 47, 231, 18, 5, 32),
(61, 422, 580, 1, 5, 35),
(62, 259, 225, 18, 5, 25),
(63, 45, 48, 18, 5, 20),
(64, 122, 101, 6, 5, 13),
(65, 10, 514, 3, 5, 13),
(66, 101, 527, 8, 2, 8),
(67, 165, 392, 18, 1, 12),
(68, 386, 46, 18, 4, 35),
(69, 88, 593, 14, 5, 35),
(70, 354, 578, 1, 5, 33),
(71, 317, 520, 4, 5, 26),
(72, 232, 588, 1, 5, 35),
(73, 275, 498, 18, 1, 14),
(74, 286, 545, 18, 4, 1),
(75, 443, 574, 8, 5, 35),
(76, 270, 574, 4, 5, 20),
(77, 357, 548, 6, 5, 16),
(78, 162, 235, 18, 4, 28),
(79, 138, 575, 1, 5, 4),
(80, 351, 36, 5, 5, 26),
(81, 394, 554, 3, 5, 4),
(82, 413, 49, 18, 5, 35),
(83, 438, 294, 11, 5, 35),
(84, 450, 425, 18, 5, 4),
(85, 236, 391, 13, 5, 29),
(86, 447, 548, 9, 5, 35),
(87, 403, 443, 11, 2, 17),
(88, 158, 457, 8, 5, 2),
(89, 119, 37, 12, 5, 3),
(90, 438, 348, 18, 5, 35),
(91, 317, 369, 14, 2, 35),
(92, 319, 574, 18, 5, 25),
(93, 162, 430, 18, 5, 24),
(94, 486, 425, 11, 5, 32),
(95, 30, 349, 18, 4, 35),
(96, 382, 172, 18, 1, 7),
(97, 239, 399, 18, 3, 18),
(98, 199, 581, 7, 4, 10),
(99, 211, 426, 10, 5, 25),
(100, 447, 52, 12, 5, 14),
(101, 212, 333, 12, 2, 35),
(102, 495, 288, 18, 5, 35),
(103, 116, 157, 18, 5, 35),
(104, 390, 526, 1, 5, 2),
(105, 63, 556, 12, 2, 24),
(106, 38, 333, 8, 5, 14),
(107, 404, 83, 14, 5, 35),
(108, 332, 549, 12, 3, 30),
(109, 182, 546, 15, 4, 24),
(110, 144, 399, 18, 5, 35),
(111, 53, 428, 18, 5, 34),
(112, 378, 530, 2, 5, 21),
(113, 368, 46, 18, 5, 18),
(114, 159, 482, 13, 5, 28),
(115, 308, 37, 3, 5, 9),
(116, 399, 408, 18, 5, 8),
(117, 170, 406, 5, 5, 24),
(118, 75, 549, 8, 3, 16),
(119, 188, 565, 16, 4, 24),
(120, 45, 431, 2, 5, 35),
(121, 226, 509, 8, 5, 10),
(122, 198, 501, 18, 5, 24),
(123, 60, 451, 18, 5, 24),
(124, 137, 14, 6, 3, 33),
(125, 278, 430, 9, 5, 2),
(126, 174, 514, 12, 5, 7),
(127, 231, 388, 12, 5, 31),
(128, 396, 549, 18, 2, 35),
(129, 224, 588, 18, 5, 6),
(130, 164, 509, 18, 5, 10),
(131, 179, 165, 18, 5, 22),
(132, 464, 392, 7, 4, 11),
(133, 252, 472, 5, 2, 3),
(134, 127, 296, 17, 2, 31),
(135, 39, 439, 12, 5, 35),
(136, 361, 519, 16, 5, 12),
(137, 71, 581, 15, 5, 30),
(138, 173, 48, 3, 4, 10),
(139, 51, 588, 10, 2, 1),
(140, 363, 58, 18, 5, 24),
(141, 484, 568, 1, 4, 2),
(142, 204, 576, 16, 3, 35),
(143, 28, 598, 4, 5, 35),
(144, 41, 48, 18, 5, 35),
(145, 410, 438, 13, 2, 35),
(146, 330, 581, 16, 5, 35),
(147, 401, 369, 12, 4, 35),
(148, 321, 60, 17, 1, 18),
(149, 197, 50, 18, 5, 2),
(150, 187, 374, 5, 5, 35),
(151, 151, 15, 12, 5, 20),
(152, 179, 192, 18, 5, 28),
(153, 76, 534, 12, 5, 3),
(154, 45, 425, 18, 5, 32),
(155, 349, 590, 18, 5, 12),
(156, 409, 539, 9, 4, 20),
(157, 204, 214, 5, 5, 17),
(158, 266, 157, 3, 2, 29),
(159, 486, 36, 5, 5, 14),
(160, 1, 529, 17, 5, 35),
(161, 325, 535, 10, 2, 12),
(162, 72, 554, 9, 5, 35),
(163, 119, 516, 6, 5, 10),
(164, 367, 339, 18, 5, 10),
(165, 37, 588, 3, 2, 12),
(166, 240, 508, 18, 5, 31),
(167, 109, 393, 4, 4, 24),
(168, 26, 47, 4, 5, 35),
(169, 37, 426, 18, 5, 35),
(170, 420, 103, 13, 5, 33),
(171, 314, 60, 4, 3, 17),
(172, 201, 398, 18, 3, 29),
(173, 379, 587, 18, 3, 19),
(174, 207, 581, 5, 3, 4),
(175, 152, 504, 18, 5, 35),
(176, 133, 463, 18, 5, 30),
(177, 406, 58, 10, 5, 13),
(178, 208, 393, 3, 5, 16),
(179, 81, 426, 18, 5, 19),
(180, 221, 516, 18, 5, 35),
(181, 253, 457, 18, 2, 35),
(182, 357, 570, 12, 5, 35),
(183, 159, 426, 4, 5, 19),
(184, 210, 60, 12, 5, 5),
(185, 171, 588, 4, 4, 35),
(186, 378, 582, 8, 2, 24),
(187, 432, 379, 4, 5, 5),
(188, 485, 172, 18, 5, 27),
(189, 347, 290, 18, 4, 11),
(190, 254, 333, 3, 2, 35),
(191, 23, 459, 18, 5, 27),
(192, 243, 213, 18, 5, 10),
(193, 86, 408, 4, 4, 6),
(194, 183, 45, 12, 5, 2),
(195, 396, 399, 9, 5, 35),
(196, 230, 300, 3, 2, 35),
(197, 159, 63, 18, 5, 21),
(198, 411, 48, 4, 2, 13),
(199, 416, 525, 18, 4, 32),
(200, 150, 49, 6, 5, 35),
(201, 296, 37, 4, 5, 35),
(202, 308, 472, 14, 3, 35),
(203, 194, 66, 16, 2, 35),
(204, 341, 48, 13, 5, 9),
(205, 274, 435, 18, 1, 4),
(206, 241, 588, 18, 5, 10),
(207, 461, 531, 7, 5, 10),
(208, 167, 534, 16, 5, 18),
(209, 50, 377, 18, 5, 23),
(210, 84, 562, 18, 5, 25),
(211, 342, 427, 15, 3, 23),
(212, 328, 583, 10, 5, 31),
(213, 36, 349, 12, 5, 35),
(214, 452, 392, 12, 5, 10),
(215, 21, 516, 5, 2, 35),
(216, 57, 562, 18, 5, 16),
(217, 106, 67, 10, 5, 35),
(218, 180, 35, 8, 5, 35),
(219, 311, 192, 12, 5, 35),
(220, 54, 439, 14, 5, 34),
(221, 437, 69, 12, 5, 33),
(222, 74, 30, 18, 5, 35),
(223, 334, 545, 18, 5, 35),
(224, 284, 507, 8, 5, 11),
(225, 464, 195, 5, 5, 9),
(226, 34, 152, 18, 1, 27),
(227, 291, 178, 18, 5, 34),
(228, 300, 60, 18, 2, 7),
(229, 218, 61, 13, 5, 35),
(230, 403, 291, 11, 5, 35),
(231, 231, 386, 18, 2, 3),
(232, 380, 48, 7, 5, 13),
(233, 421, 471, 12, 5, 35),
(234, 312, 541, 12, 5, 35),
(235, 217, 437, 12, 5, 20),
(236, 170, 258, 4, 5, 35),
(237, 368, 408, 12, 5, 9),
(238, 95, 492, 17, 2, 20),
(239, 343, 103, 18, 5, 10),
(240, 237, 408, 18, 5, 35),
(241, 420, 478, 3, 1, 20),
(242, 243, 124, 16, 5, 5),
(243, 448, 486, 17, 5, 10),
(244, 370, 588, 12, 4, 23),
(245, 269, 391, 18, 2, 35),
(246, 245, 47, 18, 5, 33),
(247, 207, 288, 12, 3, 35),
(248, 3, 63, 13, 5, 10),
(249, 383, 488, 8, 3, 35),
(250, 258, 571, 13, 5, 12),
(251, 202, 424, 15, 2, 10),
(252, 231, 225, 10, 5, 23),
(253, 68, 459, 1, 5, 9),
(254, 421, 408, 18, 5, 24),
(255, 463, 573, 18, 5, 20),
(256, 479, 77, 8, 5, 23),
(257, 238, 419, 18, 5, 2),
(258, 444, 439, 18, 5, 16),
(259, 50, 543, 18, 3, 10),
(260, 37, 172, 18, 5, 35),
(261, 413, 420, 8, 2, 35),
(262, 320, 498, 18, 5, 28),
(263, 395, 290, 18, 5, 35),
(264, 117, 484, 18, 5, 35),
(265, 113, 559, 13, 2, 5),
(266, 476, 333, 7, 5, 6),
(267, 303, 463, 4, 5, 27),
(268, 427, 581, 5, 5, 14),
(269, 180, 532, 12, 2, 2),
(270, 247, 515, 18, 5, 23),
(271, 297, 46, 4, 5, 7),
(272, 156, 63, 4, 5, 28),
(273, 401, 483, 5, 5, 13),
(274, 49, 432, 13, 5, 35),
(275, 98, 48, 11, 2, 35),
(276, 85, 425, 8, 5, 25),
(277, 85, 598, 4, 5, 24),
(278, 74, 581, 18, 4, 5),
(279, 358, 406, 5, 5, 35),
(280, 173, 288, 18, 5, 23),
(281, 391, 114, 4, 5, 35),
(282, 355, 572, 18, 5, 10),
(283, 395, 571, 2, 5, 5),
(284, 24, 525, 2, 2, 33),
(285, 253, 474, 18, 5, 20),
(286, 176, 526, 18, 5, 28),
(287, 44, 546, 15, 3, 35),
(288, 250, 39, 8, 5, 15),
(289, 458, 535, 18, 4, 35),
(290, 395, 599, 4, 1, 27),
(291, 64, 45, 10, 4, 5),
(292, 294, 31, 4, 3, 31),
(293, 170, 50, 18, 5, 35),
(294, 418, 63, 17, 2, 35),
(295, 230, 432, 12, 2, 35),
(296, 496, 428, 18, 5, 11),
(297, 5, 231, 18, 1, 24),
(298, 217, 152, 3, 5, 26),
(299, 165, 366, 18, 4, 24),
(300, 473, 590, 8, 5, 29),
(301, 55, 213, 18, 5, 35),
(302, 87, 417, 8, 2, 35),
(303, 493, 399, 2, 5, 35),
(304, 115, 561, 12, 5, 33),
(305, 419, 393, 12, 5, 8),
(306, 267, 472, 12, 3, 13),
(307, 499, 505, 16, 2, 35),
(308, 104, 540, 12, 5, 35),
(309, 461, 540, 8, 2, 35),
(310, 167, 484, 6, 5, 27),
(311, 315, 173, 14, 5, 33),
(312, 235, 590, 18, 3, 24),
(313, 335, 401, 12, 5, 10),
(314, 474, 146, 8, 5, 20),
(315, 381, 68, 18, 5, 35),
(316, 338, 291, 18, 2, 24),
(317, 483, 478, 2, 3, 35),
(318, 48, 16, 12, 4, 33),
(319, 457, 498, 18, 5, 24),
(320, 67, 563, 15, 2, 9),
(321, 254, 48, 11, 5, 35),
(322, 344, 16, 18, 5, 24),
(323, 49, 420, 7, 5, 23),
(324, 93, 294, 18, 5, 20),
(325, 164, 484, 4, 5, 2),
(326, 177, 152, 12, 5, 23),
(327, 325, 506, 18, 1, 5),
(328, 234, 554, 18, 5, 24),
(329, 371, 413, 4, 5, 35),
(330, 387, 590, 9, 5, 35),
(331, 79, 586, 18, 5, 35),
(332, 396, 140, 18, 5, 28),
(333, 179, 51, 12, 5, 35),
(334, 120, 192, 18, 5, 35),
(335, 128, 194, 17, 5, 21),
(336, 260, 258, 18, 5, 32),
(337, 307, 587, 12, 5, 15),
(338, 387, 71, 18, 2, 35),
(339, 100, 554, 12, 1, 35),
(340, 103, 61, 12, 5, 35),
(341, 102, 333, 9, 5, 18),
(342, 451, 515, 18, 5, 35),
(343, 409, 418, 18, 5, 10),
(344, 78, 576, 14, 5, 20),
(345, 170, 570, 18, 5, 14),
(346, 40, 48, 18, 5, 35),
(347, 234, 568, 10, 5, 28),
(348, 369, 299, 10, 5, 9),
(349, 284, 424, 18, 5, 35),
(350, 56, 102, 18, 5, 35),
(351, 164, 48, 6, 3, 24),
(352, 132, 590, 18, 5, 20),
(353, 161, 590, 4, 5, 24),
(354, 268, 377, 18, 1, 4),
(355, 394, 578, 14, 5, 5),
(356, 31, 192, 16, 2, 30),
(357, 298, 498, 4, 5, 18),
(358, 182, 387, 18, 5, 3),
(359, 101, 165, 18, 5, 28),
(360, 208, 60, 1, 2, 14),
(361, 263, 590, 9, 5, 35),
(362, 282, 219, 4, 5, 18),
(363, 27, 462, 16, 2, 13),
(364, 302, 445, 12, 5, 5),
(365, 475, 408, 8, 4, 35),
(366, 270, 30, 1, 5, 34),
(367, 414, 496, 6, 5, 10),
(368, 92, 420, 5, 5, 35),
(369, 295, 588, 18, 5, 28),
(370, 293, 547, 11, 1, 28),
(371, 147, 541, 18, 5, 35),
(372, 309, 178, 4, 2, 35),
(373, 325, 219, 13, 5, 7),
(374, 223, 425, 18, 5, 35),
(375, 445, 182, 12, 1, 35),
(376, 205, 443, 17, 5, 24),
(377, 29, 583, 2, 1, 10),
(378, 242, 488, 12, 5, 12),
(379, 456, 509, 18, 3, 21),
(380, 419, 577, 9, 5, 22),
(381, 430, 469, 1, 5, 3),
(382, 218, 54, 15, 2, 35),
(383, 143, 12, 15, 2, 23),
(384, 458, 47, 18, 5, 17),
(385, 193, 423, 12, 5, 6),
(386, 74, 591, 12, 5, 25),
(387, 489, 64, 12, 2, 19),
(388, 177, 439, 2, 5, 25),
(389, 271, 504, 18, 5, 24),
(390, 412, 393, 18, 5, 35),
(391, 205, 570, 4, 4, 29),
(392, 497, 535, 5, 2, 16),
(393, 249, 47, 6, 5, 35),
(394, 108, 499, 14, 5, 35),
(395, 453, 513, 18, 5, 1),
(396, 348, 291, 18, 5, 29),
(397, 213, 543, 12, 5, 35),
(398, 43, 124, 15, 5, 1),
(399, 57, 525, 5, 2, 35),
(400, 104, 5, 18, 1, 3),
(401, 396, 310, 9, 2, 28),
(402, 415, 566, 6, 5, 3),
(403, 285, 484, 12, 5, 35),
(404, 59, 213, 18, 5, 10),
(405, 80, 63, 18, 2, 2),
(406, 20, 544, 18, 5, 32),
(407, 310, 420, 12, 5, 24),
(408, 107, 154, 3, 2, 35),
(409, 449, 469, 18, 5, 8),
(410, 316, 48, 1, 5, 9),
(411, 208, 39, 18, 5, 30),
(412, 13, 387, 15, 5, 35),
(413, 419, 405, 18, 5, 5),
(414, 361, 376, 18, 3, 35),
(415, 32, 562, 14, 2, 35),
(416, 119, 501, 5, 1, 8),
(417, 386, 61, 8, 3, 33),
(418, 366, 65, 18, 2, 30),
(419, 225, 346, 8, 5, 5),
(420, 459, 401, 3, 2, 35),
(421, 33, 574, 1, 5, 11),
(422, 244, 467, 5, 5, 9),
(423, 100, 425, 6, 2, 35),
(424, 250, 483, 4, 5, 26),
(425, 166, 54, 18, 5, 35),
(426, 469, 401, 12, 5, 30),
(427, 303, 31, 3, 5, 24),
(428, 246, 587, 12, 2, 34),
(429, 190, 525, 18, 2, 24),
(430, 194, 504, 18, 4, 35),
(431, 204, 588, 18, 5, 35),
(432, 313, 259, 17, 2, 22),
(433, 110, 373, 3, 2, 15),
(434, 282, 39, 18, 5, 33),
(435, 127, 594, 4, 5, 30),
(436, 323, 408, 17, 5, 33),
(437, 68, 77, 10, 5, 29),
(438, 259, 422, 14, 5, 35),
(439, 17, 63, 2, 5, 8),
(440, 423, 60, 2, 5, 35),
(441, 433, 505, 14, 5, 16),
(442, 423, 519, 9, 5, 35),
(443, 329, 500, 12, 3, 32),
(444, 96, 589, 3, 5, 9),
(445, 470, 46, 18, 1, 12),
(446, 46, 509, 10, 2, 16),
(447, 491, 392, 8, 5, 25),
(448, 307, 582, 18, 5, 24),
(449, 112, 154, 3, 2, 24),
(450, 415, 572, 18, 5, 20),
(451, 89, 561, 13, 5, 35),
(452, 307, 190, 18, 2, 35),
(453, 424, 408, 18, 5, 35),
(454, 336, 376, 18, 5, 17),
(455, 286, 36, 13, 5, 11),
(456, 171, 172, 18, 5, 6),
(457, 258, 54, 18, 5, 21),
(458, 435, 455, 18, 5, 14),
(459, 178, 502, 18, 5, 5),
(460, 168, 401, 18, 5, 35),
(461, 435, 592, 12, 5, 21),
(462, 495, 464, 4, 3, 19),
(463, 148, 462, 16, 5, 9),
(464, 427, 543, 18, 5, 26),
(465, 481, 48, 10, 5, 17),
(466, 333, 426, 9, 5, 6),
(467, 459, 412, 18, 5, 24),
(468, 211, 526, 12, 5, 6),
(469, 177, 425, 13, 5, 35),
(470, 217, 54, 18, 5, 10),
(471, 233, 592, 12, 2, 10),
(472, 124, 551, 10, 5, 32),
(473, 255, 405, 18, 5, 4),
(474, 105, 11, 1, 5, 5),
(475, 465, 63, 3, 5, 19),
(476, 413, 599, 13, 5, 32),
(477, 456, 408, 11, 2, 24),
(478, 133, 581, 18, 3, 10),
(479, 44, 173, 17, 5, 33),
(480, 9, 598, 18, 5, 20),
(481, 288, 379, 14, 5, 3),
(482, 130, 568, 7, 5, 20),
(483, 466, 7, 12, 5, 35),
(484, 298, 401, 6, 2, 1),
(485, 369, 554, 18, 5, 21),
(486, 131, 45, 18, 2, 20),
(487, 307, 39, 12, 2, 35),
(488, 276, 48, 18, 3, 35),
(489, 337, 55, 8, 4, 21),
(490, 185, 569, 18, 1, 10),
(491, 443, 484, 8, 3, 13),
(492, 246, 142, 4, 5, 27),
(493, 127, 432, 9, 5, 10),
(494, 345, 294, 18, 2, 14),
(495, 278, 258, 14, 5, 24),
(496, 392, 572, 18, 2, 34),
(497, 373, 334, 16, 4, 24),
(498, 127, 507, 16, 5, 35),
(499, 52, 60, 2, 5, 28),
(500, 144, 475, 9, 5, 17),
(501, 253, 575, 18, 5, 35),
(502, 72, 459, 17, 4, 35),
(503, 277, 61, 2, 5, 35),
(504, 15, 427, 18, 2, 6),
(505, 142, 192, 17, 5, 32),
(506, 397, 509, 11, 3, 27),
(507, 66, 481, 8, 5, 20),
(508, 214, 392, 10, 5, 12),
(509, 125, 58, 18, 5, 24),
(510, 482, 178, 12, 3, 21),
(511, 327, 374, 18, 5, 24),
(512, 283, 392, 4, 5, 35),
(513, 442, 393, 14, 5, 1),
(514, 174, 69, 16, 5, 20),
(515, 89, 88, 7, 5, 23),
(516, 378, 339, 17, 5, 2),
(517, 362, 299, 4, 5, 19),
(518, 341, 51, 1, 5, 35),
(519, 279, 459, 8, 5, 20),
(520, 154, 425, 6, 5, 24),
(521, 279, 559, 18, 5, 35),
(522, 420, 393, 3, 5, 35),
(523, 155, 373, 18, 5, 35),
(524, 59, 165, 18, 5, 31),
(525, 144, 592, 8, 5, 10),
(526, 203, 518, 8, 3, 35),
(527, 459, 63, 18, 5, 35),
(528, 306, 388, 12, 5, 35),
(529, 500, 527, 8, 5, 5),
(530, 228, 433, 18, 5, 35),
(531, 263, 16, 18, 5, 35),
(532, 463, 428, 4, 5, 22),
(533, 380, 403, 12, 5, 1),
(534, 171, 51, 18, 5, 19),
(535, 194, 145, 8, 5, 35),
(536, 422, 401, 8, 5, 24),
(537, 182, 24, 8, 5, 2),
(538, 472, 66, 18, 5, 7),
(539, 421, 475, 18, 5, 20),
(540, 4, 172, 9, 5, 35),
(541, 26, 146, 18, 5, 5),
(542, 209, 579, 11, 3, 5),
(543, 331, 80, 7, 3, 35),
(544, 319, 65, 8, 5, 19),
(545, 266, 64, 18, 5, 25),
(546, 322, 114, 18, 4, 13),
(547, 251, 509, 16, 3, 35),
(548, 431, 486, 18, 3, 5),
(549, 276, 558, 3, 5, 35),
(550, 410, 587, 5, 3, 2),
(551, 6, 559, 9, 5, 32),
(552, 135, 431, 18, 2, 9),
(553, 146, 349, 4, 5, 31),
(554, 15, 52, 18, 5, 35),
(555, 460, 508, 8, 5, 24),
(556, 77, 388, 12, 5, 8),
(557, 455, 570, 12, 5, 16),
(558, 4, 520, 11, 5, 31),
(559, 425, 484, 8, 5, 35),
(560, 248, 388, 18, 1, 29),
(561, 500, 484, 18, 1, 15),
(562, 22, 536, 18, 5, 23),
(563, 444, 152, 18, 5, 15),
(564, 359, 504, 2, 5, 35),
(565, 51, 521, 18, 5, 15),
(566, 318, 500, 4, 5, 35),
(567, 215, 484, 14, 1, 19),
(568, 376, 507, 8, 5, 34),
(569, 50, 348, 18, 4, 35),
(570, 72, 310, 12, 2, 20),
(571, 154, 406, 18, 5, 35),
(572, 384, 52, 4, 2, 6),
(573, 85, 419, 4, 4, 35),
(574, 195, 48, 18, 5, 9),
(575, 57, 442, 9, 5, 35),
(576, 404, 424, 12, 4, 21),
(577, 323, 501, 7, 5, 9),
(578, 142, 48, 16, 2, 10),
(579, 356, 470, 1, 5, 35),
(580, 405, 333, 9, 5, 35),
(581, 19, 389, 11, 5, 35),
(582, 258, 61, 17, 5, 35),
(583, 390, 501, 4, 2, 3),