-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitialdata2.json
1883 lines (1882 loc) · 44 KB
/
initialdata2.json
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
[
{
"fields": {
"instructions": "<p>Five men are living good lives. Each man is married, has a job he loves, and lives together with his wife in a vibrant city in the United States. Each man has a different wife, has a different job, and lives in a different city. Using the clues provided answer the question:</p><p>To whom is Chris married, what is his job, and where does he live?</p>",
"prob_num": 1
},
"pk": 1,
"model": "experiment.problem"
},
{
"fields": {
"hint_text": "<p>Daniel is married to Gloria.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 0
},
"pk": 1,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Ben lives in Austin, TX.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 1
},
"pk": 2,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Edward is a Driving instructor.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 2
},
"pk": 3,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Lawyer lives in Jennifer.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 3
},
"pk": 4,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Ida lives with a Actor.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 4
},
"pk": 5,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Holly lives in Columbus, OH.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 5
},
"pk": 6,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Edward is not married to Florence.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 6
},
"pk": 7,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Florence does not live in Milwaukee, WI.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 7
},
"pk": 8,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Ben is not married to Florence or to Jennifer.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 8
},
"pk": 9,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Arthur is either a Banker or a Lawyer.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 9
},
"pk": 10,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Neither Arthur nor Daniel lives in Indianapolis, IN.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 10
},
"pk": 11,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Gloria does not live in San Francisco, CA.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 11
},
"pk": 12,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Daniel is not a Manager.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 12
},
"pk": 13,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Manager does not live in Indianapolis, IN or in Milwaukee, WI.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 13
},
"pk": 14,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Chris is not a Actor or Banker.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 14
},
"pk": 15,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Jennifer does not live in either Austin, TX or Milwaukee, WI.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 15
},
"pk": 16,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Holly is not married to a Lawyer nor to a Driving instructor.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 16
},
"pk": 17,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Driving instructor does not live in Austin, TX or Columbus, OH.</p>",
"problem_id": 1,
"hint_type": "main",
"hint_num": 17
},
"pk": 18,
"model": "experiment.problemhint"
},
{
"fields": {
"instructions": "<p>Five men are living good lives. Each man is married, has a job he loves, and lives together with his wife in a vibrant city in the United States. Each man has a different wife, has a different job, and lives in a different city. Using the clues provided answer the question:</p><p>To whom is Cliff married, what is his job, and where does he live?</p>",
"prob_num": 2
},
"pk": 2,
"model": "experiment.problem"
},
{
"fields": {
"hint_text": "<p>Doug is married to Gail.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 0
},
"pk": 19,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Bruce lives in Baltimore, MD.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 1
},
"pk": 20,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Eric is a Director.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 2
},
"pk": 21,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Landscaper lives in Julie.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 3
},
"pk": 22,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Iris lives with a Accountant.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 4
},
"pk": 23,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Helen lives in Dallas, TX.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 5
},
"pk": 24,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Eric is not married to Felicia.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 6
},
"pk": 25,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Felicia does not live in New York City, NY.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 7
},
"pk": 26,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Bruce is not married to Felicia or to Julie.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 8
},
"pk": 27,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Aaron is either a Bartender or a Landscaper.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 9
},
"pk": 28,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Neither Aaron nor Doug lives in Las Vegas, NV.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 10
},
"pk": 29,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Gail does not live in San Diego, CA.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 11
},
"pk": 30,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Doug is not a Mason.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 12
},
"pk": 31,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Mason does not live in Las Vegas, NV or in New York City, NY.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 13
},
"pk": 32,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Cliff is not a Accountant or Bartender.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 14
},
"pk": 33,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Julie does not live in either Baltimore, MD or New York City, NY.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 15
},
"pk": 34,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Helen is not married to a Landscaper nor to a Director.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 16
},
"pk": 35,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Director does not live in Baltimore, MD or Dallas, TX.</p>",
"problem_id": 2,
"hint_type": "main",
"hint_num": 17
},
"pk": 36,
"model": "experiment.problemhint"
},
{
"fields": {
"instructions": "<p>Five men are living good lives. Each man is married, has a job he loves, and lives together with his wife in a vibrant city in the United States. Each man has a different wife, has a different job, and lives in a different city. Using the clues provided answer the question:</p><p>To whom is Carl married, what is his job, and where does he live?</p>",
"prob_num": 3
},
"pk": 3,
"model": "experiment.problem"
},
{
"fields": {
"hint_text": "<p>Donald is married to Gwen.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 0
},
"pk": 37,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Brian lives in Boston, MA.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 1
},
"pk": 38,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Ed is a Designer.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 2
},
"pk": 39,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Librarian lives in Jessica.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 3
},
"pk": 40,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Isabelle lives with a Analyst.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 4
},
"pk": 41,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Heather lives in Denver, CO.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 5
},
"pk": 42,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Ed is not married to Fannie.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 6
},
"pk": 43,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Fannie does not live in Philadelphia, PA.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 7
},
"pk": 44,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Brian is not married to Fannie or to Jessica.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 8
},
"pk": 45,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Adam is either a Biologist or a Librarian.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 9
},
"pk": 46,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Neither Adam nor Donald lives in Los Angeles, CA.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 10
},
"pk": 47,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Gwen does not live in San Antonio, TX.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 11
},
"pk": 48,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Donald is not a Mechanic.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 12
},
"pk": 49,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Mechanic does not live in Los Angeles, CA or in Philadelphia, PA.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 13
},
"pk": 50,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Carl is not a Analyst or Biologist.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 14
},
"pk": 51,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Jessica does not live in either Boston, MA or Philadelphia, PA.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 15
},
"pk": 52,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Heather is not married to a Librarian nor to a Designer.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 16
},
"pk": 53,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Designer does not live in Boston, MA or Denver, CO.</p>",
"problem_id": 3,
"hint_type": "main",
"hint_num": 17
},
"pk": 54,
"model": "experiment.problemhint"
},
{
"fields": {
"instructions": "<p>Five men are living good lives. Each man is married, has a job he loves, and lives together with his wife in a vibrant city in the United States. Each man has a different wife, has a different job, and lives in a different city. Using the clues provided answer the question:</p><p>To whom is Craig married, what is his job, and where does he live?</p>",
"prob_num": 4
},
"pk": 4,
"model": "experiment.problem"
},
{
"fields": {
"hint_text": "<p>David is married to Gina.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 0
},
"pk": 55,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Bill lives in Charlotte, NC.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 1
},
"pk": 56,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Earl is a Dentist.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 2
},
"pk": 57,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Lifeguard lives in Janet.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 3
},
"pk": 58,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Irene lives with a Architect.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 4
},
"pk": 59,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Hannah lives in Detroit, MI.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 5
},
"pk": 60,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Earl is not married to Flora.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 6
},
"pk": 61,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Flora does not live in Phoenix, AZ.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 7
},
"pk": 62,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Bill is not married to Flora or to Janet.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 8
},
"pk": 63,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Alexander is either a Bookkeeper or a Lifeguard.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 9
},
"pk": 64,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Neither Alexander nor David lives in Memphis, TN.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 10
},
"pk": 65,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Gina does not live in Seattle, WA.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 11
},
"pk": 66,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>David is not a Meteorologist.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 12
},
"pk": 67,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Meteorologist does not live in Memphis, TN or in Phoenix, AZ.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 13
},
"pk": 68,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Craig is not a Architect or Bookkeeper.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 14
},
"pk": 69,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Janet does not live in either Charlotte, NC or Phoenix, AZ.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 15
},
"pk": 70,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Hannah is not married to a Lifeguard nor to a Dentist.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 16
},
"pk": 71,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Dentist does not live in Charlotte, NC or Detroit, MI.</p>",
"problem_id": 4,
"hint_type": "main",
"hint_num": 17
},
"pk": 72,
"model": "experiment.problemhint"
},
{
"fields": {
"instructions": "<p>Five men are living good lives. Each man is married, has a job he loves, and lives together with his wife in a vibrant city in the United States. Each man has a different wife, has a different job, and lives in a different city. Using the clues provided answer the question:</p><p>To whom is Charles married, what is his job, and where does he live?</p>",
"prob_num": 5
},
"pk": 5,
"model": "experiment.problem"
},
{
"fields": {
"hint_text": "<p>Dennis is married to Grace.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 0
},
"pk": 73,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Bob lives in Chicago, IL.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 1
},
"pk": 74,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Eugene is a Dancer.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 2
},
"pk": 75,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Locksmith lives in Joyce.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 3
},
"pk": 76,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Irma lives with a Auditor.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 4
},
"pk": 77,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Heidi lives in Houston, TX.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 5
},
"pk": 78,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Eugene is not married to Francisca.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 6
},
"pk": 79,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Francisca does not live in Portland, OR.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 7
},
"pk": 80,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Bob is not married to Francisca or to Joyce.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 8
},
"pk": 81,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Andy is either a Bodyguard or a Locksmith.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 9
},
"pk": 82,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Neither Andy nor Dennis lives in Miami, FL.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 10
},
"pk": 83,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Grace does not live in Washington, DC.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 11
},
"pk": 84,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Dennis is not a Microbiologist.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 12
},
"pk": 85,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Microbiologist does not live in Miami, FL or in Portland, OR.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 13
},
"pk": 86,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Charles is not a Auditor or Bodyguard.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 14
},
"pk": 87,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Joyce does not live in either Chicago, IL or Portland, OR.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 15
},
"pk": 88,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>Heidi is not married to a Locksmith nor to a Dancer.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 16
},
"pk": 89,
"model": "experiment.problemhint"
},
{
"fields": {
"hint_text": "<p>The Dancer does not live in Chicago, IL or Houston, TX.</p>",
"problem_id": 5,
"hint_type": "main",
"hint_num": 17
},
"pk": 90,
"model": "experiment.problemhint"
},
{
"model": "experiment.problem",
"fields": {
"instructions": "<p>Five men are living good lives. Each man is married, has a job he loves, and lives together with his wife in a vibrant city in the United States. Each man has a different wife, has a different job, and lives in a different city. Using the clues provided answer the question:</p><p>To whom is Chris married, what is his job, and where does he live?</p>",
"prob_num": 1
},
"pk": 1
},
{
"model": "experiment.problemhint",
"fields": {
"hint_type": "core",
"problem_id": 1,
"hint_num": 1,
"hint_text": "<p>Daniel is married to Gloria.</p>"
},
"pk": 1
},
{
"model": "experiment.problemhint",
"fields": {
"hint_type": "core",
"problem_id": 1,
"hint_num": 2,
"hint_text": "<p>Ben lives in Austin, TX.</p>"
},
"pk": 2
},
{
"model": "experiment.problemhint",
"fields": {
"hint_type": "core",
"problem_id": 1,
"hint_num": 3,
"hint_text": "<p>Edward is a Driving instructor.</p>"
},
"pk": 3
},
{
"model": "experiment.problemhint",
"fields": {
"hint_type": "core",
"problem_id": 1,
"hint_num": 4,
"hint_text": "<p>The Lawyer lives in Jennifer.</p>"
},
"pk": 4
},
{
"model": "experiment.problemhint",
"fields": {
"hint_type": "core",
"problem_id": 1,
"hint_num": 5,
"hint_text": "<p>Ida lives with a Actor.</p>"
},
"pk": 5
},