// Numbas version: exam_results_page_options {"showstudentname": true, "timing": {"allowPause": true, "timedwarning": {"action": "none", "message": ""}, "timeout": {"action": "none", "message": ""}}, "metadata": {"licence": "Creative Commons Attribution-ShareAlike 4.0 International", "description": ""}, "navigation": {"browse": true, "reverse": true, "onleave": {"action": "none", "message": ""}, "showfrontpage": true, "allowregen": true, "preventleave": true, "startpassword": "", "showresultspage": "oncompletion"}, "duration": 0, "feedback": {"showactualmark": true, "intro": "", "allowrevealanswer": true, "showanswerstate": true, "advicethreshold": 0, "feedbackmessages": [], "showtotalmark": true}, "showQuestionGroupNames": true, "question_groups": [{"name": "Graphical Extensions", "pickingStrategy": "all-ordered", "pickQuestions": 1, "questions": [{"name": "Josh's copy of Heating/phase change", "extensions": ["jsxgraph"], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Tom Stallard", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/841/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "tags": [], "metadata": {"description": "

A random heating question, that randomly picks a material, and then heats it through either one or two phase changes, provides an example graph of the heating with scaled temperature ranges (though not with scaled latent and specific heats), and a table with the suitable constants.

", "licence": "Creative Commons Attribution 4.0 International"}, "preamble": {"js": "", "css": ""}, "ungrouped_variables": [], "variable_groups": [{"variables": ["switcharoo_comment", "switcharoo_type", "phase_temp", "phase_latentheat"], "name": "switcharoo (phase type) values"}, {"variables": ["mass_string"], "name": "kg or g"}, {"variables": ["mat_string", "phase1_temp", "phase2_temp", "gas_heatcap", "phase1_latentheat", "liquid_heatcap", "phase2_latentheat", "solid_heatcap"], "name": "Material values"}, {"variables": ["solidheat", "fusionheat", "liquidheat", "vapourheat", "gasheat", "totalheat", "totalheat_m"], "name": "Energy"}, {"variables": ["st_string", "et_string"], "name": "K or C"}, {"variables": ["material_list", "solid_hc_list", "liquid_hc_list", "gas_hc_list", "fusion_lh_list", "vapour_lh_list", "fusion_temp_list", "vapour_temp_list"], "name": "Lists of values"}, {"variables": ["switcharoo", "wat_mat", "start_temp", "end_temp", "k_c_switch", "mass"], "name": "Random variables"}, {"variables": ["advice1", "advice2", "advice3", "advice4", "advice5"], "name": "advice"}], "functions": {"onestep": {"parameters": [], "language": "javascript", "type": "html", "definition": "// Takes variables\n\n// showing K or C?\nk_c = Numbas.jme.unwrapValue(scope.variables.k_c_switch);\n\nif (k_c = 0) {\n var k_c_corr =0;\n var k_c_str=\"K\";\n} else {\n var k_c_corr =-273;\n var k_c_str=\"oC\";\n}\n\n//Set values\nst = Numbas.jme.unwrapValue(scope.variables.start_temp)+k_c_corr;\net = Numbas.jme.unwrapValue(scope.variables.end_temp)+k_c_corr;\npt = Numbas.jme.unwrapValue(scope.variables.phase_temp)+k_c_corr;\n\n\n// The function provided by the JSXGraph extension wraps the board up in\n// a div tag so that it's easier to embed in the page.\nvar div = Numbas.extensions.jsxgraph.makeBoard('500px','300px',\n {boundingBox: [-4,et+10,20,st-10],\n axis: false,\n showNavigation: false,\n grid: false\n });\n\n// div.board is the object created by JSXGraph, which you use to\n// manipulate elements\nvar board = div.board;\n\n\n\n// create the x-axis.\n//var xaxis = board.create('line',[[0,0],[1,0]], {strokeColor: 'black', fixed: true});\n//var xticks = board.create('ticks',[xaxis,20],{\n// drawLabels: true,\n// minorTicks: 0\n//});\n\n// create the y-axis\nvar yaxis = board.create('line',[[0,0],[0,1]], { strokeColor: 'black', fixed: true });\nvar yticks = board.create('ticks',[yaxis,parseInt((et-st)/50.)*10],{\ndrawZero:true,\ndrawLabels: true,\nlabel: {offset: [20, 0]},\nminorTicks: 0\n});\n\n//\n//slope 1\nvar slope1 = board.create('line',[[4,st],[((pt-st)/((pt-st)+(et-pt))*8)+4,pt]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope2 = board.create('line',[[((pt-st)/((pt-st)+(et-pt))*8)+4,pt],[16-((et-pt)/((pt-st)+(et-pt))*8),pt]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope3 = board.create('line',[[16-((et-pt)/((pt-st)+(et-pt))*8),pt],[16,et]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\nvar dash1 = board.create('line',[[((pt-st)/((pt-st)+(et-pt))*8)+4,st-5],[((pt-st)/((pt-st)+(et-pt))*8)+4,et+5]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash2 = board.create('line',[[16-((et-pt)/((pt-st)+(et-pt))*8),st-5],[16-((et-pt)/((pt-st)+(et-pt))*8),et+5]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n\n//label the y-axis\n var label = board.create('text',[-2,(et+st)/2,k_c_str]);\n\n\n// and return the container div\nreturn div;"}, "twostep": {"parameters": [], "language": "javascript", "type": "html", "definition": "// Takes variables\n\n// showing K or C?\nk_c = Numbas.jme.unwrapValue(scope.variables.k_c_switch);\n\nif (k_c = 0) {\n var k_c_corr =0;\n var k_c_str=\"K\";\n} else {\n var k_c_corr =-273;\n var k_c_str=\"oC\";\n}\n\n//Set values\nst = Numbas.jme.unwrapValue(scope.variables.start_temp)+k_c_corr;\net = Numbas.jme.unwrapValue(scope.variables.end_temp)+k_c_corr;\npt1 = Numbas.jme.unwrapValue(scope.variables.phase1_temp)+k_c_corr;\npt2 = Numbas.jme.unwrapValue(scope.variables.phase2_temp)+k_c_corr;\n\n\n// The function provided by the JSXGraph extension wraps the board up in\n// a div tag so that it's easier to embed in the page.\nvar div = Numbas.extensions.jsxgraph.makeBoard('500px','300px',\n {boundingBox: [-5,et+(et-st)/10.,28,st-(et-st)/10.],\n axis: false,\n showNavigation: false,\n grid: false\n });\n\n// div.board is the object created by JSXGraph, which you use to\n// manipulate elements\nvar board = div.board;\n\n\n\n// create the x-axis.\n//var xaxis = board.create('line',[[0,0],[1,0]], {strokeColor: 'black', fixed: true});\n//var xticks = board.create('ticks',[xaxis,20],{\n// drawLabels: true,\n// minorTicks: 0\n//});\n\n// create the y-axis\n\nvar yaxis = board.create('line',[[0,0],[0,1]], { strokeColor: 'black', fixed: true });\nvar yticks = board.create('ticks',[yaxis,parseInt((et-st)/50.)*10],{\ndrawZero:true,\ndrawLabels: true,\nlabel: {offset: [20, 0]},\nminorTicks: 0\n});\n\n\n// full size of the five slopes\nvar allslope=(et-st);\nvar s1sz=(8*(pt1-st)/allslope);\nvar s3sz=(8*(pt2-pt1)/allslope);\nvar s5sz=(8*(et-pt2)/allslope);\n\n\n//\n//slope 1\nvar slope1 = board.create('line',[[4,st],[s1sz+4,pt1]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope2 = board.create('line',[[s1sz+4,pt1],[s1sz+8,pt1]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope3 = board.create('line',[[s1sz+8,pt1],[s1sz+s3sz+8,pt2]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope4 = board.create('line',[[s1sz+s3sz+8,pt2],[s1sz+s3sz+12,pt2]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope5 = board.create('line',[[s1sz+s3sz+12,pt2],[s1sz+s3sz+s5sz+12,et]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n//var slope6 = board.create('line',[[4,pt1],[20,pt2]], {dash:2,straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\nvar dash1 = board.create('line',[[s1sz+4,st-10],[s1sz+4,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash2 = board.create('line',[[s1sz+8,st-10],[s1sz+8,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash3 = board.create('line',[[s1sz+s3sz+8,st-10],[s1sz+s3sz+8,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash4 = board.create('line',[[s1sz+s3sz+12,st-10],[s1sz+s3sz+12,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n\n//label the y-axis\n var label = board.create('text',[-2,(et+st)/2,k_c_str]);\n\n\n// and return the container div\nreturn div;"}}, "rulesets": {}, "variablesTest": {"maxRuns": 100, "condition": ""}, "type": "question", "variables": {"vapourheat": {"description": "", "name": "vapourheat", "group": "Energy", "templateType": "anything", "definition": "siground(if(switcharoo>0,mass*phase2_latentheat,0),6)"}, "switcharoo": {"description": "", "name": "switcharoo", "group": "Random variables", "templateType": "anything", "definition": "random(0..2)"}, "mass_string": {"description": "", "name": "mass_string", "group": "kg or g", "templateType": "anything", "definition": "if(mass<1,dpformat(mass*1000,0)+' g',dpformat(mass,2)+' kg')"}, "phase1_latentheat": {"description": "", "name": "phase1_latentheat", "group": "Material values", "templateType": "anything", "definition": "fusion_lh_list[wat_mat]"}, "start_temp": {"description": "", "name": "start_temp", "group": "Random variables", "templateType": "anything", "definition": "if(switcharoo<2,random(100..phase1_temp-10),random(phase1_temp+10..phase2_temp-10))"}, "advice3": {"description": "", "name": "advice3", "group": "advice", "templateType": "anything", "definition": "\"Heating the liquid: $Q = m \\\\times C_L \\\\times \\\\Delta T = \"+\nswitch(\n switcharoo=0,mass+' \\\\times '+liquid_heatcap+\" \\\\times (\"+end_temp+\" - \"+phase1_temp+\")\",\n switcharoo=1,mass+' \\\\times '+liquid_heatcap+\" \\\\times (\"+phase2_temp+\" - \"+phase1_temp+\")\",\n switcharoo=2,mass+' \\\\times '+liquid_heatcap+\" \\\\times (\"+phase2_temp+\" - \"+start_temp+\")\"\n)\n+\"= {liquidheat} J$\""}, "end_temp": {"description": "", "name": "end_temp", "group": "Random variables", "templateType": "anything", "definition": "if(switcharoo>0,random(phase2_temp+10..phase2_temp+100),random(phase1_temp+10..phase2_temp-10))"}, "vapour_temp_list": {"description": "", "name": "vapour_temp_list", "group": "Lists of values", "templateType": "anything", "definition": "[373,630,2835,3243]"}, "switcharoo_comment": {"description": "", "name": "switcharoo_comment", "group": "switcharoo (phase type) values", "templateType": "list of strings", "definition": "[ \"solid_to_liquid\", \"solid_to_gas\", \"liquid_to_gas\" ]"}, "et_string": {"description": "", "name": "et_string", "group": "K or C", "templateType": "anything", "definition": "if(k_c_switch,end_temp+' K',(end_temp-273)+' \u00b0C') "}, "liquid_hc_list": {"description": "", "name": "liquid_hc_list", "group": "Lists of values", "templateType": "anything", "definition": "[4200,140,490,150]"}, "solid_hc_list": {"description": "", "name": "solid_hc_list", "group": "Lists of values", "templateType": "anything", "definition": "[2100,110,390,130]"}, "switcharoo_type": {"description": "", "name": "switcharoo_type", "group": "switcharoo (phase type) values", "templateType": "anything", "definition": "switcharoo_comment[switcharoo]"}, "phase2_temp": {"description": "", "name": "phase2_temp", "group": "Material values", "templateType": "anything", "definition": "vapour_temp_list[wat_mat]"}, "st_string": {"description": "", "name": "st_string", "group": "K or C", "templateType": "anything", "definition": "if(k_c_switch,start_temp+' K',(start_temp-273)+' \u00b0C') "}, "solidheat": {"description": "", "name": "solidheat", "group": "Energy", "templateType": "anything", "definition": "siground(if(switcharoo<2,mass*solid_heatcap*(phase1_temp-start_temp),0),6)"}, "advice4": {"description": "", "name": "advice4", "group": "advice", "templateType": "anything", "definition": "if(switcharoo=0,\" \",\"Vaporising the \"+Mat_string+\": $Q = m \\\\times L_H = \"+mass+\" \\\\times \"+phase2_latentheat+\" = \"+vapourheat+\" J$\")"}, "fusionheat": {"description": "", "name": "fusionheat", "group": "Energy", "templateType": "anything", "definition": "siground(if(switcharoo<2,mass*phase1_latentheat,0),6)"}, "wat_mat": {"description": "", "name": "wat_mat", "group": "Random variables", "templateType": "anything", "definition": "random(0..3)"}, "phase2_latentheat": {"description": "", "name": "phase2_latentheat", "group": "Material values", "templateType": "anything", "definition": "vapour_lh_list[wat_mat]"}, "advice1": {"description": "", "name": "advice1", "group": "advice", "templateType": "anything", "definition": "if(switcharoo=2,\" \",\"Heating the solid: $Q = m \\\\times C_S \\\\times \\\\Delta T = \"+mass+\" \\\\times \"+solid_heatcap+\" \\\\times (\"+phase1_temp+\"-\"+start_temp+\") = \"+solidheat+\" J $\")"}, "advice5": {"description": "", "name": "advice5", "group": "advice", "templateType": "anything", "definition": "if(switcharoo=0,\" \",\"Heating the gas: $Q = m \\\\times C_G \\\\times \\\\Delta T = \"+mass+\" \\\\times \"+gas_heatcap+\" (\"+end_temp+\"-\"+phase2_temp+\") = \"+gasheat+\" J$\")"}, "advice2": {"description": "", "name": "advice2", "group": "advice", "templateType": "anything", "definition": "if(switcharoo=2,\" \",\"Melting the \"+Mat_string+\": $Q = m \\\\times L_H = \"+mass+\" \\\\times \"+phase1_latentheat+\" = \"+fusionheat+\" J$\")"}, "mass": {"description": "", "name": "mass", "group": "Random variables", "templateType": "anything", "definition": "siground(if(random(0,1)=0,random(0.01..0.99#0.01),random(1.00..10.00#0.01)),3)"}, "phase_latentheat": {"description": "", "name": "phase_latentheat", "group": "switcharoo (phase type) values", "templateType": "anything", "definition": "switch(switcharoo=0,phase1_latentheat,switcharoo=2,phase2_latentheat,0)"}, "totalheat": {"description": "", "name": "totalheat", "group": "Energy", "templateType": "anything", "definition": "solidheat+fusionheat+liquidheat+vapourheat+gasheat"}, "liquid_heatcap": {"description": "", "name": "liquid_heatcap", "group": "Material values", "templateType": "anything", "definition": "liquid_hc_list[wat_mat]"}, "phase_temp": {"description": "", "name": "phase_temp", "group": "switcharoo (phase type) values", "templateType": "anything", "definition": "switch(switcharoo=0,phase1_temp,switcharoo=2,phase2_temp,0)"}, "fusion_lh_list": {"description": "", "name": "fusion_lh_list", "group": "Lists of values", "templateType": "anything", "definition": "[336000,11300,207000,63000]"}, "k_c_switch": {"description": "", "name": "k_c_switch", "group": "Random variables", "templateType": "anything", "definition": "random(0,1)"}, "gas_heatcap": {"description": "", "name": "gas_heatcap", "group": "Material values", "templateType": "anything", "definition": "gas_hc_list[wat_mat]"}, "material_list": {"description": "", "name": "material_list", "group": "Lists of values", "templateType": "anything", "definition": "['H2O','Mercury','Copper','Gold']"}, "fusion_temp_list": {"description": "", "name": "fusion_temp_list", "group": "Lists of values", "templateType": "anything", "definition": "[273,234,1357,1337]"}, "liquidheat": {"description": "", "name": "liquidheat", "group": "Energy", "templateType": "anything", "definition": "siground(switch(switcharoo=0,mass*liquid_heatcap*(end_temp-phase1_temp),switcharoo=1,mass*liquid_heatcap*(phase2_temp-phase1_temp),switcharoo=2,mass*liquid_heatcap*(phase2_temp-start_temp),0),6)"}, "solid_heatcap": {"description": "", "name": "solid_heatcap", "group": "Material values", "templateType": "anything", "definition": "solid_hc_list[wat_mat]"}, "gasheat": {"description": "", "name": "gasheat", "group": "Energy", "templateType": "anything", "definition": "siground(if(switcharoo>0,mass*gas_heatcap*(end_temp-phase2_temp),0),6)"}, "totalheat_m": {"description": "", "name": "totalheat_m", "group": "Energy", "templateType": "anything", "definition": "totalheat/10^6"}, "gas_hc_list": {"description": "", "name": "gas_hc_list", "group": "Lists of values", "templateType": "anything", "definition": "[2000,135,350,110]"}, "phase1_temp": {"description": "", "name": "phase1_temp", "group": "Material values", "templateType": "anything", "definition": "fusion_temp_list[wat_mat]"}, "vapour_lh_list": {"description": "", "name": "vapour_lh_list", "group": "Lists of values", "templateType": "anything", "definition": "[2260000,293000,4730000,1580000]"}, "mat_string": {"description": "", "name": "mat_string", "group": "Material values", "templateType": "anything", "definition": "material_list[wat_mat]"}}, "parts": [{"showFeedbackIcon": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "choices": ["

Solid, Liquid

", "

Solid, Liquid, Gas

", "

Liquid, Gas

"], "type": "1_n_2", "displayType": "radiogroup", "prompt": "

What phases does the {mat_string} go through.

", "showCellAnswerState": true, "marks": 0, "showCorrectAnswer": true, "maxMarks": 0, "extendBaseMarkingAlgorithm": true, "shuffleChoices": false, "variableReplacements": [], "distractors": ["", "", ""], "minMarks": 0, "matrix": ["if(switcharoo=0,1,0)", "if(switcharoo=1,1,0)", "if(switcharoo=2,1,0)"], "scripts": {}, "customMarkingAlgorithm": "", "displayColumns": 0}, {"showFeedbackIcon": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "choices": ["

Melting

", "

Melting,Vaporisation

", "

Vaporisation

"], "type": "1_n_2", "displayType": "radiogroup", "prompt": "

What phase changes does the {mat_string} go through.

", "showCellAnswerState": true, "marks": 0, "showCorrectAnswer": true, "maxMarks": 0, "extendBaseMarkingAlgorithm": true, "shuffleChoices": false, "variableReplacements": [], "distractors": ["", "", ""], "minMarks": 0, "matrix": ["if(switcharoo=0,1,0)", "if(switcharoo=1,1,0)", "if(switcharoo=2,1,0)"], "scripts": {}, "customMarkingAlgorithm": "", "displayColumns": 0}, {"extendBaseMarkingAlgorithm": true, "correctAnswerStyle": "plain", "maxValue": "siground(totalheat_m,3)+siground(abs(totalheat_m/100),3)", "minValue": "siground(totalheat_m,3)-siground(abs(totalheat_m/100),3)", "marks": "1", "allowFractions": false, "type": "numberentry", "mustBeReduced": false, "customMarkingAlgorithm": "", "mustBeReducedPC": 0, "showFeedbackIcon": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "notationStyles": ["plain", "en", "si-en"], "precisionPartialCredit": 0, "prompt": "

Calculate the total heat absorbed by the {Mat_string} through this process in MJ to three significant figures.

", "showCorrectAnswer": false, "strictPrecision": true, "precision": "3", "correctAnswerFraction": false, "variableReplacements": [], "showPrecisionHint": false, "precisionMessage": "You have not given your answer to the correct precision.", "scripts": {}, "precisionType": "sigfig"}], "statement": "

{mass_string} of {Mat_string} is heated from {st_string} to {et_string}, changing in temperature and phase.

\n

\n

{if(switcharoo=1,twostep(),onestep())}

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Solid specific heatLatent Heat of fusionLiquid specific heatLatent Heat of vapourisationGaseous specific heatFusion TemperatureVaporisation Temperature
{Mat_string}{solid_heatcap} JK<sup>-1</sup>kg<sup>-1</sup>{phase1_latentheat} Jkg<sup>-1</sup>{liquid_heatcap} JK<sup>-1</sup>kg<sup>-1</sup>{phase2_latentheat} Jkg<sup>-1</sup>{gas_heatcap} JK<sup>-1</sup>kg<sup>-1</sup>{phase1_temp} K{phase2_temp} K
", "advice": "

{advice1}

\n

{advice2}

\n

{advice3}

\n

{advice4}

\n

{advice5}

\n

\n

Total Heat:

\n

{totalheat} J = {sigformat(totalheat/1000000,3)} MJ

"}, {"name": "Josh's copy of Block sliding down a frictionless slope (with graphic)", "extensions": ["jsxgraph"], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Tom Stallard", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/841/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "rulesets": {}, "type": "question", "parts": [{"minValue": "FN-FN/100", "scripts": {}, "unitTests": [], "type": "numberentry", "extendBaseMarkingAlgorithm": true, "showCorrectAnswer": true, "showFeedbackIcon": true, "marks": 1, "customMarkingAlgorithm": "", "correctAnswerFraction": false, "variableReplacementStrategy": "originalfirst", "correctAnswerStyle": "plain", "mustBeReducedPC": 0, "maxValue": "FN+FN/100", "variableReplacements": [], "prompt": "

Find the normal reaction, $F_N$ between the block and the plane, in N to 3 decimal places.

", "mustBeReduced": false, "allowFractions": false, "notationStyles": ["plain", "en", "si-en"]}, {"minValue": "FP-FP/100", "scripts": {}, "unitTests": [], "type": "numberentry", "extendBaseMarkingAlgorithm": true, "showCorrectAnswer": true, "showFeedbackIcon": true, "marks": 1, "customMarkingAlgorithm": "", "correctAnswerFraction": false, "variableReplacementStrategy": "originalfirst", "correctAnswerStyle": "plain", "mustBeReducedPC": 0, "maxValue": "FP+FP/100", "variableReplacements": [], "prompt": "

Find the gravitational force on the block, parallel to the plane $F_P$, in N to 3 decimal places.

", "mustBeReduced": false, "allowFractions": false, "notationStyles": ["plain", "en", "si-en"]}, {"scripts": {}, "precisionType": "dp", "precisionMessage": "You have not given your answer to the correct precision.", "marks": "1", "showCorrectAnswer": true, "showFeedbackIcon": true, "variableReplacementStrategy": "originalfirst", "correctAnswerStyle": "plain", "maxValue": "answer+answer/100", "type": "numberentry", "strictPrecision": false, "minValue": "answer-answer/100", "unitTests": [], "showPrecisionHint": false, "extendBaseMarkingAlgorithm": true, "notationStyles": ["plain", "en", "si-en"], "prompt": "

{a_string}, to 3 decimal places.

", "mustBeReducedPC": 0, "customMarkingAlgorithm": "", "precisionPartialCredit": 0, "variableReplacements": [{"must_go_first": true, "variable": "FP", "part": "p1"}], "allowFractions": false, "mustBeReduced": false, "correctAnswerFraction": false, "precision": "3"}], "statement": "

{draw_block()}

\n

A block of mass {mass} kg slides down a frictionless plane which is inclined at an angle $\\theta$ = {theta}$^{\\circ}$ to the horizontal.

\n

The acceleration due to gravity is g={g} ms$^{-2}$.

", "variablesTest": {"maxRuns": 100, "condition": ""}, "variables": {"g": {"templateType": "anything", "definition": "9.8", "description": "", "group": "constants", "name": "g"}, "FP": {"templateType": "anything", "definition": "siground(mass*g*sin(radians(theta)),3)", "description": "", "group": "calculated variables", "name": "FP"}, "a": {"templateType": "anything", "definition": "siground(random(1.1..5#0.1),2)", "description": "

The acceleration of the block down the slope.

", "group": "random variables", "name": "a"}, "mass": {"templateType": "anything", "definition": "siground(random(0.2..9.9#0.1),2)", "description": "

The mass of the block.

", "group": "random variables", "name": "mass"}, "theta": {"templateType": "randrange", "definition": "random(30..60#1)", "description": "

The angle of the slope.

", "group": "random variables", "name": "theta"}, "answer": {"templateType": "anything", "definition": "aa", "description": "", "group": "calculated variables", "name": "answer"}, "aa": {"templateType": "anything", "definition": "siground(FP/mass,3)", "description": "", "group": "calculated variables", "name": "aa"}, "FN": {"templateType": "anything", "definition": "siground(mass*g*cos(radians(theta)),3)", "description": "

The normal reaction force of the plane on the block

", "group": "calculated variables", "name": "FN"}, "a_string": {"templateType": "anything", "definition": "\"Calculate the acceration of the block in ms$^\\{-2\\}$\"", "description": "", "group": "calculated variables", "name": "a_string"}}, "tags": [], "metadata": {"licence": "Creative Commons Attribution 4.0 International", "description": "

A block of given mass is sliding down the plane with a given acceration. Find the normal reaction force, the parallel force and the missing value of a and mu.

"}, "variable_groups": [{"variables": ["mass", "theta", "a"], "name": "random variables"}, {"variables": ["FN", "FP", "aa", "answer", "a_string"], "name": "calculated variables"}, {"variables": ["g"], "name": "constants"}], "advice": "

a)

\n

To find the normal reaction force $F_N$, we resolve the forces perpendicular to the plane.

\n

 
$F_N =$ mg cos $\\theta$,
$F_N =$ {mass} $\\times$ {g} cos( {theta}$^{\\circ}$),

\n

And so the normal force $F_N$ is {fn} N.

\n

b)

\n

To find the force $F_P$ parallel to the plane, we resolve the forces parallel to the plane.

\n

 
$F_P =$ mg sin $\\theta$,
$F_P =$ {mass} $\\times$ {g} sin ({theta}$^{\\circ}$),

\n

And so the parallel force $F_P$ is {fp} N.

\n

\n

c)

\n

To find the acceleration of the block, you must calculate divide the force down the slope by the mass.

\n

F=ma

\n

a = F{\"<sub>P</sub>\"} / m

\n

a = {FP} / {mass}

\n

So, the acceration of the block is {answer} m/s<sup>-2</sup>.

\n

", "preamble": {"js": "", "css": ""}, "functions": {"draw_block": {"parameters": [], "type": "html", "language": "javascript", "definition": "// Takes variables\n\n// showing K or C?\n//k_c = Numbas.jme.unwrapValue(scope.variables.k_c_switch);\n//\n//if (k_c = 0) {\n// var k_c_corr =0;\n// var k_c_str=\"K\";\n//} else {\n// var k_c_corr =-273;\n// var k_c_str=\"\u00b0C\";\n//}\n\n//Set values\ntheta = Numbas.jme.unwrapValue(scope.variables.theta);\nr_theta = theta * Math.PI / 180. \nm = Numbas.jme.unwrapValue(scope.variables.mass);\n//et = Numbas.jme.unwrapValue(scope.variables.end_temp)+k_c_corr;\n//pt1 = Numbas.jme.unwrapValue(scope.variables.phase1_temp)+k_c_corr;\n//pt2 = Numbas.jme.unwrapValue(scope.variables.phase2_temp)+k_c_corr;\n\n\n// The function provided by the JSXGraph extension wraps the board up in\n// a div tag so that it's easier to embed in the page.\nvar div = Numbas.extensions.jsxgraph.makeBoard('300px','260px',\n//{boundingBox: [-0.1,-0.1,1.,1.],\n {boundingBox: [1.,0.8,-0.1,-0.1],\n axis: false,\n showNavigation: false,\n grid: false\n });\n\n// div.board is the object created by JSXGraph, which you use to\n// manipulate elements\nvar board = div.board;\n\n\n\n// create the x-axis.\n//var xaxis = board.create('line',[[0,0],[1,0]], {strokeColor: 'black', fixed: true});\n//var xticks = board.create('ticks',[xaxis,20],{\n// drawLabels: true,\n// minorTicks: 0\n//});\n\n// create the y-axis\n\n//var yaxis = board.create('line',[[0,0],[0,1]], { strokeColor: 'black', fixed: true });\n//var yticks = board.create('ticks',[yaxis,parseInt((et-st)/50.)*10],{\n//drawZero:true,\n//drawLabels: true,\n//label: {offset: [20, 0]},\n//minorTicks: 0\n//});\n\n\n// each line needs four coordinates start x,y and end x,y - these can then all be rotated\n\n// the slope itself\n\nvar l1_x1=0.\nvar l1_x2=0.9\nvar l1_y1=0.\nvar l1_y2=0.\n\n\t// the left edge of the box \n\nvar l2_x1=0.3\nvar l2_x2=0.3\nvar l2_y1=0\nvar l2_y2=0.2\n\n\t\t// the top edge of the box \n\nvar l3_x1=0.3\nvar l3_x2=0.6\nvar l3_y1=0.2\nvar l3_y2=0.2\n\t\t\t\n\t\t\t// the right edge of the box \n\nvar l4_x1=0.6\nvar l4_x2=0.6\nvar l4_y1=0.2\nvar l4_y2=0.\n\n//centre of the block\n\nvar c_x=0.45\nvar c_y=0.1\n\n//each line must be rotated by theta to get to the correct angle\n\n\n// the slope itself\n\nvar ql1_x1=l1_x1*Math.cos(r_theta)-l1_y1*Math.sin(r_theta)\nvar ql1_y1=l1_x1*Math.sin(r_theta)-l1_y1*Math.cos(r_theta)\nvar ql1_x2=l1_x2*Math.cos(r_theta)-l1_y2*Math.sin(r_theta)\nvar ql1_y2=l1_x2*Math.sin(r_theta)-l1_y2*Math.cos(r_theta)\n\n\t// the left edge of the box \n\nvar ql2_x1=l2_x1*Math.cos(r_theta)-l2_y1*Math.sin(r_theta)\nvar ql2_y1=l2_x1*Math.sin(r_theta)+l2_y1*Math.cos(r_theta)\nvar ql2_x2=l2_x2*Math.cos(r_theta)-l2_y2*Math.sin(r_theta)\nvar ql2_y2=l2_x2*Math.sin(r_theta)+l2_y2*Math.cos(r_theta)\n\n\t\t// the top edge of the box \n\nvar ql3_x1=l3_x1*Math.cos(r_theta)-l3_y1*Math.sin(r_theta)\nvar ql3_y1=l3_x1*Math.sin(r_theta)+l3_y1*Math.cos(r_theta)\nvar ql3_x2=l3_x2*Math.cos(r_theta)-l3_y2*Math.sin(r_theta)\nvar ql3_y2=l3_x2*Math.sin(r_theta)+l3_y2*Math.cos(r_theta)\n\t\t\t\n\t\t\t// the right edge of the box \n\nvar ql4_x1=l4_x1*Math.cos(r_theta)-l4_y1*Math.sin(r_theta)\nvar ql4_y1=l4_x1*Math.sin(r_theta)+l4_y1*Math.cos(r_theta)\nvar ql4_x2=l4_x2*Math.cos(r_theta)-l4_y2*Math.sin(r_theta)\nvar ql4_y2=l4_x2*Math.sin(r_theta)+l4_y2*Math.cos(r_theta)\n\n//centre of the box\n\nvar qc_x=c_x*Math.cos(r_theta)-c_y*Math.sin(r_theta)\nvar qc_y=c_x*Math.sin(r_theta)+c_y*Math.cos(r_theta)\n\n//var block = board.create('polygon',[ [0.3,0], [0.3,0.2] , [0.6,0.2] ,[0.6,0] ] );\n\n//\n//slope 1\nvar line1 = board.create('line',[[l1_x1,l1_y1],[l1_x2,l1_y2]], {straightFirst:true, straightLast:true, strokeColor: 'black', fixed: true });\nvar line1b = board.create('line',[[ql1_x1,ql1_y1],[ql1_x2,ql1_y2]], {straightFirst:false, straightLast:true, strokeColor: 'black', fixed: true });\nvar line2 = board.create('line',[[ql2_x1,ql2_y1],[ql2_x2,ql2_y2]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar line3 = board.create('line',[[ql3_x1,ql3_y1],[ql3_x2,ql3_y2]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar line4 = board.create('line',[[ql4_x1,ql4_y1],[ql4_x2,ql4_y2]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n//var slope6 = board.create('line',[[4,pt1],[20,pt2]], {dash:2,straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n//var dash1 = board.create('line',[[s1sz+4,st-10],[s1sz+4,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n//var dash2 = board.create('line',[[s1sz+8,st-10],[s1sz+8,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n//var dash3 = board.create('line',[[s1sz+s3sz+8,st-10],[s1sz+s3sz+8,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n//var dash4 = board.create('line',[[s1sz+s3sz+12,st-10],[s1sz+s3sz+12,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n\n//label the y-axis\nvar label = board.create('text',[0.25,0.05,theta+'\\xB0'],{fontSize:20});\n\n//label the mass\nvar mass = board.create('text',[qc_x,qc_y, m.toFixed(1)+' kg'], {display:'internal',rotate:-theta,anchorX:'middle',anchorY:'middle',fontSize:18});\n\n\n//var tRot = board.create('transform', [6,0.1,0.15], {type:'rotate'})\n//tRot.bindTo(mass);\n//board.update();\n// and return the container div\nreturn div;"}}, "ungrouped_variables": []}, {"name": "nuExam12 - Vector Addition", "extensions": ["geogebra", "quantities", "weh"], "custom_part_types": [{"source": {"pk": 24, "author": {"name": "William Haynes", "pk": 2530}, "edit_page": "/part_type/24/edit"}, "name": "Angle quantity", "short_name": "angle-quantity-from-reference", "description": "

Angle as a quantity in degrees.

", "help_url": "", "input_widget": "string", "input_options": {"correctAnswer": "plain_string(settings['correct_quantity'])", "hint": {"static": true, "value": ""}, "allowEmpty": {"static": true, "value": false}}, "can_be_gap": true, "can_be_step": true, "marking_script": "mark:\nswitch( \nright and good_units and right_sign and angle_in_range, add_credit(1.0,'Correct.'),\nright and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\nright and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but missing degree symbol.'),\nright and good_units and right_sign and not angle_in_range,add_credit(settings['C1'],'Angle is out of range.'),\nclose and good_units, add_credit(settings['C1'],'Close.'),\nclose and not good_units, add_credit(settings['C3'],'Answer is close, but missing degree symbol.'),\nincorrect('Wrong answer.')\n)\n\ninterpreted_answer:\nqty(student_scalar, student_units)\n\ncorrect_scalar:\nscalar(correct_quantity)\n \n\ncorrect_quantity:\nsettings['correct_quantity']\n\ncorrect_units:\nunits(correct_quantity)\n\nallowed_notation_styles:\n[\"plain\",\"en\"]\n\nmatch_student_number:\nmatchnumber(studentAnswer,allowed_notation_styles)\n\nstudent_scalar:\nmatch_student_number[1]\n\nstudent_units:\njoin(\nsplit(studentAnswer[len(match_student_number[0])..len(studentAnswer)]\n,\"\u00b0\"),\" deg\")\n\n\n\ngood_units:\ntry(\ncompatible(quantity(1, student_units),correct_quantity),\nmsg,\nfeedback(msg);false)\n\nstudent_quantity:\nswitch(not good_units, \nstudent_scalar * correct_units, \nnot right_sign,\n-quantity(student_scalar, student_units),\nquantity(student_scalar,student_units)\n)\n\nright_sign:\nsign(student_scalar) = sign(correct_quantity)\n\nangle_in_range:\nif(settings['restrict_angle'], abs(student_scalar) <= 90, true)\n\nright:\nwithinTolerance(abs(student_scalar), abs(correct_scalar), settings['right'])\n\nclose:\nwithinTolerance(student_scalar, correct_scalar, settings['close'])", "marking_notes": [{"name": "mark", "description": "This is the main marking note. It should award credit and provide feedback based on the student's answer.", "definition": "switch( \nright and good_units and right_sign and angle_in_range, add_credit(1.0,'Correct.'),\nright and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\nright and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but missing degree symbol.'),\nright and good_units and right_sign and not angle_in_range,add_credit(settings['C1'],'Angle is out of range.'),\nclose and good_units, add_credit(settings['C1'],'Close.'),\nclose and not good_units, add_credit(settings['C3'],'Answer is close, but missing degree symbol.'),\nincorrect('Wrong answer.')\n)"}, {"name": "interpreted_answer", "description": "A value representing the student's answer to this part.", "definition": "qty(student_scalar, student_units)"}, {"name": "correct_scalar", "description": "", "definition": "scalar(correct_quantity)\n "}, {"name": "correct_quantity", "description": "", "definition": "settings['correct_quantity']"}, {"name": "correct_units", "description": "", "definition": "units(correct_quantity)"}, {"name": "allowed_notation_styles", "description": "", "definition": "[\"plain\",\"en\"]"}, {"name": "match_student_number", "description": "", "definition": "matchnumber(studentAnswer,allowed_notation_styles)"}, {"name": "student_scalar", "description": "", "definition": "match_student_number[1]"}, {"name": "student_units", "description": "", "definition": "join(\nsplit(studentAnswer[len(match_student_number[0])..len(studentAnswer)]\n,\"\u00b0\"),\" deg\")\n\n"}, {"name": "good_units", "description": "", "definition": "try(\ncompatible(quantity(1, student_units),correct_quantity),\nmsg,\nfeedback(msg);false)"}, {"name": "student_quantity", "description": "", "definition": "switch(not good_units, \nstudent_scalar * correct_units, \nnot right_sign,\n-quantity(student_scalar, student_units),\nquantity(student_scalar,student_units)\n)"}, {"name": "right_sign", "description": "", "definition": "sign(student_scalar) = sign(correct_quantity)"}, {"name": "angle_in_range", "description": "", "definition": "if(settings['restrict_angle'], abs(student_scalar) <= 90, true)"}, {"name": "right", "description": "

Will check for correct sign elswhere.

", "definition": "withinTolerance(abs(student_scalar), abs(correct_scalar), settings['right'])"}, {"name": "close", "description": "

Must have correct sign to be close.

", "definition": "withinTolerance(student_scalar, correct_scalar, settings['close'])\n"}], "settings": [{"name": "correct_quantity", "label": "Correct Angle as quantity ", "help_url": "", "hint": "", "input_type": "code", "default_value": "qty(45,'deg')", "evaluate": true}, {"name": "right", "label": "Accuracy for right.", "help_url": "", "hint": "Question will be considered correct if the scalar part of the student's answer is within ± this amount from the correct value.", "input_type": "code", "default_value": "0.1", "evaluate": true}, {"name": "restrict_angle", "label": "Less than 90\u00b0", "help_url": "", "hint": "When checked, angle must be between -90° and +90°.", "input_type": "checkbox", "default_value": true}, {"name": "C1", "label": "Close with units.", "help_url": "", "hint": "Partial Credit for close value with appropriate units.", "input_type": "percent", "default_value": "75"}, {"name": "close", "label": " Accuracy for close.", "help_url": "", "hint": "Question will be considered close if the scalar part of the student's answer is within ± this amount from the correct value.", "input_type": "code", "default_value": "0.5", "evaluate": true}, {"name": "C2", "label": "No units or wrong sign", "help_url": "", "hint": "Partial credit for forgetting units or using wrong sign.", "input_type": "percent", "default_value": "50"}, {"name": "C3", "label": "Close, no units.", "help_url": "", "hint": "Partial Credit for close value without units.", "input_type": "percent", "default_value": "25"}], "public_availability": "restricted", "published": false, "extensions": ["quantities"]}, {"source": {"pk": 19, "author": {"name": "William Haynes", "pk": 2530}, "edit_page": "/part_type/19/edit"}, "name": "Engineering Accuracy with units", "short_name": "engineering-answer", "description": "

A value with units marked right if within an adjustable % error of the correct value.  Marked close if within a wider margin of error.

", "help_url": "", "input_widget": "string", "input_options": {"correctAnswer": "siground(settings['correctAnswer'],4)", "hint": {"static": true, "value": ""}, "allowEmpty": {"static": true, "value": true}}, "can_be_gap": true, "can_be_step": true, "marking_script": "mark:\nswitch( \n right and good_units and right_sign, add_credit(1.0,'Correct.'),\n right and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\n right and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but wrong or missing units.'),\n close and good_units, add_credit(settings['C1'],'Close.'),\n close and not good_units, add_credit(settings['C3'],'Answer is close, but wrong or missing units.'),\n incorrect('Wrong answer.')\n)\n\n\ninterpreted_answer:\nqty(student_scalar, student_units)\n\n\n\ncorrect_quantity:\nsettings[\"correctAnswer\"]\n\n\n\ncorrect_units:\nunits(correct_quantity)\n\n\nallowed_notation_styles:\n[\"plain\",\"en\"]\n\nmatch_student_number:\nmatchnumber(studentAnswer,allowed_notation_styles)\n\nstudent_scalar:\nmatch_student_number[1]\n\nstudent_units:\nreplace_regex('ohms','ohm',\n replace_regex('\u00b0', ' deg',\n replace_regex('-', ' ' ,\n studentAnswer[len(match_student_number[0])..len(studentAnswer)])),\"i\")\n\ngood_units:\ntry(\ncompatible(quantity(1, student_units),correct_units),\nmsg,\nfeedback(msg);false)\n\n\nstudent_quantity:\nswitch(not good_units, \n student_scalar * correct_units, \n not right_sign,\n -quantity(student_scalar, student_units),\n quantity(student_scalar,student_units)\n)\n \n\n\npercent_error:\ntry(\nscalar(abs((correct_quantity - student_quantity)/correct_quantity))*100 \n,msg,\nif(student_quantity=correct_quantity,0,100))\n \n\nright:\npercent_error <= settings['right']\n\n\nclose:\nright_sign and percent_error <= settings['close']\n\nright_sign:\nsign(student_scalar) = sign(correct_quantity)", "marking_notes": [{"name": "mark", "description": "This is the main marking note. It should award credit and provide feedback based on the student's answer.", "definition": "switch( \n right and good_units and right_sign, add_credit(1.0,'Correct.'),\n right and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\n right and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but wrong or missing units.'),\n close and good_units, add_credit(settings['C1'],'Close.'),\n close and not good_units, add_credit(settings['C3'],'Answer is close, but wrong or missing units.'),\n incorrect('Wrong answer.')\n)\n"}, {"name": "interpreted_answer", "description": "A value representing the student's answer to this part.", "definition": "qty(student_scalar, student_units)\n\n"}, {"name": "correct_quantity", "description": "", "definition": "settings[\"correctAnswer\"]\n\n"}, {"name": "correct_units", "description": "", "definition": "units(correct_quantity)\n"}, {"name": "allowed_notation_styles", "description": "", "definition": "[\"plain\",\"en\"]"}, {"name": "match_student_number", "description": "", "definition": "matchnumber(studentAnswer,allowed_notation_styles)"}, {"name": "student_scalar", "description": "", "definition": "match_student_number[1]"}, {"name": "student_units", "description": "

Modify the unit portion of the student's answer by

\n

1. replacing \"ohms\" with \"ohm\"  case insensitive

\n

2. replacing '-' with ' ' 

\n

3. replacing '°' with ' deg' 

\n

to allow answers like 10 ft-lb and 30°

", "definition": "replace_regex('ohms','ohm',\n replace_regex('\u00b0', ' deg',\n replace_regex('-', ' ' ,\n studentAnswer[len(match_student_number[0])..len(studentAnswer)])),\"i\")"}, {"name": "good_units", "description": "", "definition": "try(\ncompatible(quantity(1, student_units),correct_units),\nmsg,\nfeedback(msg);false)\n"}, {"name": "student_quantity", "description": "

This fixes the student answer for two common errors.  

\n

If student_units are wrong  - replace with correct units

\n

If student_scalar has the wrong sign - replace with right sign

\n

If student makes both errors, only one gets fixed.

", "definition": "switch(not good_units, \n student_scalar * correct_units, \n not right_sign,\n -quantity(student_scalar, student_units),\n quantity(student_scalar,student_units)\n)\n \n"}, {"name": "percent_error", "description": "", "definition": "try(\nscalar(abs((correct_quantity - student_quantity)/correct_quantity))*100 \n,msg,\nif(student_quantity=correct_quantity,0,100))\n "}, {"name": "right", "description": "", "definition": "percent_error <= settings['right']\n"}, {"name": "close", "description": "

Only marked close if the student actually has the right sign.

", "definition": "right_sign and percent_error <= settings['close']"}, {"name": "right_sign", "description": "", "definition": "sign(student_scalar) = sign(correct_quantity) "}], "settings": [{"name": "correctAnswer", "label": "Correct Quantity.", "help_url": "", "hint": "The correct answer given as a JME quantity.", "input_type": "code", "default_value": "", "evaluate": true}, {"name": "right", "label": "% Accuracy for right.", "help_url": "", "hint": "Question will be considered correct if the scalar part of the student's answer is within this % of correct value.", "input_type": "code", "default_value": "0.2", "evaluate": true}, {"name": "close", "label": "% Accuracy for close.", "help_url": "", "hint": "Question will be considered close if the scalar part of the student's answer is within this % of correct value.", "input_type": "code", "default_value": "1.0", "evaluate": true}, {"name": "C1", "label": "Close with units.", "help_url": "", "hint": "Partial Credit for close value with appropriate units.  if correct answer is 100 N and close is ±1%,
99  N is accepted.", "input_type": "percent", "default_value": "75"}, {"name": "C2", "label": "No units or wrong sign", "help_url": "", "hint": "Partial credit for forgetting units or using wrong sign.
If the correct answer is 100 N, both 100 and -100 N are accepted.", "input_type": "percent", "default_value": "50"}, {"name": "C3", "label": "Close, no units.", "help_url": "", "hint": "Partial Credit for close value but forgotten units.
This value would be close if the expected units were provided.  If the correct answer is 100 N, and close is ±1%,
99 is accepted.", "input_type": "percent", "default_value": "25"}], "public_availability": "always", "published": true, "extensions": ["quantities"]}], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Michael Proudman", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/269/"}, {"name": "William Haynes", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2530/"}, {"name": "Maria Aneiros", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/3388/"}], "preamble": {"js": "", "css": ""}, "functions": {"direction": {"language": "javascript", "type": "number", "parameters": [["v", "vector"]], "definition": "return Math.atan2(v[1],v[0])"}}, "variable_groups": [{"name": "Inputs", "variables": ["A", "B", "C", "alpha", "FA", "FB", "FC", "units", "debug"]}, {"name": "Outputs", "variables": ["ForceA", "beta", "gamma", "ForceB", "ForceC", "ForceR", "rho", "R", "angle_from_ref"]}], "variablesTest": {"maxRuns": 100, "condition": "B[0]<>C[0] and B[1]<>C[1] and abs(alpha-beta) >= 15 and abs(gamma-beta) >= 15 and abs(gamma-alpha) >= 15"}, "tags": [], "ungrouped_variables": [], "rulesets": {}, "parts": [{"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "gaps": [{"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(forceA[0],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(forceA[1],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(forceB[0],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(forceB[1],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(forceC[0],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(forceC[1],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}], "showCorrectAnswer": true, "type": "gapfill", "sortAnswers": false, "customMarkingAlgorithm": "", "prompt": "

Find the scalar components of the component forces A, B, and C

\n

$A_x =$ [[0]]  $B_x =$ [[2]]  $C_x =$ [[4]]

\n

$A_y =$ [[1]]  $B_y =$ [[3]]  $C_y =$ [[5]]

", "marks": 0, "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "gaps": [{"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(ForceR[0],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(ForceR[1],units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}], "showCorrectAnswer": true, "type": "gapfill", "sortAnswers": false, "customMarkingAlgorithm": "", "prompt": "

Sum the scalar components to get the scalar components of the resultant R.

\n

$R_x = \\Sigma F_x  = A_x + B_x + C_x =$ [[0]] 

\n

$R_y = \\Sigma F_y  = A_y + B_y + C_y =$ [[1]]  

", "marks": 0, "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "gaps": [{"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "engineering-answer", "settings": {"correctAnswer": "qty(R,units[1])", "C3": "25", "right": "0.2", "close": "1.0", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {"mark": {"order": "after", "script": "index = Numbas.jme.unwrapValue(this.studentAnswerAsJME());\nangles = Numbas.jme.unwrapValue(Numbas.exam.currentQuestion.scope.getVariable('angle_from_ref'));\nans = Qty(angles[index],'deg');\nthis.parentPart.gaps[2].settings.correct_quantity.value= ans;\nthis.markingComment(\"For your axis, the direction is \" + ans.toPrec('0.1 deg') +'.');"}}, "showCorrectAnswer": true, "type": "drop-down-axis-reference", "settings": {"dummy": "'ignore'"}, "customMarkingAlgorithm": "", "marks": "0", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "variableReplacements": [], "unitTests": [], "scripts": {}, "showCorrectAnswer": true, "type": "angle-quantity-from-reference", "settings": {"correct_quantity": "qty(angle_from_ref[0],'deg')", "C3": "25", "restrict_angle": true, "right": "0.2", "close": "1.01", "C2": "50", "C1": "75"}, "customMarkingAlgorithm": "", "marks": "2", "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}], "showCorrectAnswer": true, "type": "gapfill", "sortAnswers": false, "customMarkingAlgorithm": "", "prompt": "

Resolve $R_x$ and $R_y$ to find the magnitude and direction of R.

\n

$R = \\sqrt{{R_x}^2 +{R_y}^2}$ = [[0]] 

\n

 $\\theta = \\tan^{-1}\\left(\\left|\\dfrac{R_y}{R_x}\\right| \\right)$ = [[2]]  measured from the  [[1]]

\n

{angle_from_ref}

", "marks": 0, "useCustomName": false, "customName": "", "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}], "variables": {"angle_from_ref": {"definition": "let(ang,rho,\n[if(ang>180,ang-360,ang),\nif(ang>270,ang-450,if(ang < -90,ang+270,ang-90)),\nif(ang>0,ang-180,ang+180),\nif(ang>90,ang-270,90+ang)])", "description": "", "templateType": "anything", "group": "Outputs", "name": "angle_from_ref"}, "FA": {"definition": "random(10..100#5)", "description": "

Magnitude of force A

", "templateType": "anything", "group": "Inputs", "name": "FA"}, "units": {"definition": "random(['cm','N'],['cm','N'],['cm','N'])", "description": "", "templateType": "anything", "group": "Inputs", "name": "units"}, "alpha": {"definition": "(random(-80..175#5 except[45,135,-45,80,100]))", "description": "

direction of force A

", "templateType": "anything", "group": "Inputs", "name": "alpha"}, "ForceR": {"definition": "ForceA+ForceB+ForceC", "description": "

Resultant as a vector

", "templateType": "anything", "group": "Outputs", "name": "ForceR"}, "A": {"definition": "vector(0,0)", "description": "

Position of point A

", "templateType": "anything", "group": "Inputs", "name": "A"}, "gamma": {"definition": "degrees(direction(vector(C[0]-A[0],C[1]-A[1])))", "description": "

Direction of force C in degrees

", "templateType": "anything", "group": "Outputs", "name": "gamma"}, "C": {"definition": "vector(random(1,-1)random(2..6),random(1,-1)random(2..6))", "description": "

Position of point C

", "templateType": "anything", "group": "Inputs", "name": "C"}, "ForceB": {"definition": "FB *( vector(cos(radians(beta)),sin(radians(beta))))", "description": "

Force B as a vector

", "templateType": "anything", "group": "Outputs", "name": "ForceB"}, "ForceA": {"definition": "FA *( vector(cos(radians(alpha)),sin(radians(alpha))))", "description": "

force A as a vector

", "templateType": "anything", "group": "Outputs", "name": "ForceA"}, "beta": {"definition": "degrees(direction(vector(B[0]-A[0],B[1]-A[1])))", "description": "

Direction of force B

", "templateType": "anything", "group": "Outputs", "name": "beta"}, "FC": {"definition": "random(10..100#5)", "description": "

Magnitude of force C

", "templateType": "anything", "group": "Inputs", "name": "FC"}, "B": {"definition": "vector( random(1,-1) random(4..10),random(1,-1) random(2..5))", "description": "

Position of point B

", "templateType": "anything", "group": "Inputs", "name": "B"}, "ForceC": {"definition": "FC *( vector(cos(radians(gamma)),sin(radians(gamma))))", "description": "

Force C as a vector

", "templateType": "anything", "group": "Outputs", "name": "ForceC"}, "FB": {"definition": "random(10..100#10)", "description": "

Magnitude of Force B

", "templateType": "anything", "group": "Inputs", "name": "FB"}, "R": {"definition": "sqrt(ForceR[0]^2+forceR[1]^2)", "description": "

Magnitude of resultant

", "templateType": "anything", "group": "Outputs", "name": "R"}, "debug": {"definition": "false", "description": "", "templateType": "anything", "group": "Inputs", "name": "debug"}, "rho": {"definition": "degrees(direction(ForceR))", "description": "

direction of resultant

", "templateType": "anything", "group": "Outputs", "name": "rho"}}, "advice": "

Vector Addition:  

\n

$R_x = \\Sigma F_x =  (\\var{siground(ForceA[0],4)})  + (\\var{siground(ForceB[0],4)}) +( \\var{siground(ForceC[0],4)}) = \\var{siground(ForceR[0],4)}$ {units[1]}

\n

$R_y = \\Sigma F_y =  (\\var{siground(ForceA[1],4)})  + (\\var{siground(ForceB[1],4)}) +( \\var{siground(ForceC[1],4)}) = \\var{siground(ForceR[1],4)}$ {units[1]}

\n

\n

$ R=\\sqrt{R_x^2 + R_y^2} = \\sqrt{(\\var{siground(ForceR[0],4)})^2 +(\\var{siground(ForceR[0],4)})^2} = \\var{siground(abs(ForceR),4)}$ {units[1]}

\n

\n

$\\theta = \\tan^{-1}\\left(\\left|\\frac{R_y}{R_x}\\right| \\right) = \\tan^{-1}\\left(\\left|\\frac{\\var{siground(ForceR[1],4)}}{\\var{siground(ForceR[0],4)}}\\right| \\right)  = \\var{siground(degrees(arctan(abs(forceR[1])/forceR[0])),4)}°  =  (\\var{siground(rho,4)}° $ from the positive x-axis.)

", "statement": "

Three forces act on the bracket at point A:   A = {FA} {units[1]}, B = {FB} {units[1]} and, = {FC} {units[1]}.

\n

(The diagram may take a moment or two to load - give it chance)

\n

Find the magnitude and direction of the resultant force R by summing scalar components.

\n

Enter your magnitude quatities in SI units, eg. 500 N and give 2 d.p.

\n

{geogebra_applet('dtf3t2dp', [['A',A],['B',B],['C',C],['F_a',FA],['F_b',FB],['F_c',FC],['α', alpha],['unit','\"'+units[0]+'\"']])}

\n

\n

Force A: {fa} at {alpha} = {forceA} 

\n

Force B: {fb} at {beta} = {forceB}

\n

Force C: {fc} at {gamma} = {forceC}

\n

Resultant: {R} at {rho}  = {forceR}

", "metadata": {"description": "

Add three vectors by determining their scalar components, summing them and then resolving the rectangular components to find the magnitude and direction of the resultant

", "licence": "Creative Commons Attribution-NonCommercial 4.0 International"}, "type": "question"}, {"name": "Josh's copy of Vector addition: tip-to-tail method", "extensions": ["geogebra", "quantities", "weh"], "custom_part_types": [{"source": {"pk": 24, "author": {"name": "William Haynes", "pk": 2530}, "edit_page": "/part_type/24/edit"}, "name": "Angle quantity", "short_name": "angle-quantity-from-reference", "description": "

Angle as a quantity in degrees.

", "help_url": "", "input_widget": "string", "input_options": {"correctAnswer": "plain_string(settings['correct_quantity'])", "hint": {"static": true, "value": ""}, "allowEmpty": {"static": true, "value": false}}, "can_be_gap": true, "can_be_step": true, "marking_script": "mark:\nswitch( \nright and good_units and right_sign and angle_in_range, add_credit(1.0,'Correct.'),\nright and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\nright and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but missing degree symbol.'),\nright and good_units and right_sign and not angle_in_range,add_credit(settings['C1'],'Angle is out of range.'),\nclose and good_units, add_credit(settings['C1'],'Close.'),\nclose and not good_units, add_credit(settings['C3'],'Answer is close, but missing degree symbol.'),\nincorrect('Wrong answer.')\n)\n\ninterpreted_answer:\nqty(student_scalar, student_units)\n\ncorrect_scalar:\nscalar(correct_quantity)\n \n\ncorrect_quantity:\nsettings['correct_quantity']\n\ncorrect_units:\nunits(correct_quantity)\n\nallowed_notation_styles:\n[\"plain\",\"en\"]\n\nmatch_student_number:\nmatchnumber(studentAnswer,allowed_notation_styles)\n\nstudent_scalar:\nmatch_student_number[1]\n\nstudent_units:\njoin(\nsplit(studentAnswer[len(match_student_number[0])..len(studentAnswer)]\n,\"\u00b0\"),\" deg\")\n\n\n\ngood_units:\ntry(\ncompatible(quantity(1, student_units),correct_quantity),\nmsg,\nfeedback(msg);false)\n\nstudent_quantity:\nswitch(not good_units, \nstudent_scalar * correct_units, \nnot right_sign,\n-quantity(student_scalar, student_units),\nquantity(student_scalar,student_units)\n)\n\nright_sign:\nsign(student_scalar) = sign(correct_quantity)\n\nangle_in_range:\nif(settings['restrict_angle'], abs(student_scalar) <= 90, true)\n\nright:\nwithinTolerance(abs(student_scalar), abs(correct_scalar), settings['right'])\n\nclose:\nwithinTolerance(student_scalar, correct_scalar, settings['close'])", "marking_notes": [{"name": "mark", "description": "This is the main marking note. It should award credit and provide feedback based on the student's answer.", "definition": "switch( \nright and good_units and right_sign and angle_in_range, add_credit(1.0,'Correct.'),\nright and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\nright and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but missing degree symbol.'),\nright and good_units and right_sign and not angle_in_range,add_credit(settings['C1'],'Angle is out of range.'),\nclose and good_units, add_credit(settings['C1'],'Close.'),\nclose and not good_units, add_credit(settings['C3'],'Answer is close, but missing degree symbol.'),\nincorrect('Wrong answer.')\n)"}, {"name": "interpreted_answer", "description": "A value representing the student's answer to this part.", "definition": "qty(student_scalar, student_units)"}, {"name": "correct_scalar", "description": "", "definition": "scalar(correct_quantity)\n "}, {"name": "correct_quantity", "description": "", "definition": "settings['correct_quantity']"}, {"name": "correct_units", "description": "", "definition": "units(correct_quantity)"}, {"name": "allowed_notation_styles", "description": "", "definition": "[\"plain\",\"en\"]"}, {"name": "match_student_number", "description": "", "definition": "matchnumber(studentAnswer,allowed_notation_styles)"}, {"name": "student_scalar", "description": "", "definition": "match_student_number[1]"}, {"name": "student_units", "description": "", "definition": "join(\nsplit(studentAnswer[len(match_student_number[0])..len(studentAnswer)]\n,\"\u00b0\"),\" deg\")\n\n"}, {"name": "good_units", "description": "", "definition": "try(\ncompatible(quantity(1, student_units),correct_quantity),\nmsg,\nfeedback(msg);false)"}, {"name": "student_quantity", "description": "", "definition": "switch(not good_units, \nstudent_scalar * correct_units, \nnot right_sign,\n-quantity(student_scalar, student_units),\nquantity(student_scalar,student_units)\n)"}, {"name": "right_sign", "description": "", "definition": "sign(student_scalar) = sign(correct_quantity)"}, {"name": "angle_in_range", "description": "", "definition": "if(settings['restrict_angle'], abs(student_scalar) <= 90, true)"}, {"name": "right", "description": "

Will check for correct sign elswhere.

", "definition": "withinTolerance(abs(student_scalar), abs(correct_scalar), settings['right'])"}, {"name": "close", "description": "

Must have correct sign to be close.

", "definition": "withinTolerance(student_scalar, correct_scalar, settings['close'])\n"}], "settings": [{"name": "correct_quantity", "label": "Correct Angle as quantity ", "help_url": "", "hint": "", "input_type": "code", "default_value": "qty(45,'deg')", "evaluate": true}, {"name": "right", "label": "Accuracy for right.", "help_url": "", "hint": "Question will be considered correct if the scalar part of the student's answer is within ± this amount from the correct value.", "input_type": "code", "default_value": "0.1", "evaluate": true}, {"name": "restrict_angle", "label": "Less than 90\u00b0", "help_url": "", "hint": "When checked, angle must be between -90° and +90°.", "input_type": "checkbox", "default_value": true}, {"name": "C1", "label": "Close with units.", "help_url": "", "hint": "Partial Credit for close value with appropriate units.", "input_type": "percent", "default_value": "75"}, {"name": "close", "label": " Accuracy for close.", "help_url": "", "hint": "Question will be considered close if the scalar part of the student's answer is within ± this amount from the correct value.", "input_type": "code", "default_value": "0.5", "evaluate": true}, {"name": "C2", "label": "No units or wrong sign", "help_url": "", "hint": "Partial credit for forgetting units or using wrong sign.", "input_type": "percent", "default_value": "50"}, {"name": "C3", "label": "Close, no units.", "help_url": "", "hint": "Partial Credit for close value without units.", "input_type": "percent", "default_value": "25"}], "public_availability": "restricted", "published": false, "extensions": ["quantities"]}, {"source": {"pk": 19, "author": {"name": "William Haynes", "pk": 2530}, "edit_page": "/part_type/19/edit"}, "name": "Engineering Accuracy with units", "short_name": "engineering-answer", "description": "

A value with units marked right if within an adjustable % error of the correct value.  Marked close if within a wider margin of error.

", "help_url": "", "input_widget": "string", "input_options": {"correctAnswer": "siground(settings['correctAnswer'],4)", "hint": {"static": true, "value": ""}, "allowEmpty": {"static": true, "value": true}}, "can_be_gap": true, "can_be_step": true, "marking_script": "mark:\nswitch( \n right and good_units and right_sign, add_credit(1.0,'Correct.'),\n right and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\n right and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but wrong or missing units.'),\n close and good_units, add_credit(settings['C1'],'Close.'),\n close and not good_units, add_credit(settings['C3'],'Answer is close, but wrong or missing units.'),\n incorrect('Wrong answer.')\n)\n\n\ninterpreted_answer:\nqty(student_scalar, student_units)\n\n\n\ncorrect_quantity:\nsettings[\"correctAnswer\"]\n\n\n\ncorrect_units:\nunits(correct_quantity)\n\n\nallowed_notation_styles:\n[\"plain\",\"en\"]\n\nmatch_student_number:\nmatchnumber(studentAnswer,allowed_notation_styles)\n\nstudent_scalar:\nmatch_student_number[1]\n\nstudent_units:\nreplace_regex('ohms','ohm',\n replace_regex('\u00b0', ' deg',\n replace_regex('-', ' ' ,\n studentAnswer[len(match_student_number[0])..len(studentAnswer)])),\"i\")\n\ngood_units:\ntry(\ncompatible(quantity(1, student_units),correct_units),\nmsg,\nfeedback(msg);false)\n\n\nstudent_quantity:\nswitch(not good_units, \n student_scalar * correct_units, \n not right_sign,\n -quantity(student_scalar, student_units),\n quantity(student_scalar,student_units)\n)\n \n\n\npercent_error:\ntry(\nscalar(abs((correct_quantity - student_quantity)/correct_quantity))*100 \n,msg,\nif(student_quantity=correct_quantity,0,100))\n \n\nright:\npercent_error <= settings['right']\n\n\nclose:\nright_sign and percent_error <= settings['close']\n\nright_sign:\nsign(student_scalar) = sign(correct_quantity)", "marking_notes": [{"name": "mark", "description": "This is the main marking note. It should award credit and provide feedback based on the student's answer.", "definition": "switch( \n right and good_units and right_sign, add_credit(1.0,'Correct.'),\n right and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\n right and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but wrong or missing units.'),\n close and good_units, add_credit(settings['C1'],'Close.'),\n close and not good_units, add_credit(settings['C3'],'Answer is close, but wrong or missing units.'),\n incorrect('Wrong answer.')\n)\n"}, {"name": "interpreted_answer", "description": "A value representing the student's answer to this part.", "definition": "qty(student_scalar, student_units)\n\n"}, {"name": "correct_quantity", "description": "", "definition": "settings[\"correctAnswer\"]\n\n"}, {"name": "correct_units", "description": "", "definition": "units(correct_quantity)\n"}, {"name": "allowed_notation_styles", "description": "", "definition": "[\"plain\",\"en\"]"}, {"name": "match_student_number", "description": "", "definition": "matchnumber(studentAnswer,allowed_notation_styles)"}, {"name": "student_scalar", "description": "", "definition": "match_student_number[1]"}, {"name": "student_units", "description": "

Modify the unit portion of the student's answer by

\n

1. replacing \"ohms\" with \"ohm\"  case insensitive

\n

2. replacing '-' with ' ' 

\n

3. replacing '°' with ' deg' 

\n

to allow answers like 10 ft-lb and 30°

", "definition": "replace_regex('ohms','ohm',\n replace_regex('\u00b0', ' deg',\n replace_regex('-', ' ' ,\n studentAnswer[len(match_student_number[0])..len(studentAnswer)])),\"i\")"}, {"name": "good_units", "description": "", "definition": "try(\ncompatible(quantity(1, student_units),correct_units),\nmsg,\nfeedback(msg);false)\n"}, {"name": "student_quantity", "description": "

This fixes the student answer for two common errors.  

\n

If student_units are wrong  - replace with correct units

\n

If student_scalar has the wrong sign - replace with right sign

\n

If student makes both errors, only one gets fixed.

", "definition": "switch(not good_units, \n student_scalar * correct_units, \n not right_sign,\n -quantity(student_scalar, student_units),\n quantity(student_scalar,student_units)\n)\n \n"}, {"name": "percent_error", "description": "", "definition": "try(\nscalar(abs((correct_quantity - student_quantity)/correct_quantity))*100 \n,msg,\nif(student_quantity=correct_quantity,0,100))\n "}, {"name": "right", "description": "", "definition": "percent_error <= settings['right']\n"}, {"name": "close", "description": "

Only marked close if the student actually has the right sign.

", "definition": "right_sign and percent_error <= settings['close']"}, {"name": "right_sign", "description": "", "definition": "sign(student_scalar) = sign(correct_quantity) "}], "settings": [{"name": "correctAnswer", "label": "Correct Quantity.", "help_url": "", "hint": "The correct answer given as a JME quantity.", "input_type": "code", "default_value": "", "evaluate": true}, {"name": "right", "label": "% Accuracy for right.", "help_url": "", "hint": "Question will be considered correct if the scalar part of the student's answer is within this % of correct value.", "input_type": "code", "default_value": "0.2", "evaluate": true}, {"name": "close", "label": "% Accuracy for close.", "help_url": "", "hint": "Question will be considered close if the scalar part of the student's answer is within this % of correct value.", "input_type": "code", "default_value": "1.0", "evaluate": true}, {"name": "C1", "label": "Close with units.", "help_url": "", "hint": "Partial Credit for close value with appropriate units.  if correct answer is 100 N and close is ±1%,
99  N is accepted.", "input_type": "percent", "default_value": "75"}, {"name": "C2", "label": "No units or wrong sign", "help_url": "", "hint": "Partial credit for forgetting units or using wrong sign.
If the correct answer is 100 N, both 100 and -100 N are accepted.", "input_type": "percent", "default_value": "50"}, {"name": "C3", "label": "Close, no units.", "help_url": "", "hint": "Partial Credit for close value but forgotten units.
This value would be close if the expected units were provided.  If the correct answer is 100 N, and close is ±1%,
99 is accepted.", "input_type": "percent", "default_value": "25"}], "public_availability": "always", "published": true, "extensions": ["quantities"]}], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "William Haynes", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2530/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "tags": [], "metadata": {"description": "

Given three vectors, arrange them in a tip to tail arrangement using geogebra, then estimate the magnitude and direction of their resultant.

", "licence": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International"}, "parts": [{"variableReplacementStrategy": "originalfirst", "unitTests": [], "prompt": "
    \n
  1. Move the tips of forces A, B, and C in this diagram to the correct magnitudes and directions. When this has been done correctly the dotted vector will become solid.
  2. \n
  3. Pick up vectors A, B and C  by their tails, and move them into a tip to tail arrangement. When this has been correctly done the resultant R will appear.
  4. \n
\n

{geogebra_applet('jwussezq ', [['f_a', forceA],['f_b', forceB],['f_c', forceC]])}

\n

Based on this diagram, estimate the magnitude R  and direction of the resultant.

\n

R = [[0]] @ [[2]] measured from the [[1]].

\n

", "marks": 0, "showCorrectAnswer": true, "showFeedbackIcon": true, "gaps": [{"variableReplacementStrategy": "originalfirst", "marks": "4", "variableReplacements": [], "type": "engineering-answer", "settings": {"C3": "25", "correctAnswer": "qty(R,units[1])", "close": "4", "right": "2", "C2": "50", "C1": "75"}, "showCorrectAnswer": true, "customMarkingAlgorithm": "", "scripts": {}, "unitTests": [], "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "marks": "0", "variableReplacements": [], "type": "drop-down-axis-reference", "settings": {"dummy": "'ignore'"}, "showCorrectAnswer": true, "customMarkingAlgorithm": "", "scripts": {"mark": {"script": "index = Numbas.jme.unwrapValue(this.studentAnswerAsJME());\nangles = Numbas.jme.unwrapValue(Numbas.exam.currentQuestion.scope.getVariable('angle_from_ref'));\nans = angles[index]+' deg';\nthis.parentPart.gaps[2].settings.correct_quantity.value=Qty(ans);\nthis.markingComment(\"For your axis, the direction is \" + ans +'.');", "order": "after"}}, "unitTests": [], "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}, {"variableReplacementStrategy": "alwaysreplace", "marks": "4", "variableReplacements": [{"must_go_first": false, "variable": "ref", "part": "p0g1"}], "type": "angle-quantity-from-reference", "settings": {"C3": "25", "restrict_angle": false, "close": "4", "correct_quantity": "qty(angle_from_ref[ref],'deg')", "right": "2", "C2": "50", "C1": "75"}, "showCorrectAnswer": true, "customMarkingAlgorithm": "", "scripts": {}, "unitTests": [], "extendBaseMarkingAlgorithm": true, "showFeedbackIcon": true}], "variableReplacements": [], "type": "gapfill", "customMarkingAlgorithm": "", "scripts": {}, "sortAnswers": false, "extendBaseMarkingAlgorithm": true}], "variable_groups": [{"variables": ["alpha", "gamma", "beta", "FA", "FB", "FC", "units", "debug"], "name": "Inputs"}, {"variables": ["ForceA", "ForceB", "ForceC", "ForceR", "rho", "R", "angle_from_ref", "ref"], "name": "Outputs"}], "ungrouped_variables": [], "functions": {"direction": {"parameters": [["v", "vector"]], "language": "javascript", "type": "number", "definition": "return Math.atan2(v[1],v[0])"}}, "rulesets": {}, "variablesTest": {"maxRuns": 100, "condition": "abs(alpha-beta) >= 15 and abs(beta-gamma) >= 15 and abs(gamma-alpha) >= 15 and r <=100 and r > 10"}, "type": "question", "variables": {"rho": {"description": "

direction of resultant

", "name": "rho", "group": "Outputs", "templateType": "anything", "definition": "degrees(direction(ForceR))"}, "ForceB": {"description": "

Force B as a vector

", "name": "ForceB", "group": "Outputs", "templateType": "anything", "definition": "FB *( vector(cos(radians(beta)),sin(radians(beta))))"}, "FB": {"description": "

Magnitude of Force B

", "name": "FB", "group": "Inputs", "templateType": "anything", "definition": "random(20..80#5)"}, "ref": {"description": "", "name": "ref", "group": "Outputs", "templateType": "anything", "definition": "0"}, "debug": {"description": "", "name": "debug", "group": "Inputs", "templateType": "anything", "definition": "false"}, "beta": {"description": "

Direction of force B

", "name": "beta", "group": "Inputs", "templateType": "anything", "definition": "(random(-180..180#15))"}, "gamma": {"description": "

Direction of force C in degrees

", "name": "gamma", "group": "Inputs", "templateType": "anything", "definition": "(random(-180..180#15))"}, "ForceC": {"description": "

Force C as a vector

", "name": "ForceC", "group": "Outputs", "templateType": "anything", "definition": "FC *( vector(cos(radians(gamma)),sin(radians(gamma))))"}, "angle_from_ref": {"description": "", "name": "angle_from_ref", "group": "Outputs", "templateType": "anything", "definition": "[if(rho>180,rho-360,rho),\nif(rho>270,rho-450,rho-90),\nrho-180,\nif(rho>90,rho-270,90+rho)]\n\n"}, "ForceA": {"description": "

force A as a vector

", "name": "ForceA", "group": "Outputs", "templateType": "anything", "definition": "FA *( vector(cos(radians(alpha)),sin(radians(alpha))))"}, "ForceR": {"description": "

Resultant as a vector

", "name": "ForceR", "group": "Outputs", "templateType": "anything", "definition": "ForceA+ForceB+ForceC"}, "R": {"description": "

Magnitude of resultant

", "name": "R", "group": "Outputs", "templateType": "anything", "definition": "abs(ForceR)"}, "FC": {"description": "

Magnitude of force C

", "name": "FC", "group": "Inputs", "templateType": "anything", "definition": "random(20..80#5)"}, "units": {"description": "", "name": "units", "group": "Inputs", "templateType": "anything", "definition": "random(['ft','lb'],['in','lb'],['cm','N'])"}, "alpha": {"description": "

direction of force A

", "name": "alpha", "group": "Inputs", "templateType": "anything", "definition": "(random(-180..180#15))\n"}, "FA": {"description": "

Magnitude of force A

", "name": "FA", "group": "Inputs", "templateType": "anything", "definition": "random(20..80#5)"}}, "advice": "

Vector Addition:  

\n

$\\Sigma F_x =  R_x \\qquad  R=\\sqrt{R_x^2 + R_y^2}\\\\\\\\ \\Sigma F_y =  R_y  \\qquad \\theta = \\tan^{-1}\\left(\\left|\\frac{R_y}{R_x}\\right| \\right)$

", "statement": "

Three forces act on  point A:   A = {FA} {units[1]} at {alpha}°, B = {FB} {units[1]} at {beta}°  and, = {FC} {units[1]} at {gamma}°.

\n

Estimate the magnitude and direction of the resultant force R using the tip-to-tail method.

\n

Force A: {fa} {units[1]} at {alpha} = {forceA} 

\n

Force B: {fb} {units[1]} at {beta} = {forceB}

\n

Force C: {fc}{units[1]} at {gamma} = {forceC}

\n

Resultant: {R}{units[1]}  at {rho}  = {forceR}

", "preamble": {"js": "", "css": ".red{color:red;}\n.blue{color:blue;}\n.green{color:green;}"}}, {"name": "Josh's copy of Carnot cycle efficiency", "extensions": ["jsxgraph"], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Tom Stallard", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/841/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "ungrouped_variables": ["v1", "v2", "v3", "v4", "th", "tc", "n", "r", "p1", "p2", "p3", "p4", "hcr", "n3", "efficiency", "w_12", "w_34", "w_23", "w_41", "work", "q_h"], "variable_groups": [], "statement": "

{draw_block()}

\n

A Carnot engine is in action. The temperature of its hot reservoir is {th} K, and the temperature of its cold reservoir is {tc} K

", "type": "question", "tags": [], "advice": "

a)

\n

$Efficiency = (1-\\frac{T_c}{T_h})$ = 1-({tc}/{th}) = {siground(efficiency/100,3)}

\n

So the efficiency of the carnot cycle is {siground(efficiency,3)} %.

\n

b)

\n

$Efficiency = \\frac{useful\\,energy}{total\\,energy} = \\frac{work}{heat\\,from\\,hot\\,reservoir}$

\n

$Q_h = \\frac{W}{eff} =$ {work} / {siground(efficiency/100,3)}

\n

So the heat extracted from the hot reservoir is {siground(q_h,3)} J.

", "rulesets": {}, "parts": [{"showFeedbackIcon": true, "type": "numberentry", "notationStyles": ["plain", "en", "si-en"], "scripts": {}, "prompt": "

Calculate the efficiency of the carnot engine, in percent to three significant figures.

", "allowFractions": false, "correctAnswerStyle": "plain", "mustBeReducedPC": 0, "showCorrectAnswer": true, "marks": "2", "correctAnswerFraction": false, "maxValue": "siground(efficiency,3)+siground(abs(efficiency/100),3)", "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "mustBeReduced": false, "minValue": "siground(efficiency,3)-siground(abs(efficiency/100),3)"}, {"showFeedbackIcon": true, "type": "numberentry", "notationStyles": ["plain", "en", "si-en"], "scripts": {}, "prompt": "

The work done by the Carnot cycle was {work} J. Calculate the amount of heat added to the system from the hot reservoir, to three significant figures.

", "allowFractions": false, "correctAnswerStyle": "plain", "mustBeReducedPC": 0, "showCorrectAnswer": true, "marks": "2", "correctAnswerFraction": false, "maxValue": "siground(q_h,3)+siground(abs(q_h/100),3)", "variableReplacements": [{"must_go_first": true, "variable": "efficiency", "part": "p0"}], "variableReplacementStrategy": "originalfirst", "mustBeReduced": false, "minValue": "siground(q_h,3)-siground(abs(q_h/100),3)"}], "functions": {"draw_block": {"type": "html", "definition": "\n//Set values\np1 = Numbas.jme.unwrapValue(scope.variables.p1);\np2 = Numbas.jme.unwrapValue(scope.variables.p2);\np3 = Numbas.jme.unwrapValue(scope.variables.p3);\np4 = Numbas.jme.unwrapValue(scope.variables.p4);\n\nv1 = Numbas.jme.unwrapValue(scope.variables.v1);\nv2 = Numbas.jme.unwrapValue(scope.variables.v2);\nv3 = Numbas.jme.unwrapValue(scope.variables.v3);\nv4 = Numbas.jme.unwrapValue(scope.variables.v4);\nth = Numbas.jme.unwrapValue(scope.variables.th);\ntc = Numbas.jme.unwrapValue(scope.variables.tc);\n\nr = Numbas.jme.unwrapValue(scope.variables.r);\nn = Numbas.jme.unwrapValue(scope.variables.n);\nhcr = Numbas.jme.unwrapValue(scope.variables.hcr);\n\nvstep12=(v2-v1)/20.0\nvstep23=(v3-v2)/20.0\nvstep43=(v3-v4)/20.0\nvstep14=(v4-v1)/20.0\n\n\nmaxp=Math.max(p1,p2,p3,p4)*1.1;\nminp=Math.min(p1,p2,p3,p4)-0.5;\n\nmaxv=Math.max(v1,v2,v3,v4)*1.1;\nminv=Math.min(v1,v2,v3,v4)-0.5;\n\n\npticks=parseInt(maxp/16)*2\nvticks=parseInt(maxv/10)\n\n// The function provided by the JSXGraph extension wraps the board up in\n// a div tag so that it's easier to embed in the page.\nvar div = Numbas.extensions.jsxgraph.makeBoard('500px','360px',\n {boundingBox: [-0.5,maxp,maxv,-0.5],\n axis: false,\n showNavigation: false,\n grid: false\n });\n\n// div.board is the object created by JSXGraph, which you use to\n// manipulate elements\nvar board = div.board;\n\n\n\n// create the x-axis.\nvar xaxis = board.create('line',[[0,0],[maxv,0]], {strokeColor: 'black', fixed: false});\nvar xticks = board.create('ticks',[xaxis,vticks],{\n drawLabels: true,\n minorTicks: 1,\n label: {offset: [-3, 20]}\n});\n\n// create the y-axis\n\nvar yaxis = board.create('line',[[0,0],[0,maxp]], {strokeColor: 'black', fixed: false});\nvar yticks = board.create('ticks',[yaxis,pticks],{\n drawLabels: true,\n minorTicks: 1,\n label: {offset: [20, -3]}\n});\n\n\n// each line needs four coordinates start x,y and end x,y - these can then all be rotated\n\n\n//\n//slope 1\n\n\nvar X12 = []\nvar Y12 = []\n\nfor (i = 0; i < 21; i++) {\n X12.push(v1+(vstep12*i));\n Y12.push(p1*v1/(v1+(vstep12*i)));\n}\n\nvar X23 = []\nvar Y23 = []\n\nfor (i = 0.0; i < 21.0; i++) {\n X23.push(v2+(vstep23*i));\n Y23.push(p2*Math.pow(v2, hcr)/Math.pow((v2+(vstep23*i)), hcr));\n}\n\nvar X43 = []\nvar Y43 = []\n\nfor (i = 0; i < 21; i++) {\n X43.push(v4+(vstep43*i));\n Y43.push(p4*v4/(v4+(vstep43*i)));\n}\n\nvar X14 = []\nvar Y14 = []\n\nfor (i = 0.0; i < 21.0; i++) {\n X14.push(v1+(vstep14*i));\n Y14.push(p1*Math.pow(v1, hcr)/Math.pow((v1+(vstep14*i)), hcr));\n}\n\n\n\n\n\n\nvar step12 = board.create('curve', [X12,Y12],{strokeColor:'red',strokeWidth:3});\nvar step23 = board.create('curve', [X23,Y23],{strokeColor:'black',strokeWidth:3, dash:2});\nvar step43 = board.create('curve', [X43,Y43],{strokeColor:'blue',strokeWidth:3});\nvar step14 = board.create('curve', [X14,Y14],{strokeColor:'black',strokeWidth:3, dash:2});\n\n//var dash43 = board.create('line',[[v1,p1],[v2,p2]], {dash:1, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n//var dash43 = board.create('line',[[v1,p1],[v4,p4]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\nboard.create('text',[v1,p1,'1'],{fontSize:20,anchorX:'middle',anchorY:'middle'});\nboard.create('text',[v2,p2,'2'],{fontSize:20,anchorX:'middle',anchorY:'middle'});\nboard.create('text',[v3,p3,'3'],{fontSize:20,anchorX:'middle',anchorY:'middle'});\nboard.create('text',[v4,p4,'4'],{fontSize:20,anchorX:'middle',anchorY:'middle'});\n\n\nboard.create('text',[maxv/2,-0.2,'Volume'],{fontSize:20,anchorX:'middle',anchorY:'middle'});\nboard.create('text',[-0.2,maxp/2,'Pressure'],{display:'internal',fontSize:20,anchorX:'middle',anchorY:'middle',rotate:90});\n\n// and return the container div\nreturn div;", "language": "javascript", "parameters": []}}, "preamble": {"js": "", "css": ""}, "metadata": {"description": "

Calculate the efficiency and heat from the hot reservoir in a Carnot Cycle (with carnot diagram)

", "licence": "Creative Commons Attribution 4.0 International"}, "variablesTest": {"maxRuns": 100, "condition": ""}, "variables": {"w_12": {"description": "", "definition": "n*R*Th*ln(v2/v1)", "name": "w_12", "templateType": "anything", "group": "Ungrouped variables"}, "p4": {"description": "", "definition": "n*r*tc/v4", "name": "p4", "templateType": "anything", "group": "Ungrouped variables"}, "th": {"description": "

random(600..950)

", "definition": "random(1300..1950)", "name": "th", "templateType": "anything", "group": "Ungrouped variables"}, "p2": {"description": "", "definition": "n*r*th/v2", "name": "p2", "templateType": "anything", "group": "Ungrouped variables"}, "v2": {"description": "

v1+random(0.5..4#0.1)

", "definition": "v1+random(4.5..8#0.1)", "name": "v2", "templateType": "anything", "group": "Ungrouped variables"}, "w_34": {"description": "", "definition": "n*R*Tc*ln(v4/v3)", "name": "w_34", "templateType": "anything", "group": "Ungrouped variables"}, "p1": {"description": "", "definition": "n*r*th/v1", "name": "p1", "templateType": "anything", "group": "Ungrouped variables"}, "q_h": {"description": "", "definition": "work/(efficiency/100)", "name": "q_h", "templateType": "anything", "group": "Ungrouped variables"}, "tc": {"description": "

th-random(50..300)

", "definition": "th-random(400..600)", "name": "tc", "templateType": "anything", "group": "Ungrouped variables"}, "efficiency": {"description": "", "definition": "(1-(tc/th))*100", "name": "efficiency", "templateType": "anything", "group": "Ungrouped variables"}, "p3": {"description": "

P2V2hcr = P3V3hcr

", "definition": "p2*v2^(hcr)/v3^(hcr)", "name": "p3", "templateType": "anything", "group": "Ungrouped variables"}, "v4": {"description": "", "definition": "(th*(v1^(hcr-1))/tc)^(1/(hcr-1))", "name": "v4", "templateType": "anything", "group": "Ungrouped variables"}, "r": {"description": "", "definition": "0.082", "name": "r", "templateType": "anything", "group": "Ungrouped variables"}, "hcr": {"description": "", "definition": "1.6", "name": "hcr", "templateType": "anything", "group": "Ungrouped variables"}, "v3": {"description": "

(Th V2(γ - 1)/Tc )1/(γ - 1)= V3

", "definition": "(th*(v2^(hcr-1))/tc)^(1/(hcr-1))", "name": "v3", "templateType": "anything", "group": "Ungrouped variables"}, "work": {"description": "", "definition": "siground(w_12+w_23+w_34+w_41,3)", "name": "work", "templateType": "anything", "group": "Ungrouped variables"}, "n3": {"description": "

test - should match n

", "definition": "p3*v3/(r*tc)", "name": "n3", "templateType": "anything", "group": "Ungrouped variables"}, "w_41": {"description": "", "definition": "((p1*v1)-(p4*v4))/(1-hcr)", "name": "w_41", "templateType": "anything", "group": "Ungrouped variables"}, "w_23": {"description": "", "definition": "((p3*v3)-(p2*v2))/(1-hcr)", "name": "w_23", "templateType": "anything", "group": "Ungrouped variables"}, "n": {"description": "", "definition": "random(0.1..5.0#0.1)", "name": "n", "templateType": "anything", "group": "Ungrouped variables"}, "v1": {"description": "", "definition": "random(8.5..15.0#0.1)", "name": "v1", "templateType": "anything", "group": "Ungrouped variables"}}}]}, {"name": "Data analysis", "pickingStrategy": "all-ordered", "pickQuestions": 1, "questions": [{"name": "Josh's copy of Use data uploaded by the student", "extensions": ["stats"], "custom_part_types": [], "resources": [["question-resources/Data.csv", "/srv/numbas/media/question-resources/Data.csv"]], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Christian Lawson-Perfect", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/7/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "tags": [], "metadata": {"description": "

Get the student to upload their experimental data in a CSV file, then ask them to compute statistics on it.

", "licence": "Creative Commons Attribution 4.0 International"}, "statement": "

This question will only work in browsers that support the HTML5 File API! For Internet Explorer users, that means version 10 onwards.

\n

How does the length of a spring change when you suspend different masses from it? Make measurements of your spring's length when hanging various different weights from it.

\n

Download the data spreadsheet and open it in a program such as Microsoft Excel. Enter your data, save the file, and then upload it using the button below.

", "advice": "", "rulesets": {}, "variables": {}, "variablesTest": {"condition": "", "maxRuns": 100}, "ungrouped_variables": [], "variable_groups": [], "functions": {}, "preamble": {"js": "// read a csv file\nfunction readCSV(text) {\n var lines = text.split('\\n');\n return lines.map(function(line){return line.split(',')});\n}\n\n// wait until the question has been generated\nquestion.signals.on('HTMLAttached',function(e) {\n var display = question.display;\n\n // set up an observable for the data array\n var _data = display.data = ko.observableArray([]);\n \n // has the student uploaded data?\n display.gotData = ko.computed(function() {\n return _data().length>0;\n });\n \n // an observable object containing various computed statistics about the data - updates automatically when the data changes\n var stats = question.stats = ko.computed(function() {\n var data = _data();\n \n // weights are in the first column\n var weights = data.map(function(r){return r[0]});\n // lengths in the second column\n var lengths = data.map(function(r){return r[1]});\n \n // how many samples?\n var n = data.length;\n \n // components of the linear regression calculation\n var sx = jStat.sum(weights);\n var sy = jStat.sum(lengths);\n var sxx = jStat.sum(weights.map(function(x){return x*x}));\n var syy = jStat.sum(lengths.map(function(x){return x*x}));\n var sxy = jStat.sum(data.map(function(r){ return r[0]*r[1]}));\n \n // coefficients of the linear regression model\n var beta = (sxy - (sx*sy)/n)/(sxx-(sx*sx)/n);\n var alpha = (sy-beta*sx)/n;\n \n var stats = {\n sx: sx,\n sy: sy,\n sxx: sxx,\n syy: syy,\n sxy: sxy,\n alpha: alpha,\n beta: beta,\n n: data.length\n };\n \n return stats;\n });\n \n // format a number to 3 d.p.\n function niceNumber(n) {\n return Numbas.math.niceNumber(n,{precisionType: 'dp', precision: 3});\n }\n \n // code to read the file when it's uploaded\n $('#file').on('change',function(e) {\n var f = e.target.files[0];\n var reader = new FileReader();\n reader.onload = function(e) {\n var data = readCSV(e.target.result);\n _data(data.map(function(row){ return row.map(parseFloat)}).filter(function(row){return !isNaN(row[0])}));\n }\n reader.readAsText(f);\n });\n});", "css": "#data-table {\n max-height: 30em;\n overflow-y: auto;\n display: inline-block;\n}\na, a:hover {\n color: blue;\n}\na:hover {\n text-decoration: underline;\n}"}, "parts": [{"type": "information", "useCustomName": false, "customName": "", "marks": 0, "showCorrectAnswer": true, "showFeedbackIcon": true, "scripts": {}, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "adaptiveMarkingPenalty": 0, "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "unitTests": [], "prompt": "
\n

\n
\n

Your data

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Weight (N)Length (cm)
\n
\n
\n

$n$:

\n

$\\sum x$:

\n

$\\sum y$:

\n

$\\sum x^2$:

\n

$\\sum y^2$:

\n

$\\sum xy$:

\n

$\\alpha$:

\n

$\\beta$:

\n
\n
\n
"}, {"type": "gapfill", "useCustomName": false, "customName": "", "marks": 0, "showCorrectAnswer": true, "showFeedbackIcon": true, "scripts": {}, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "adaptiveMarkingPenalty": 0, "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "unitTests": [], "prompt": "

Compute the following statistics from your data.

\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
$\\sum x$$\\sum y$$\\sum x^2$$\\sum y^2$$\\sum xy$
[[0]][[1]][[2]][[3]][[4]]
", "gaps": [{"type": "numberentry", "useCustomName": false, "customName": "", "marks": 1, "showCorrectAnswer": true, "showFeedbackIcon": true, "scripts": {"mark": {"script": "// get the computed stats\nvar stats = this.question.stats();\n// set the correct answer to the computed stat\nthis.settings.minvalue = stats.sx;\nthis.settings.maxvalue = stats.sx;", "order": "after"}}, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "adaptiveMarkingPenalty": 0, "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "unitTests": [], "minValue": "0", "maxValue": "0", "correctAnswerFraction": false, "allowFractions": false, "mustBeReduced": false, "mustBeReducedPC": 0, "showFractionHint": true, "notationStyles": ["plain", "en", "si-en"], "correctAnswerStyle": "plain"}, {"type": "numberentry", "useCustomName": false, "customName": "", "marks": 1, "showCorrectAnswer": true, "showFeedbackIcon": true, "scripts": {"mark": {"script": "var stats = this.question.stats();\nthis.settings.minvalue = stats.sy;\nthis.settings.maxvalue = stats.sy;", "order": "before"}}, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "adaptiveMarkingPenalty": 0, "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "unitTests": [], "minValue": "0", "maxValue": "0", "correctAnswerFraction": false, "allowFractions": false, "mustBeReduced": false, "mustBeReducedPC": 0, "showFractionHint": true, "notationStyles": ["plain", "en", "si-en"], "correctAnswerStyle": "plain"}, {"type": "numberentry", "useCustomName": false, "customName": "", "marks": 1, "showCorrectAnswer": true, "showFeedbackIcon": true, "scripts": {"mark": {"script": "var stats = this.question.stats();\nthis.settings.minvalue = stats.sxx;\nthis.settings.maxvalue = stats.sxx;", "order": "before"}}, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "adaptiveMarkingPenalty": 0, "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "unitTests": [], "minValue": "0", "maxValue": "0", "correctAnswerFraction": false, "allowFractions": false, "mustBeReduced": false, "mustBeReducedPC": 0, "showFractionHint": true, "notationStyles": ["plain", "en", "si-en"], "correctAnswerStyle": "plain"}, {"type": "numberentry", "useCustomName": false, "customName": "", "marks": 1, "showCorrectAnswer": true, "showFeedbackIcon": true, "scripts": {"mark": {"script": "var stats = this.question.stats();\nthis.settings.minvalue = stats.syy;\nthis.settings.maxvalue = stats.syy;", "order": "before"}}, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "adaptiveMarkingPenalty": 0, "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "unitTests": [], "minValue": "0", "maxValue": "0", "correctAnswerFraction": false, "allowFractions": false, "mustBeReduced": false, "mustBeReducedPC": 0, "showFractionHint": true, "notationStyles": ["plain", "en", "si-en"], "correctAnswerStyle": "plain"}, {"type": "numberentry", "useCustomName": false, "customName": "", "marks": 1, "showCorrectAnswer": true, "showFeedbackIcon": true, "scripts": {"mark": {"script": "var stats = this.question.stats();\nthis.settings.minvalue = stats.sxy;\nthis.settings.maxvalue = stats.sxy;", "order": "before"}}, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "adaptiveMarkingPenalty": 0, "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "unitTests": [], "minValue": "0", "maxValue": "0", "correctAnswerFraction": false, "allowFractions": false, "mustBeReduced": false, "mustBeReducedPC": 0, "showFractionHint": true, "notationStyles": ["plain", "en", "si-en"], "correctAnswerStyle": "plain"}], "sortAnswers": false}]}, {"name": "Josh's copy of Loading JSON data: Cooper Hewitt collection", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Christian Lawson-Perfect", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/7/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "rulesets": {}, "type": "question", "parts": [], "functions": {}, "statement": "

The table below contains information about some items in the Cooper Hewitt collection.

\n

{html(info)}

", "variables": {"info": {"name": "info", "definition": "\"\n\n\n\n\n\n\n\n\n\n\n{rows}\n
TitleParticipantsDecadeAcquired
\n\"", "group": "Ungrouped variables", "templateType": "anything", "description": "

A table containing information about the chosen items.

"}, "items": {"name": "items", "definition": "shuffle(eligible_items)[0..5]", "group": "Ungrouped variables", "templateType": "anything", "description": "

5 randomly chosen items.

"}, "rows": {"name": "rows", "definition": "join(map(\n \"\n \n \n {item['title']}\n
    {join(map('
  • '+participant['person_name']+'
  • ',participant,item['participants']),'\\n')}
\n {item['decade']}\n {item['year_acquired']}\n \n \",\n item,\n items\n),'\\n')", "group": "Ungrouped variables", "templateType": "anything", "description": "

A table row for each item.

\n

The first column contains an image representing the item, with a link to a high-resolution version of the same image.

"}, "eligible_items": {"name": "eligible_items", "definition": "filter(\n len(x['images'])>0 and len(x['participants'])>0 and x['decade']<>'',\n x,\n data\n)", "group": "Ungrouped variables", "templateType": "anything", "description": "

Items which have all of the information we want to show.

"}, "data": {"name": "data", "definition": "json_decode(safe(\"[\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"184585\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/184585_0aa8ce5ae705fba7_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"184585\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/184585_0aa8ce5ae705fba7_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"184585\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/184585_0aa8ce5ae705fba7_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 662, \\\"image_id\\\": \\\"184585\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/184585_0aa8ce5ae705fba7_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 414, \\\"image_id\\\": \\\"184585\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/184585_0aa8ce5ae705fba7_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/136251587/\\\", \\\"year_acquired\\\": null, \\\"participants\\\": [{\\\"person_name\\\": \\\"Jay Shuster\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"152251855\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/152251855/\\\", \\\"role_id\\\": \\\"35236565\\\"}, {\\\"person_name\\\": \\\"Pixar Animation Studios\\\", \\\"role_name\\\": \\\"Creator\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236807/\\\", \\\"person_id\\\": \\\"18058661\\\", \\\"role_display_name\\\": \\\"Created by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058661/\\\", \\\"role_id\\\": \\\"35236807\\\"}, {\\\"person_name\\\": \\\"Pixar Animation Studios\\\", \\\"role_name\\\": \\\"Lender\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/51571131/\\\", \\\"person_id\\\": \\\"18058661\\\", \\\"role_display_name\\\": \\\"Lent by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058661/\\\", \\\"role_id\\\": \\\"51571131\\\"}], \\\"title\\\": \\\"Concept Art, Finn McMissile Hydrofoil, Cars 2, 2011\\\", \\\"medium\\\": \\\"digital painting\\\", \\\"description\\\": null, \\\"decade\\\": \\\"2010\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"183785\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/183785_1121ab98e530765e_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 245}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"183785\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/183785_1121ab98e530765e_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 245}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"183785\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/183785_1121ab98e530765e_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"183785\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/183785_1121ab98e530765e_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 783}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"183785\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/183785_1121ab98e530765e_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 489}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/136251777/\\\", \\\"year_acquired\\\": null, \\\"participants\\\": [{\\\"person_name\\\": \\\"Bob Pauley\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"136252083\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/136252083/\\\", \\\"role_id\\\": \\\"35236565\\\"}, {\\\"person_name\\\": \\\"Pixar Animation Studios\\\", \\\"role_name\\\": \\\"Creator\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236807/\\\", \\\"person_id\\\": \\\"18058661\\\", \\\"role_display_name\\\": \\\"Created by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058661/\\\", \\\"role_id\\\": \\\"35236807\\\"}, {\\\"person_name\\\": \\\"Pixar Animation Studios\\\", \\\"role_name\\\": \\\"Lender\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/51571131/\\\", \\\"person_id\\\": \\\"18058661\\\", \\\"role_display_name\\\": \\\"Lent by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058661/\\\", \\\"role_id\\\": \\\"51571131\\\"}], \\\"title\\\": \\\"Concept Art, Character Layout, Monsters, Inc., 2001\\\", \\\"medium\\\": \\\"collage, ink, marker, and pencil on paper\\\", \\\"description\\\": null, \\\"decade\\\": \\\"2000\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#aabab0\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}, {\\\"closest_css4\\\": \\\"#dcdcdc\\\", \\\"closest_css3\\\": \\\"#dcdcdc\\\", \\\"color\\\": \\\"#c9e3e6\\\", \\\"closest_crayola\\\": \\\"#c5d0e6\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#465f50\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#848c7c\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#9ba1a6\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 280, \\\"image_id\\\": \\\"30365\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/30365_26b36cc0dee6523e_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 280, \\\"image_id\\\": \\\"30365\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/30365_26b36cc0dee6523e_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"30365\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/30365_26b36cc0dee6523e_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 895, \\\"image_id\\\": \\\"30365\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/30365_26b36cc0dee6523e_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 560, \\\"image_id\\\": \\\"30365\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/30365_26b36cc0dee6523e_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18094631/\\\", \\\"year_acquired\\\": \\\"1896\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Fragment, 17th century\\\", \\\"medium\\\": \\\"silk\\\", \\\"description\\\": \\\"Green satin background with pattern \\\\u2013 much worn away \\\\u2013 of floral shapes in polychrome.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#4b5665\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#6c7583\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#c6d6d7\\\", \\\"closest_crayola\\\": \\\"#c5d0e6\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#9dacae\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#233037\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"85564\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/85564_927b56caf01d615e_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 168}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"85564\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/85564_927b56caf01d615e_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 168}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"85564\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/85564_927b56caf01d615e_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"85564\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/85564_927b56caf01d615e_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 536}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"85564\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/85564_927b56caf01d615e_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 335}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18096329/\\\", \\\"year_acquired\\\": \\\"1896\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Elsie de Wolfe\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18050371\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1865\\\\u20131950\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050371/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Fragments, 18th century\\\", \\\"medium\\\": \\\"silk\\\\nwoven\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18096385/\\\", \\\"year_acquired\\\": \\\"1896\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Sample Book (France), late 19th century\\\", \\\"medium\\\": null, \\\"description\\\": \\\"Worth of Paris, V. 2. There are 189 swatches glued to the pages of the book.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"222804\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/222804_31a10e3c66bf6976_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 249}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"222804\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/222804_31a10e3c66bf6976_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 249}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"222804\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/222804_31a10e3c66bf6976_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"222804\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/222804_31a10e3c66bf6976_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 798}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"222804\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/222804_31a10e3c66bf6976_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 499}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18098217/\\\", \\\"year_acquired\\\": \\\"1896\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"George Campbell Cooper\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18049767\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049767/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Print (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a891a3\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6f5464\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#806f82\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4a3241\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"802\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/802_6c08379f1a4cf9f5_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 218}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"802\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/802_6c08379f1a4cf9f5_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 218}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"802\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/802_6c08379f1a4cf9f5_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"802\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/802_6c08379f1a4cf9f5_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 698}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"802\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/802_6c08379f1a4cf9f5_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 436}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18109709/\\\", \\\"year_acquired\\\": \\\"1901\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#be9a87\\\", \\\"closest_crayola\\\": \\\"#cd9575\\\"}, {\\\"closest_css4\\\": \\\"#d8bfd8\\\", \\\"closest_css3\\\": \\\"#d8bfd8\\\", \\\"color\\\": \\\"#c9cae7\\\", \\\"closest_crayola\\\": \\\"#c5d0e6\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#342427\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#8d6e62\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#684840\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/400_07ccb95687a40bfd_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 195}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/400_07ccb95687a40bfd_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 195}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/400_07ccb95687a40bfd_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/400_07ccb95687a40bfd_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 625}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/400_07ccb95687a40bfd_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 391}}, {\\\"n\\\": {\\\"height\\\": 201, \\\"image_id\\\": \\\"171779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171779_a253e7d62c956a5c_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 201, \\\"image_id\\\": \\\"171779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171779_a253e7d62c956a5c_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"171779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171779_a253e7d62c956a5c_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 642, \\\"image_id\\\": \\\"171779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171779_a253e7d62c956a5c_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 401, \\\"image_id\\\": \\\"171779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171779_a253e7d62c956a5c_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18113347/\\\", \\\"year_acquired\\\": \\\"1901\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Various Donors\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041163\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041163/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Felice Giani\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18042405\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"Italian, 1758\\\\u20131823\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042405/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Drawing, Self-Portrait of Felice Giani; recto: Muses Seated Beneath a Tree, late 18th\\\\u2013early 19th century\\\", \\\"medium\\\": \\\"pen and brown ink, brush and brown wash on cream wove paper\\\", \\\"description\\\": \\\"Recto: Group of classically-inspired female figures in loose drapery gather and sit around a large rock and several trees in the center of the composition\\\\n\\\\nVerso: half-length portrait of a man wearing a top hat and collared jacket seated leaning on the top rail of a chair and looking off to the right of the composition. In front of the man is a tabletop with several objects resting on the surface.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#9e927e\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#81705d\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 226, \\\"image_id\\\": \\\"122326\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122326_dfd7eebd3cb89178_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 226, \\\"image_id\\\": \\\"122326\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122326_dfd7eebd3cb89178_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"122326\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122326_dfd7eebd3cb89178_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 724, \\\"image_id\\\": \\\"122326\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122326_dfd7eebd3cb89178_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 453, \\\"image_id\\\": \\\"122326\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122326_dfd7eebd3cb89178_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18113521/\\\", \\\"year_acquired\\\": \\\"1901\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#e0dac8\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#938f86\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6e6963\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#474440\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b1b1a7\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 259, \\\"image_id\\\": \\\"170975\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170975_8257dcb1686141e5_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 259, \\\"image_id\\\": \\\"170975\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170975_8257dcb1686141e5_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"170975\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170975_8257dcb1686141e5_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 828, \\\"image_id\\\": \\\"170975\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170975_8257dcb1686141e5_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 517, \\\"image_id\\\": \\\"170975\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170975_8257dcb1686141e5_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18123509/\\\", \\\"year_acquired\\\": \\\"1901\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Felice Giani\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18042405\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"Italian, 1758\\\\u20131823\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042405/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a98a91\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#897175\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6a575a\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b7a9b6\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"224\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224_e2061e3543bbc76d_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 210}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"224\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224_e2061e3543bbc76d_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 210}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"224\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224_e2061e3543bbc76d_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"224\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224_e2061e3543bbc76d_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 672}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"224\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224_e2061e3543bbc76d_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 420}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18127957/\\\", \\\"year_acquired\\\": \\\"1901\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": \\\"brush and brown ink with traces of graphite\\\\nsupport: off-white laid paper\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#8e7630\\\", \\\"closest_crayola\\\": \\\"#9c7c38\\\"}, {\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#72591c\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#b79e57\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}, {\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#4f3709\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#ccc1a2\\\", \\\"closest_crayola\\\": \\\"#e7c697\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 302, \\\"image_id\\\": \\\"137409\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137409_eb87662dcd5b62fd_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 302, \\\"image_id\\\": \\\"137409\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137409_eb87662dcd5b62fd_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"137409\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137409_eb87662dcd5b62fd_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 967, \\\"image_id\\\": \\\"137409\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137409_eb87662dcd5b62fd_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 605, \\\"image_id\\\": \\\"137409\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137409_eb87662dcd5b62fd_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18143107/\\\", \\\"year_acquired\\\": \\\"1904\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Jacob H. Schiff\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18050451\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, b. Germany, 1847\\\\u20131920\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050451/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Mount\\\", \\\"medium\\\": null, \\\"description\\\": \\\"furniture mount fragment\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"186916\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/186916_51968eb0a361e6c5_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 284}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"186916\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/186916_51968eb0a361e6c5_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 284}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"186916\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/186916_51968eb0a361e6c5_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"186916\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/186916_51968eb0a361e6c5_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 909}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"186916\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/186916_51968eb0a361e6c5_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 568}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18169297/\\\", \\\"year_acquired\\\": \\\"1910\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Plaque (France), early 17th century\\\", \\\"medium\\\": \\\"wood, carved\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a7a38e\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 199, \\\"image_id\\\": \\\"137480\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137480_a6a22688b836c373_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 199, \\\"image_id\\\": \\\"137480\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137480_a6a22688b836c373_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"137480\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137480_a6a22688b836c373_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 638, \\\"image_id\\\": \\\"137480\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137480_a6a22688b836c373_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 399, \\\"image_id\\\": \\\"137480\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/137480_a6a22688b836c373_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18195693/\\\", \\\"year_acquired\\\": \\\"1917\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Frederic Edwin Church\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18041941\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"American, 1826\\\\u20131900\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041941/\\\", \\\"role_id\\\": \\\"35236565\\\"}, {\\\"person_name\\\": \\\"Louis P. Church\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18051625\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1870\\\\u20131943\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18051625/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing, Street with Houses, Guayaquil, Ecuador, May 1857\\\", \\\"medium\\\": \\\"graphite, brush and white gouache on thin gray paper\\\", \\\"description\\\": \\\"Recto: Horizontal oblique view of a street, directed toward the left, with a group of trees standing beside the first housee at right as a fence surrounds the lot.\\\\n\\\\nVerso: Portion of an unfinished sketch, right margin.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#80785c\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#abaf96\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#63573e\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#9f9167\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"117808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117808_75939f5884b42544_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"117808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117808_75939f5884b42544_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"117808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117808_75939f5884b42544_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 662, \\\"image_id\\\": \\\"117808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117808_75939f5884b42544_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 413, \\\"image_id\\\": \\\"117808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117808_75939f5884b42544_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"16161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/16161_51e96cc8f204ec5f_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"16161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/16161_51e96cc8f204ec5f_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"16161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/16161_51e96cc8f204ec5f_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 664, \\\"image_id\\\": \\\"16161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/16161_51e96cc8f204ec5f_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 415, \\\"image_id\\\": \\\"16161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/16161_51e96cc8f204ec5f_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18199629/\\\", \\\"year_acquired\\\": \\\"1917\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Frederic Edwin Church\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18041941\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"American, 1826\\\\u20131900\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041941/\\\", \\\"role_id\\\": \\\"35236565\\\"}, {\\\"person_name\\\": \\\"Louis P. Church\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18051625\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1870\\\\u20131943\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18051625/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing, The Watzmann and Goell, near Berchtesgeden, 1868\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18214079/\\\", \\\"year_acquired\\\": \\\"1920\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18225289/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Antoine Watteau\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18042561\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"French, 1684 \\\\u2013 1721\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042561/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Bound Print, Apollon, in Oeuvre de Gillot\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18229959/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18230555/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18248191/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18249189/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18251685/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18257165/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18270313/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18291673/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Jacques-Fran\\\\u00e7ois Blondel\\\", \\\"role_name\\\": \\\"Collaborator\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236579/\\\", \\\"person_id\\\": \\\"18059897\\\", \\\"role_display_name\\\": \\\"Collaborator:\\\", \\\"person_date\\\": \\\"1705 \\\\u2013 1774\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18059897/\\\", \\\"role_id\\\": \\\"35236579\\\"}, {\\\"person_name\\\": \\\"Jean Mariette\\\", \\\"role_name\\\": \\\"Publisher\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236661/\\\", \\\"person_id\\\": \\\"18058107\\\", \\\"role_display_name\\\": \\\"Published by\\\", \\\"person_date\\\": \\\"1660\\\\u20131742\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058107/\\\", \\\"role_id\\\": \\\"35236661\\\"}], \\\"title\\\": \\\"Print (France), 1727\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#bfb9a5\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#50524c\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#919082\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6e6f66\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 209, \\\"image_id\\\": \\\"158085\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158085_ad41147ba303494c_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 209, \\\"image_id\\\": \\\"158085\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158085_ad41147ba303494c_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"158085\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158085_ad41147ba303494c_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 669, \\\"image_id\\\": \\\"158085\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158085_ad41147ba303494c_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 418, \\\"image_id\\\": \\\"158085\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158085_ad41147ba303494c_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18298063/\\\", \\\"year_acquired\\\": \\\"1921\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18298475/\\\", \\\"year_acquired\\\": \\\"1923\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Marie Torrance Hadden\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18054495\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18054495/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Candelabra\\\", \\\"medium\\\": \\\"bronze\\\", \\\"description\\\": \\\"female bronze figures\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#dbd7b9\\\", \\\"closest_crayola\\\": \\\"#efcdb8\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#758466\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#8fbc8f\\\", \\\"closest_css3\\\": \\\"#8fbc8f\\\", \\\"color\\\": \\\"#a2a98a\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"118166\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118166_0eb25981ec2487a4_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 98}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"118166\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118166_0eb25981ec2487a4_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 98}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"118166\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118166_0eb25981ec2487a4_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"118166\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118166_0eb25981ec2487a4_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 312}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"118166\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118166_0eb25981ec2487a4_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 195}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"69023\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69023_7e647fc1241c0a5a_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 209}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"69023\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69023_7e647fc1241c0a5a_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 209}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"69023\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69023_7e647fc1241c0a5a_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"69023\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69023_7e647fc1241c0a5a_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 669}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"69023\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69023_7e647fc1241c0a5a_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 418}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18300529/\\\", \\\"year_acquired\\\": \\\"1923\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"A. Algara R. de Terreros\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18051711\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18051711/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Fragment (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#8e6e4c\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#dcd9c3\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6d7159\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#92998c\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#cd853f\\\", \\\"closest_css3\\\": \\\"#cd853f\\\", \\\"color\\\": \\\"#aa8d5d\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"127161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/127161_7aac73fd14f49d58_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 202}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"127161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/127161_7aac73fd14f49d58_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 202}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"127161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/127161_7aac73fd14f49d58_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"127161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/127161_7aac73fd14f49d58_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 646}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"127161\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/127161_7aac73fd14f49d58_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 403}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18306047/\\\", \\\"year_acquired\\\": \\\"1924\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Advisory Council\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049621\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"Founded 1907\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049621/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#777b6c\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#37382d\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 65, \\\"image_id\\\": \\\"205342\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205342_f407ab32d5f53cfd_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 65, \\\"image_id\\\": \\\"205342\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205342_f407ab32d5f53cfd_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 208, \\\"image_id\\\": \\\"205342\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205342_f407ab32d5f53cfd_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 208, \\\"image_id\\\": \\\"205342\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205342_f407ab32d5f53cfd_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 130, \\\"image_id\\\": \\\"205342\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205342_f407ab32d5f53cfd_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"69164\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69164_debd783e4c5483d3_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 144}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"69164\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69164_debd783e4c5483d3_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 144}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"69164\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69164_debd783e4c5483d3_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"69164\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69164_debd783e4c5483d3_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 460}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"69164\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/69164_debd783e4c5483d3_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 288}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18311959/\\\", \\\"year_acquired\\\": \\\"1926\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Joseph K. Miller\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18051733\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18051733/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Ribbon (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#778899\\\", \\\"closest_css3\\\": \\\"#778899\\\", \\\"color\\\": \\\"#898c95\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#555c73\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"131788\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/131788_001bfe4edb0494d3_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 239}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"131788\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/131788_001bfe4edb0494d3_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 239}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"131788\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/131788_001bfe4edb0494d3_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"131788\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/131788_001bfe4edb0494d3_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 766}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"131788\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/131788_001bfe4edb0494d3_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 478}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18313285/\\\", \\\"year_acquired\\\": \\\"1927\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing (Netherlands)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#927c4d\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#433f43\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6e6c67\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#6c5745\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a59a73\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"2592\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/2592_2479764e2dfaf76c_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 252}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"2592\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/2592_2479764e2dfaf76c_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 252}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"2592\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/2592_2479764e2dfaf76c_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"2592\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/2592_2479764e2dfaf76c_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 806}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"2592\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/2592_2479764e2dfaf76c_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 504}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18319437/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Calvin S. Hathaway\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18052379\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052379/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Bandbox (USA), 1800\\\\u20131810\\\", \\\"medium\\\": \\\"block-printed in oil colors on handmade paper\\\", \\\"description\\\": \\\"Vertical rectangle in blue, black and green, on neutral yellow field. An eagle with outstretched wings, perched upon an urn decked with flowers, holds an olive branch in his beak.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#9a9888\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#000000\\\", \\\"closest_css3\\\": \\\"#000000\\\", \\\"color\\\": \\\"#29170b\\\", \\\"closest_crayola\\\": \\\"#000000\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#747061\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4a3f32\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#725640\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 284, \\\"image_id\\\": \\\"153669\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153669_6698bea08b46867b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 284, \\\"image_id\\\": \\\"153669\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153669_6698bea08b46867b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"153669\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153669_6698bea08b46867b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 910, \\\"image_id\\\": \\\"153669\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153669_6698bea08b46867b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 568, \\\"image_id\\\": \\\"153669\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153669_6698bea08b46867b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18321183/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Button (France), 19th century\\\", \\\"medium\\\": \\\"copper, silver-plated\\\", \\\"description\\\": \\\"Convex button ornamented with shield showing heraldic devices held by leopard supporters standing on ribbon with \\\\\\\"Arme pour le Roi\\\\\\\"; surmounted by crown and crest. Copper back and shank. On reverse: \\\\\\\"[Bo] uvet 14 Rue Castiglione.\\\\\\\"\\\\n\\\\nOn card 45\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#d8d1c7\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#663a1d\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#800000\\\", \\\"closest_css3\\\": \\\"#800000\\\", \\\"color\\\": \\\"#471d0c\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#7c5f3d\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#bcaf98\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 96, \\\"image_id\\\": \\\"135997\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/135997_41bcf99d15ff4979_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 96, \\\"image_id\\\": \\\"135997\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/135997_41bcf99d15ff4979_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"135997\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/135997_41bcf99d15ff4979_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 308, \\\"image_id\\\": \\\"135997\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/135997_41bcf99d15ff4979_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 193, \\\"image_id\\\": \\\"135997\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/135997_41bcf99d15ff4979_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18325473/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Combs (Italy), mid-19th century\\\", \\\"medium\\\": \\\"tortoiseshell, coral, gold\\\", \\\"description\\\": \\\"A) and B) Tortoise shell side comb with cresting of gold and coral beads.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18329571/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18329853/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18332853/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Photograph\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18333279/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Bound Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18335425/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#bdb8a5\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#878778\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#dcdcdc\\\", \\\"closest_css3\\\": \\\"#dcdcdc\\\", \\\"color\\\": \\\"#e8e2cd\\\", \\\"closest_crayola\\\": \\\"#efdecd\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#696b60\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#59514e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 195, \\\"image_id\\\": \\\"171065\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171065_084e98ce7b65fc62_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 195, \\\"image_id\\\": \\\"171065\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171065_084e98ce7b65fc62_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"171065\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171065_084e98ce7b65fc62_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 624, \\\"image_id\\\": \\\"171065\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171065_084e98ce7b65fc62_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 390, \\\"image_id\\\": \\\"171065\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/171065_084e98ce7b65fc62_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18335965/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#aca794\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"129798\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129798_2de0d84968c03fc5_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 94}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"129798\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129798_2de0d84968c03fc5_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 94}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"129798\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129798_2de0d84968c03fc5_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"129798\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129798_2de0d84968c03fc5_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 301}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"129798\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129798_2de0d84968c03fc5_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 188}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18342427/\\\", \\\"year_acquired\\\": \\\"1936\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"George Cameron Stone\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18052181\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052181/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Kozuka\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#adaca2\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"130055\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130055_d88ff4d58e29f7cd_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 93}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"130055\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130055_d88ff4d58e29f7cd_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 93}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"130055\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130055_d88ff4d58e29f7cd_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 296}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"130055\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130055_d88ff4d58e29f7cd_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 296}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"130055\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130055_d88ff4d58e29f7cd_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 185}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18342707/\\\", \\\"year_acquired\\\": \\\"1936\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"George Cameron Stone\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18052181\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052181/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Kashira\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#9c8458\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#5f4526\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#000000\\\", \\\"closest_css3\\\": \\\"#000000\\\", \\\"color\\\": \\\"#31190a\\\", \\\"closest_crayola\\\": \\\"#000000\\\"}, {\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#c4a97b\\\", \\\"closest_crayola\\\": \\\"#cd9575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"181650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/181650_ef5c106dbe0ff0b2_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 175}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"181650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/181650_ef5c106dbe0ff0b2_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 175}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"181650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/181650_ef5c106dbe0ff0b2_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"181650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/181650_ef5c106dbe0ff0b2_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 561}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"181650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/181650_ef5c106dbe0ff0b2_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 350}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18343843/\\\", \\\"year_acquired\\\": \\\"1936\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Shepherd Creche Figure\\\", \\\"medium\\\": \\\"wood,wire,hemp\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18343927/\\\", \\\"year_acquired\\\": \\\"1936\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Spencer Bickerton\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18052817\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052817/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18355801/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}, {\\\"person_name\\\": \\\"Giuseppe Barberi\\\", \\\"role_name\\\": \\\"Architect\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236663/\\\", \\\"person_id\\\": \\\"18041999\\\", \\\"role_display_name\\\": \\\"Architect:\\\", \\\"person_date\\\": \\\"Italian, 1746\\\\u20131809\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041999/\\\", \\\"role_id\\\": \\\"35236663\\\"}], \\\"title\\\": \\\"Drawing, Palace\\\", \\\"medium\\\": \\\"pen and brown ink, brush and brown wash\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18356885/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}, {\\\"person_name\\\": \\\"Giuseppe Barberi\\\", \\\"role_name\\\": \\\"Architect\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236663/\\\", \\\"person_id\\\": \\\"18041999\\\", \\\"role_display_name\\\": \\\"Architect:\\\", \\\"person_date\\\": \\\"Italian, 1746\\\\u20131809\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041999/\\\", \\\"role_id\\\": \\\"35236663\\\"}], \\\"title\\\": \\\"Drawing, Entrance wall with vaulted ceiling\\\", \\\"medium\\\": \\\"pen and brown ink, brush and brown wash\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"192650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/192650_19e579bb3824ddfe_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 185}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"192650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/192650_19e579bb3824ddfe_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 185}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"192650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/192650_19e579bb3824ddfe_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"192650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/192650_19e579bb3824ddfe_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 592}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"192650\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/192650_19e579bb3824ddfe_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 370}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18359577/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": \\\"recto: red chalk on off-white laid paper \\\\nverso: pen and brown ink with brown wash and traces of graphite on off-white laid paper\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#faebd7\\\", \\\"closest_css3\\\": \\\"#faebd7\\\", \\\"color\\\": \\\"#f5efd8\\\", \\\"closest_crayola\\\": \\\"#efdecd\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b3b4a7\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6f7366\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#515249\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8c9082\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 222, \\\"image_id\\\": \\\"164922\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/164922_b223cced5d427876_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 222, \\\"image_id\\\": \\\"164922\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/164922_b223cced5d427876_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"164922\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/164922_b223cced5d427876_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 709, \\\"image_id\\\": \\\"164922\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/164922_b223cced5d427876_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 443, \\\"image_id\\\": \\\"164922\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/164922_b223cced5d427876_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18380981/\\\", \\\"year_acquired\\\": \\\"1949\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. George A. Kubler\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"51679001\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/51679001/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (Ireland)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#dbd7ca\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b3aea4\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#948c85\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#76746e\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#53504e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 262, \\\"image_id\\\": \\\"212709\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/212709_2d71d47a1bea9404_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 262, \\\"image_id\\\": \\\"212709\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/212709_2d71d47a1bea9404_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"212709\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/212709_2d71d47a1bea9404_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 839, \\\"image_id\\\": \\\"212709\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/212709_2d71d47a1bea9404_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 524, \\\"image_id\\\": \\\"212709\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/212709_2d71d47a1bea9404_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18382515/\\\", \\\"year_acquired\\\": \\\"1949\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print (Netherlands)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#faebd7\\\", \\\"closest_css3\\\": \\\"#faebd7\\\", \\\"color\\\": \\\"#eae3cf\\\", \\\"closest_crayola\\\": \\\"#efdecd\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a49a88\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#7c7364\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#3a3631\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#5e574c\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"42478\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42478_c436fd56725531b4_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 225}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"42478\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42478_c436fd56725531b4_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 225}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"42478\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42478_c436fd56725531b4_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"42478\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42478_c436fd56725531b4_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 721}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"42478\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42478_c436fd56725531b4_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 450}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"213579\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/213579_3c4fdc33bdd2a26a_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 227}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"213579\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/213579_3c4fdc33bdd2a26a_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 227}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"213579\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/213579_3c4fdc33bdd2a26a_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"213579\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/213579_3c4fdc33bdd2a26a_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 727}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"213579\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/213579_3c4fdc33bdd2a26a_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 454}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18384761/\\\", \\\"year_acquired\\\": \\\"1950\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Leo Wallerstein\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18052753\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052753/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Hans Springinklee\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18065405\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"German, 1490 - 1540\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18065405/\\\", \\\"role_id\\\": \\\"35236565\\\"}, {\\\"person_name\\\": \\\"Albrecht D\\\\u00fcrer\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18049765\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"German, 1471\\\\u20131528\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049765/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Print, St. Sebaldus, 1518\\\", \\\"medium\\\": \\\"woodcut and black ink on paper\\\", \\\"description\\\": \\\"The figure of St. Sebaldus stands in a niche turned toward left. He holds the model of a church in his right hand and a baton in his left. Columns surmounted by globes flank the niche. Four coats of arms above.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18387315/\\\", \\\"year_acquired\\\": \\\"1951\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Raymond Baxter Dowden\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18051703\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"b. 1905\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18051703/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18389929/\\\", \\\"year_acquired\\\": \\\"1952\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"218554\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/218554_0fd9fb5c8f17c335_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 200}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"218554\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/218554_0fd9fb5c8f17c335_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 200}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"218554\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/218554_0fd9fb5c8f17c335_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"218554\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/218554_0fd9fb5c8f17c335_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 641}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"218554\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/218554_0fd9fb5c8f17c335_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 401}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"219415\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219415_807d63d890bd9447_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 265}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"219415\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219415_807d63d890bd9447_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 265}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"219415\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219415_807d63d890bd9447_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"219415\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219415_807d63d890bd9447_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 849}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"219415\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219415_807d63d890bd9447_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 531}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18390677/\\\", \\\"year_acquired\\\": \\\"1952\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Sample (Denmark)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18393837/\\\", \\\"year_acquired\\\": \\\"1953\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"William J. Donald\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18057503\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18057503/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Unknown\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18394525/\\\", \\\"year_acquired\\\": \\\"1953\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Photograph\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#f0e68c\\\", \\\"closest_css3\\\": \\\"#f0e68c\\\", \\\"color\\\": \\\"#f3d869\\\", \\\"closest_crayola\\\": \\\"#f8d568\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#292029\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#d8bfd8\\\", \\\"closest_css3\\\": \\\"#d8bfd8\\\", \\\"color\\\": \\\"#ddc9da\\\", \\\"closest_crayola\\\": \\\"#ebc7df\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#af99a4\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#cd853f\\\", \\\"closest_css3\\\": \\\"#cd853f\\\", \\\"color\\\": \\\"#b19b44\\\", \\\"closest_crayola\\\": \\\"#9c7c38\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 91, \\\"image_id\\\": \\\"72937\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/72937_e96b3dc4f29d5110_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 91, \\\"image_id\\\": \\\"72937\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/72937_e96b3dc4f29d5110_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 291, \\\"image_id\\\": \\\"72937\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/72937_e96b3dc4f29d5110_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 291, \\\"image_id\\\": \\\"72937\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/72937_e96b3dc4f29d5110_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 182, \\\"image_id\\\": \\\"72937\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/72937_e96b3dc4f29d5110_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18395309/\\\", \\\"year_acquired\\\": \\\"1953\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Textile\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#d6d2c6\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#352b27\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#504b43\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#72654a\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a69878\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"128517\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/128517_89b9c8ca8a32cb7a_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 132}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"128517\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/128517_89b9c8ca8a32cb7a_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 132}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"128517\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/128517_89b9c8ca8a32cb7a_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"128517\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/128517_89b9c8ca8a32cb7a_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 423}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"128517\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/128517_89b9c8ca8a32cb7a_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 264}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18395879/\\\", \\\"year_acquired\\\": \\\"1953\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Marcus and Co., New York\\\", \\\"role_name\\\": \\\"Maker\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236685/\\\", \\\"person_id\\\": \\\"18052949\\\", \\\"role_display_name\\\": \\\"Made by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052949/\\\", \\\"role_id\\\": \\\"35236685\\\"}, {\\\"person_name\\\": \\\"Unknown\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049335\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049335/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Watch Fob (USA), 1880\\\\u201390\\\", \\\"medium\\\": \\\"leather, gold, stone\\\", \\\"description\\\": \\\"The gold-and-matrix pendant is in the form of a modelled demon, contorted against engraved skeletons; in box of Marcus and Co., New York.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#7e766e\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#5f7383\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#152535\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#92a7b4\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#354b5e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 162, \\\"image_id\\\": \\\"73011\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73011_5e347e5b44fb1d61_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 162, \\\"image_id\\\": \\\"73011\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73011_5e347e5b44fb1d61_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"73011\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73011_5e347e5b44fb1d61_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 519, \\\"image_id\\\": \\\"73011\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73011_5e347e5b44fb1d61_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 324, \\\"image_id\\\": \\\"73011\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73011_5e347e5b44fb1d61_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 170, \\\"image_id\\\": \\\"224497\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224497_f4429ef9d8fc47ad_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 170, \\\"image_id\\\": \\\"224497\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224497_f4429ef9d8fc47ad_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"224497\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224497_f4429ef9d8fc47ad_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 544, \\\"image_id\\\": \\\"224497\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224497_f4429ef9d8fc47ad_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 340, \\\"image_id\\\": \\\"224497\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/224497_f4429ef9d8fc47ad_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18397583/\\\", \\\"year_acquired\\\": \\\"1953\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Simple Weave: Stripes, Bands,\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 230, \\\"image_id\\\": \\\"208184\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/208184_43f25f896853ccdf_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 230, \\\"image_id\\\": \\\"208184\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/208184_43f25f896853ccdf_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"208184\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/208184_43f25f896853ccdf_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 737, \\\"image_id\\\": \\\"208184\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/208184_43f25f896853ccdf_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 461, \\\"image_id\\\": \\\"208184\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/208184_43f25f896853ccdf_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18400387/\\\", \\\"year_acquired\\\": \\\"1954\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Bookpaper\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 204, \\\"image_id\\\": \\\"207993\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/207993_877e798c310bf848_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 204, \\\"image_id\\\": \\\"207993\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/207993_877e798c310bf848_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"207993\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/207993_877e798c310bf848_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 653, \\\"image_id\\\": \\\"207993\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/207993_877e798c310bf848_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 408, \\\"image_id\\\": \\\"207993\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/207993_877e798c310bf848_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18400457/\\\", \\\"year_acquired\\\": \\\"1954\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Bookpaper\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"209049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/209049_4c240b4e83384155_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 248}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"209049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/209049_4c240b4e83384155_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 248}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"209049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/209049_4c240b4e83384155_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"209049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/209049_4c240b4e83384155_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 793}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"209049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/209049_4c240b4e83384155_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 495}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18401169/\\\", \\\"year_acquired\\\": \\\"1954\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Dr. Agnes Ge\\\\u00ffer\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18059381\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18059381/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"F\\\\u00f6reningen Handarbetets V\\\\u00e4nner\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18064977\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"founded Stockholm, Sweden, 1870\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18064977/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Upholstery Fabric (Sweden)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#87806d\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#aca790\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#000000\\\", \\\"closest_css3\\\": \\\"#000000\\\", \\\"color\\\": \\\"#2b231a\\\", \\\"closest_crayola\\\": \\\"#000000\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#514a3b\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"147713\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147713_8ea6b9c62080abf0_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 238}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"147713\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147713_8ea6b9c62080abf0_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 238}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"147713\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147713_8ea6b9c62080abf0_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"147713\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147713_8ea6b9c62080abf0_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 760}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"147713\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147713_8ea6b9c62080abf0_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 475}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18402967/\\\", \\\"year_acquired\\\": \\\"1955\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Pieter Schenk\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18536065\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"German, 1660-1711\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18536065/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Print, Mme la Marquise de Belfons, ca. 1700\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#948874\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#7a6b57\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#3c352b\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#c7c5af\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#b09c60\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 170, \\\"image_id\\\": \\\"180024\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180024_f62b7ea2746f88d8_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 170, \\\"image_id\\\": \\\"180024\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180024_f62b7ea2746f88d8_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"180024\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180024_f62b7ea2746f88d8_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 544, \\\"image_id\\\": \\\"180024\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180024_f62b7ea2746f88d8_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 340, \\\"image_id\\\": \\\"180024\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180024_f62b7ea2746f88d8_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 164, \\\"image_id\\\": \\\"73232\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73232_528aab596e9d69a7_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 164, \\\"image_id\\\": \\\"73232\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73232_528aab596e9d69a7_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"73232\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73232_528aab596e9d69a7_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 524, \\\"image_id\\\": \\\"73232\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73232_528aab596e9d69a7_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 328, \\\"image_id\\\": \\\"73232\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/73232_528aab596e9d69a7_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18404157/\\\", \\\"year_acquired\\\": \\\"1955\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Textile\\\", \\\"medium\\\": \\\"complementary weft\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#d8d2be\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#63583b\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a49b8b\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#38311a\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 299, \\\"image_id\\\": \\\"22637\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/22637_1e882083c7971b2d_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 299, \\\"image_id\\\": \\\"22637\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/22637_1e882083c7971b2d_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"22637\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/22637_1e882083c7971b2d_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 957, \\\"image_id\\\": \\\"22637\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/22637_1e882083c7971b2d_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 598, \\\"image_id\\\": \\\"22637\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/22637_1e882083c7971b2d_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18404533/\\\", \\\"year_acquired\\\": \\\"1955\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"The American Academy of Arts & Letters\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18047665\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047665/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Elihu Vedder\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18043135\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"American, 1836 \\\\u2013 1923\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18043135/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Drawing, Portrait of a Costumed Figure, ca. 1885\\\", \\\"medium\\\": \\\"black crayon, white chalk, on buff paper\\\", \\\"description\\\": \\\"Bust-length figure of a girl, her head turned sharply to the right, bowed forward, supported by her left hand. A draped headdress covers her head. Inscribed and signed, lower left: \\\\\\\"Study / by Elihu Vedder.\\\\\\\"\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#808a80\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#656f65\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#db7093\\\", \\\"closest_css3\\\": \\\"#d87093\\\", \\\"color\\\": \\\"#d781a4\\\", \\\"closest_crayola\\\": \\\"#d98695\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#5c5953\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#d8bfd8\\\", \\\"closest_css3\\\": \\\"#d8bfd8\\\", \\\"color\\\": \\\"#d4c4c5\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"180808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180808_9b2188b19773335d_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 238}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"180808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180808_9b2188b19773335d_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 238}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"180808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180808_9b2188b19773335d_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"180808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180808_9b2188b19773335d_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 762}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"180808\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180808_9b2188b19773335d_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 476}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18406093/\\\", \\\"year_acquired\\\": \\\"1955\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Dexter J. Purinton\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18058417\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058417/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Playing Card\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#4682b4\\\", \\\"closest_css3\\\": \\\"#4682b4\\\", \\\"color\\\": \\\"#3c6990\\\", \\\"closest_crayola\\\": \\\"#2e5894\\\"}, {\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#c7d1d3\\\", \\\"closest_crayola\\\": \\\"#c5d0e6\\\"}, {\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#638294\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#dcdcdc\\\", \\\"closest_css3\\\": \\\"#dcdcdc\\\", \\\"color\\\": \\\"#e7e4d0\\\", \\\"closest_crayola\\\": \\\"#efdecd\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#c09ea4\\\", \\\"closest_crayola\\\": \\\"#d98695\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"176640\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/176640_ec76391642ee4e22_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 243}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"176640\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/176640_ec76391642ee4e22_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 243}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"176640\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/176640_ec76391642ee4e22_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"176640\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/176640_ec76391642ee4e22_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 779}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"176640\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/176640_ec76391642ee4e22_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 487}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18406373/\\\", \\\"year_acquired\\\": \\\"1955\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Dexter J. Purinton\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18058417\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058417/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Playing Card\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#84827b\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#58564e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 193, \\\"image_id\\\": \\\"178422\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178422_c92ea338ecfb26dc_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 193, \\\"image_id\\\": \\\"178422\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178422_c92ea338ecfb26dc_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"178422\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178422_c92ea338ecfb26dc_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 619, \\\"image_id\\\": \\\"178422\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178422_c92ea338ecfb26dc_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 387, \\\"image_id\\\": \\\"178422\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178422_c92ea338ecfb26dc_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18409845/\\\", \\\"year_acquired\\\": \\\"1956\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mary M. Kenway\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049983\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049983/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Playing Card\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18411711/\\\", \\\"year_acquired\\\": \\\"1957\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print, Views-German Cities, 1899\\\\u20131900\\\", \\\"medium\\\": null, \\\"description\\\": \\\"Mannfeld\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18411845/\\\", \\\"year_acquired\\\": \\\"1957\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Robert I. Aitken\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18053027\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18053027/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18416893/\\\", \\\"year_acquired\\\": \\\"1957\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Estate of Mrs. Lathrop Colgate Harper\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049995\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049995/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Game\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 130, \\\"image_id\\\": \\\"220364\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/220364_9e3e0dd42ffb198a_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 130, \\\"image_id\\\": \\\"220364\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/220364_9e3e0dd42ffb198a_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"220364\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/220364_9e3e0dd42ffb198a_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 415, \\\"image_id\\\": \\\"220364\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/220364_9e3e0dd42ffb198a_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 259, \\\"image_id\\\": \\\"220364\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/220364_9e3e0dd42ffb198a_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18419963/\\\", \\\"year_acquired\\\": \\\"1957\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Anonymous\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"68739079\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/68739079/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8e847c\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6e6661\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"121791\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/121791_4db455f05ea22557_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 175}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"121791\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/121791_4db455f05ea22557_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 175}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"121791\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/121791_4db455f05ea22557_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"121791\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/121791_4db455f05ea22557_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 559}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"121791\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/121791_4db455f05ea22557_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 349}}, {\\\"n\\\": {\\\"height\\\": 310, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 310, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 854, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 882}, \\\"z\\\": {\\\"height\\\": 620, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18420007/\\\", \\\"year_acquired\\\": \\\"1957\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Charles Grosjean\\\", \\\"role_name\\\": \\\"Patentor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236627/\\\", \\\"person_id\\\": \\\"18059113\\\", \\\"role_display_name\\\": \\\"Patented by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18059113/\\\", \\\"role_id\\\": \\\"35236627\\\"}, {\\\"person_name\\\": \\\"Tiffany and Co., New York\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18052955\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"Corona, New York, USA\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052955/\\\", \\\"role_id\\\": \\\"35236657\\\"}, {\\\"person_name\\\": \\\"Anonymous\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"68739079\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/68739079/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Chrysanthemum Crumb Scoop, 1880\\\\u201391\\\", \\\"medium\\\": \\\"silver\\\", \\\"description\\\": \\\"Flat scoop with straight edge on one side, raised shaped rim on the other. Relief-decorated handle with design in chrysanthemum pattern, with engraved B in reserve.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#b5986e\\\", \\\"closest_crayola\\\": \\\"#cd9575\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#9c764f\\\", \\\"closest_crayola\\\": \\\"#a5694f\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#7c593a\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#dcdcdc\\\", \\\"closest_css3\\\": \\\"#dcdcdc\\\", \\\"color\\\": \\\"#e7e4d0\\\", \\\"closest_crayola\\\": \\\"#efdecd\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"44509\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44509_9ff18ec4f2112ce1_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 219}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"44509\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44509_9ff18ec4f2112ce1_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 219}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"44509\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44509_9ff18ec4f2112ce1_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"44509\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44509_9ff18ec4f2112ce1_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 702}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"44509\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44509_9ff18ec4f2112ce1_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 439}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18422187/\\\", \\\"year_acquired\\\": \\\"1958\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Claude Vignon\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18055431\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"French, 1593 \\\\u2013 1670\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18055431/\\\", \\\"role_id\\\": \\\"35236565\\\"}, {\\\"person_name\\\": \\\"Mr. Hugh Cassel\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18535607\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18535607/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing, Standing Figure in Oriental Dress, ca. 1650\\\", \\\"medium\\\": \\\"graphite, red chalk on off-white laid paper\\\", \\\"description\\\": \\\"A man, seen standing frontally, dressed in oriental costume, rests his left hand on a baton around which a snake is coiled. In the background, four figures are grouped around an altar. Undecipherable inscriptions in ink, lower left, and signature of the artist in ink, lower right.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#b9b8ad\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}, {\\\"closest_css4\\\": \\\"#800000\\\", \\\"closest_css3\\\": \\\"#800000\\\", \\\"color\\\": \\\"#51010c\\\", \\\"closest_crayola\\\": \\\"#000000\\\"}, {\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#67302b\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#7d5340\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#452f2b\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 133, \\\"image_id\\\": \\\"149208\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149208_74a4713f1b7573ee_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 133, \\\"image_id\\\": \\\"149208\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149208_74a4713f1b7573ee_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"149208\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149208_74a4713f1b7573ee_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 425, \\\"image_id\\\": \\\"149208\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149208_74a4713f1b7573ee_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 265, \\\"image_id\\\": \\\"149208\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149208_74a4713f1b7573ee_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18422327/\\\", \\\"year_acquired\\\": \\\"1958\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Bookpaper\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18424331/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Christmas Cards, Sixteen greeting cards for the 1957 Christmas season\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18425909/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Milton I. D. Einstein\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18050517\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050517/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (Netherlands)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#988f80\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#5d493b\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#fffacd\\\", \\\"closest_css3\\\": \\\"#fffacd\\\", \\\"color\\\": \\\"#fefdc9\\\", \\\"closest_crayola\\\": \\\"#eceabe\\\"}, {\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#cab18e\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}, {\\\"closest_css4\\\": \\\"#ffdead\\\", \\\"closest_css3\\\": \\\"#ffdead\\\", \\\"color\\\": \\\"#f3d8a4\\\", \\\"closest_crayola\\\": \\\"#edd19c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 277, \\\"image_id\\\": \\\"145484\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/145484_93043b3374a7209d_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 277, \\\"image_id\\\": \\\"145484\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/145484_93043b3374a7209d_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"145484\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/145484_93043b3374a7209d_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 885, \\\"image_id\\\": \\\"145484\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/145484_93043b3374a7209d_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 553, \\\"image_id\\\": \\\"145484\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/145484_93043b3374a7209d_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18426833/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Julia Hutchins Wolcott\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18060915\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18060915/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Button\\\", \\\"medium\\\": null, \\\"description\\\": \\\"On card 62\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18427257/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Allyn Cox\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18536881\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18536881/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18427289/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Allyn Cox\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18536881\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18536881/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18427477/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Allyn Cox\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18536881\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18536881/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#dcdcdc\\\", \\\"closest_css3\\\": \\\"#dcdcdc\\\", \\\"color\\\": \\\"#dcddcf\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#a52a2a\\\", \\\"closest_css3\\\": \\\"#a52a2a\\\", \\\"color\\\": \\\"#b73036\\\", \\\"closest_crayola\\\": \\\"#9c2542\\\"}, {\\\"closest_css4\\\": \\\"#cd5c5c\\\", \\\"closest_css3\\\": \\\"#cd5c5c\\\", \\\"color\\\": \\\"#b15b5d\\\", \\\"closest_crayola\\\": \\\"#bc5d58\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"178712\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178712_a4081795bbb5a1f1_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 232}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"178712\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178712_a4081795bbb5a1f1_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 232}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"178712\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178712_a4081795bbb5a1f1_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"178712\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178712_a4081795bbb5a1f1_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 742}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"178712\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/178712_a4081795bbb5a1f1_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 464}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18428079/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Playing Card\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18428455/\\\", \\\"year_acquired\\\": \\\"1959\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Jacques Gabriel\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18536175\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"1667\\\\u20131742\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18536175/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Print, Panelling of the Assembly Room, ca. 1727\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18433363/\\\", \\\"year_acquired\\\": \\\"1960\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Blueprint (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18437301/\\\", \\\"year_acquired\\\": \\\"1961\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Hamill & Barker\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056543\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056543/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Photograph (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"219187\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219187_a3c2d6ca6b4d3adf_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 317}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"219187\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219187_a3c2d6ca6b4d3adf_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 317}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"219187\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219187_a3c2d6ca6b4d3adf_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"219187\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219187_a3c2d6ca6b4d3adf_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1015}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"219187\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/219187_a3c2d6ca6b4d3adf_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 634}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18437453/\\\", \\\"year_acquired\\\": \\\"1961\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. John Rolph\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18053083\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18053083/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Textile\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18438837/\\\", \\\"year_acquired\\\": \\\"1961\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Paul Magriel\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18057625\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18057625/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Sketchbook (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a59a7b\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#897b5b\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#686658\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"180227\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180227_46f6f2116738c655_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 252}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"180227\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180227_46f6f2116738c655_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 252}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"180227\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180227_46f6f2116738c655_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"180227\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180227_46f6f2116738c655_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 807}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"180227\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/180227_46f6f2116738c655_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 504}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"74272\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74272_103cf386cc0363f4_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 234}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"74272\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74272_103cf386cc0363f4_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 234}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"74272\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74272_103cf386cc0363f4_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"74272\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74272_103cf386cc0363f4_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 749}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"74272\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74272_103cf386cc0363f4_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 468}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18440633/\\\", \\\"year_acquired\\\": \\\"1961\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Sample (Japan)\\\", \\\"medium\\\": \\\"embroidered and printed\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#74323c\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#d5ceb1\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#23272f\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#3c464e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#b39c89\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 199, \\\"image_id\\\": \\\"112768\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112768_17251b23dec3416e_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 199, \\\"image_id\\\": \\\"112768\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112768_17251b23dec3416e_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"112768\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112768_17251b23dec3416e_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 636, \\\"image_id\\\": \\\"112768\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112768_17251b23dec3416e_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 397, \\\"image_id\\\": \\\"112768\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112768_17251b23dec3416e_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 209, \\\"image_id\\\": \\\"74371\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74371_db50260733f0bf87_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 209, \\\"image_id\\\": \\\"74371\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74371_db50260733f0bf87_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"74371\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74371_db50260733f0bf87_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 669, \\\"image_id\\\": \\\"74371\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74371_db50260733f0bf87_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 418, \\\"image_id\\\": \\\"74371\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74371_db50260733f0bf87_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18444125/\\\", \\\"year_acquired\\\": \\\"1962\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Alan L. Wolfe\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18052601\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052601/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Textile (India)\\\", \\\"medium\\\": \\\"embroidery, linen type\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#ccc9aa\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#898578\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 60, \\\"image_id\\\": \\\"129624\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129624_29a4d2aebd3041a4_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 60, \\\"image_id\\\": \\\"129624\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129624_29a4d2aebd3041a4_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 192, \\\"image_id\\\": \\\"129624\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129624_29a4d2aebd3041a4_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 192, \\\"image_id\\\": \\\"129624\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129624_29a4d2aebd3041a4_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 120, \\\"image_id\\\": \\\"129624\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/129624_29a4d2aebd3041a4_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 59, \\\"image_id\\\": \\\"31892\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/31892_a03cf8de2ec09022_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 59, \\\"image_id\\\": \\\"31892\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/31892_a03cf8de2ec09022_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 187, \\\"image_id\\\": \\\"31892\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/31892_a03cf8de2ec09022_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 187, \\\"image_id\\\": \\\"31892\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/31892_a03cf8de2ec09022_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 117, \\\"image_id\\\": \\\"31892\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/31892_a03cf8de2ec09022_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18444333/\\\", \\\"year_acquired\\\": \\\"1962\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Richard Cranch Greenleaf\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18049377\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049377/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Border (France), 1700\\\\u20131750\\\", \\\"medium\\\": \\\"linen\\\", \\\"description\\\": \\\"Border of Point d\\'Argentan with medallions containing alternating motifs of a man in Chinese dress, a bird, floral spray and an urn. Modes: fond de neige, bride boucl\\\\u00e9e, bride tortill\\\\u00e9e, r\\\\u00e9seau mouch\\\\u00e9, venises, gaze quadrill\\\\u00e9e, St. Esprit avec rangs claire, point mignon.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#ac9f71\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#7a754e\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#514f39\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"87733\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/87733_6e16f95d1f60b124_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 222}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"87733\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/87733_6e16f95d1f60b124_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 222}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"87733\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/87733_6e16f95d1f60b124_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"87733\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/87733_6e16f95d1f60b124_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 710}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"87733\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/87733_6e16f95d1f60b124_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 443}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"34867\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/34867_024a18b671d1276b_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 225}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"34867\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/34867_024a18b671d1276b_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 225}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"34867\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/34867_024a18b671d1276b_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"34867\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/34867_024a18b671d1276b_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 719}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"34867\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/34867_024a18b671d1276b_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 449}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18445107/\\\", \\\"year_acquired\\\": \\\"1962\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Richard Cranch Greenleaf\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18049377\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049377/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Skirt Panel (France), mid-18th century\\\", \\\"medium\\\": \\\"silk, metallic thread\\\", \\\"description\\\": \\\"Skirt panel of cream-colored taffeta embroidered in polychrome silks and gold in a fantastic pattern of a large flower spray, and a man with a long pole reaching to a basket.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#dedbc7\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#867c72\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4b3b3f\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#7d4247\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#b0a48f\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 275, \\\"image_id\\\": \\\"106012\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/106012_8efd29e2935ef972_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 275, \\\"image_id\\\": \\\"106012\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/106012_8efd29e2935ef972_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"106012\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/106012_8efd29e2935ef972_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 881, \\\"image_id\\\": \\\"106012\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/106012_8efd29e2935ef972_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 551, \\\"image_id\\\": \\\"106012\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/106012_8efd29e2935ef972_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 244, \\\"image_id\\\": \\\"74616\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74616_0f6173a9a5d40789_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 244, \\\"image_id\\\": \\\"74616\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74616_0f6173a9a5d40789_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"74616\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74616_0f6173a9a5d40789_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 780, \\\"image_id\\\": \\\"74616\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74616_0f6173a9a5d40789_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 488, \\\"image_id\\\": \\\"74616\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/74616_0f6173a9a5d40789_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18446087/\\\", \\\"year_acquired\\\": \\\"1962\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Textile (France), 18th century\\\", \\\"medium\\\": \\\"cotton\\\", \\\"description\\\": \\\"Cream white cotton, block printed in large scale naturalistic flower design in all-over clusters; iris, lily, amaryllis, daffodil and pineapple. Shades of red, dark purple, brown, blue; remains of yellow, now faded, show in sections of leaves, indicating combining of yellow over blue for green. A background printing of fine small scale foliage, in shadow effect, light brown.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18452621/\\\", \\\"year_acquired\\\": \\\"1965\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18452715/\\\", \\\"year_acquired\\\": \\\"1965\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Edward Kallop\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18061273\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18061273/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Cut Paper (Mexico)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18455549/\\\", \\\"year_acquired\\\": \\\"1967\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Estate of Florence Choate\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049801\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049801/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18465273/\\\", \\\"year_acquired\\\": \\\"1968\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18466539/\\\", \\\"year_acquired\\\": \\\"1968\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Slide, Water system-Ieyasu\\\", \\\"medium\\\": \\\"glass slide\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b0ad9e\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#727668\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#434642\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"170985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170985_ee7d12509048d733_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 275}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"170985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170985_ee7d12509048d733_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 275}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"170985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170985_ee7d12509048d733_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"170985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170985_ee7d12509048d733_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 880}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"170985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170985_ee7d12509048d733_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 550}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18471305/\\\", \\\"year_acquired\\\": \\\"1969\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4b5664\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#7a8089\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 313, \\\"image_id\\\": \\\"82889\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82889_5aa6cf5ec8bd058b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 313, \\\"image_id\\\": \\\"82889\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82889_5aa6cf5ec8bd058b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"82889\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82889_5aa6cf5ec8bd058b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1000, \\\"image_id\\\": \\\"82889\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82889_5aa6cf5ec8bd058b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 625, \\\"image_id\\\": \\\"82889\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82889_5aa6cf5ec8bd058b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18473203/\\\", \\\"year_acquired\\\": \\\"1971\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cranbrook Academy of Art\\\", \\\"role_name\\\": \\\"Student at\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236793/\\\", \\\"person_id\\\": \\\"18041809\\\", \\\"role_display_name\\\": \\\"Student at\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041809/\\\", \\\"role_id\\\": \\\"35236793\\\"}, {\\\"person_name\\\": \\\"Mary Walker Phillips\\\", \\\"role_name\\\": \\\"Weaver\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236745/\\\", \\\"person_id\\\": \\\"18045647\\\", \\\"role_display_name\\\": \\\"Woven by\\\", \\\"person_date\\\": \\\"American, 1923\\\\u20132007\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045647/\\\", \\\"role_id\\\": \\\"35236745\\\"}, {\\\"person_name\\\": \\\"Mary Walker Phillips\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18045647\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"American, 1923\\\\u20132007\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045647/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Sample (USA), 1960\\\\u201363\\\", \\\"medium\\\": \\\"rovana\\\\u2122, asbestos\\\", \\\"description\\\": \\\"Warp: Blue and black rovana; Weft: grey asbestos, 2/2 twill with changes in warp colors for stripes.\\\", \\\"decade\\\": \\\"1960\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18481319/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#cd853f\\\", \\\"closest_css3\\\": \\\"#cd853f\\\", \\\"color\\\": \\\"#9d8e49\\\", \\\"closest_crayola\\\": \\\"#9c7c38\\\"}, {\\\"closest_css4\\\": \\\"#000000\\\", \\\"closest_css3\\\": \\\"#000000\\\", \\\"color\\\": \\\"#332118\\\", \\\"closest_crayola\\\": \\\"#000000\\\"}, {\\\"closest_css4\\\": \\\"#deb887\\\", \\\"closest_css3\\\": \\\"#deb887\\\", \\\"color\\\": \\\"#dcd175\\\", \\\"closest_crayola\\\": \\\"#f8d568\\\"}, {\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#5d331c\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#635b2c\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"44963\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44963_9add955da2e0589b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 127}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"44963\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44963_9add955da2e0589b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 127}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"44963\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44963_9add955da2e0589b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"44963\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44963_9add955da2e0589b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 405}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"44963\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44963_9add955da2e0589b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 253}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18481531/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Border (USA), 1870\\\\u201390\\\", \\\"medium\\\": \\\"machine-printed on embossed paper\\\", \\\"description\\\": \\\"Aesthetic style. Wide central band of vining floral motif. Narrow band of scalloped edge along top. Band of wave scroll along bottom edge. Printed in shades of red and green on embossed mtallic gold ground. The ground is embossed to simulate a textile weave.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"193183\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/193183_2f99ced8803a1f9c_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 258}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"193183\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/193183_2f99ced8803a1f9c_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 258}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"193183\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/193183_2f99ced8803a1f9c_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"193183\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/193183_2f99ced8803a1f9c_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 826}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"193183\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/193183_2f99ced8803a1f9c_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 516}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18482723/\\\", \\\"year_acquired\\\": \\\"1974\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Fragment (Japan)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#f5f5dc\\\", \\\"closest_css3\\\": \\\"#f5f5dc\\\", \\\"color\\\": \\\"#efedd7\\\", \\\"closest_crayola\\\": \\\"#efdecd\\\"}, {\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#c2bea3\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#585246\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#787362\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#9a967f\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 218, \\\"image_id\\\": \\\"90752\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/90752_f84fbfc4e55fca33_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 218, \\\"image_id\\\": \\\"90752\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/90752_f84fbfc4e55fca33_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"90752\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/90752_f84fbfc4e55fca33_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 699, \\\"image_id\\\": \\\"90752\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/90752_f84fbfc4e55fca33_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 437, \\\"image_id\\\": \\\"90752\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/90752_f84fbfc4e55fca33_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 221, \\\"image_id\\\": \\\"26029\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/26029_06c6d5d30be4b286_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 221, \\\"image_id\\\": \\\"26029\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/26029_06c6d5d30be4b286_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"26029\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/26029_06c6d5d30be4b286_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 707, \\\"image_id\\\": \\\"26029\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/26029_06c6d5d30be4b286_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 442, \\\"image_id\\\": \\\"26029\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/26029_06c6d5d30be4b286_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18489665/\\\", \\\"year_acquired\\\": \\\"1976\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Helen Snyder\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18061335\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18061335/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Unknown\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"68737245\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"Japanese\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/68737245/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Katagami, Water Pattern, late 19th\\\\u2013early 20th century\\\", \\\"medium\\\": \\\"cut mulberry paper treated with persimmon tannin and silk thread\\\", \\\"description\\\": \\\"Fabric pattern based on a bird\\'s eye view of moving water depicting concentric loops in black and white\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#483d8b\\\", \\\"closest_css3\\\": \\\"#483d8b\\\", \\\"color\\\": \\\"#3c5573\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#7f704a\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#6495ed\\\", \\\"closest_css3\\\": \\\"#6495ed\\\", \\\"color\\\": \\\"#769fc9\\\", \\\"closest_crayola\\\": \\\"#6699cc\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#5c6263\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#57779c\\\", \\\"closest_crayola\\\": \\\"#7366bd\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"93152\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93152_fc0916ee2be4cfb1_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 240}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"93152\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93152_fc0916ee2be4cfb1_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 240}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"93152\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93152_fc0916ee2be4cfb1_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"93152\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93152_fc0916ee2be4cfb1_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 767}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"93152\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93152_fc0916ee2be4cfb1_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 479}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"93153\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93153_31206b89b9d68d2b_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 207}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"93153\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93153_31206b89b9d68d2b_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 207}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"93153\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93153_31206b89b9d68d2b_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"93153\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93153_31206b89b9d68d2b_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 661}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"93153\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93153_31206b89b9d68d2b_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 413}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18492373/\\\", \\\"year_acquired\\\": \\\"1977\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Clifford Murvine\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539129\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539129/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Kate Milkin\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047849\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047849/\\\", \\\"role_id\\\": \\\"35352245\\\"}], \\\"title\\\": \\\"Sidewall, Michaelmas Daisy, 1972\\\", \\\"medium\\\": \\\"block-printed on paper\\\", \\\"description\\\": \\\"Wallpaper of 22 designs; 56 partial rolls. Morris and Co. designs\\\", \\\"decade\\\": \\\"1970\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#74685e\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#938679\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#534944\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"101662\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/101662_397b1d6fea4b72d8_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"101662\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/101662_397b1d6fea4b72d8_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"101662\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/101662_397b1d6fea4b72d8_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 820, \\\"image_id\\\": \\\"101662\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/101662_397b1d6fea4b72d8_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 512, \\\"image_id\\\": \\\"101662\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/101662_397b1d6fea4b72d8_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18494313/\\\", \\\"year_acquired\\\": \\\"1978\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Carol B. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539175\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539175/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Stephen W. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539171\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539171/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Matchsafe\\\", \\\"medium\\\": \\\"silver\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#84734c\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#6c593f\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a9936e\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#aca49d\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"97455\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/97455_5b6c047f415d3bf0_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"97455\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/97455_5b6c047f415d3bf0_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"97455\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/97455_5b6c047f415d3bf0_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 819, \\\"image_id\\\": \\\"97455\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/97455_5b6c047f415d3bf0_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 512, \\\"image_id\\\": \\\"97455\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/97455_5b6c047f415d3bf0_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"8229\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8229_6e2a82b94bcff528_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 255}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"8229\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8229_6e2a82b94bcff528_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 255}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"8229\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8229_6e2a82b94bcff528_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"8229\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8229_6e2a82b94bcff528_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 816}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"8229\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8229_6e2a82b94bcff528_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 510}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18495901/\\\", \\\"year_acquired\\\": \\\"1978\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Carol B. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539175\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539175/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Stephen W. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539171\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539171/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"King Edward VII Matchsafe, ca. 1901\\\", \\\"medium\\\": \\\"brass\\\", \\\"description\\\": \\\"Rectangular, in the shape of a book, featuring profile bust of King Edward VII in central, oval, and recessed reserve, surrounded by rose, thistle, clover motifs at all four corners, curved right side resembles tooled leather book spine, reverse features inscription \\\\\\\"Long Live The King\\\\\\\" and central monogram \\\\\\\"ER\\\\\\\", ground decoration of rose, thistle, clover and leaf motifs. Both top and bottom flip open, hinges on left, straight side. Striker recessed in left, straight side.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 318, \\\"image_id\\\": \\\"182823\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182823_becba4014ed7122f_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 318, \\\"image_id\\\": \\\"182823\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182823_becba4014ed7122f_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"182823\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182823_becba4014ed7122f_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1017, \\\"image_id\\\": \\\"182823\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182823_becba4014ed7122f_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 636, \\\"image_id\\\": \\\"182823\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182823_becba4014ed7122f_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18498663/\\\", \\\"year_acquired\\\": \\\"1979\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Clinton Wilder\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"52272093\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/52272093/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Candlestick And Socket, late 18th\\\\u2013early 19th century\\\", \\\"medium\\\": \\\"wood, turned\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#4a3b28\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#9b8953\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#262821\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#bab58d\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#454934\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"95894\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95894_18f673042a4b56fa_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"95894\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95894_18f673042a4b56fa_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"95894\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95894_18f673042a4b56fa_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 662, \\\"image_id\\\": \\\"95894\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95894_18f673042a4b56fa_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 413, \\\"image_id\\\": \\\"95894\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95894_18f673042a4b56fa_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"95093\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95093_01b38017097fe23e_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"95093\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95093_01b38017097fe23e_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"95093\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95093_01b38017097fe23e_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 661, \\\"image_id\\\": \\\"95093\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95093_01b38017097fe23e_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 413, \\\"image_id\\\": \\\"95093\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/95093_01b38017097fe23e_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 169, \\\"image_id\\\": \\\"8321\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8321_8c17a7364126ce46_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 169, \\\"image_id\\\": \\\"8321\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8321_8c17a7364126ce46_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"8321\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8321_8c17a7364126ce46_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 542, \\\"image_id\\\": \\\"8321\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8321_8c17a7364126ce46_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 339, \\\"image_id\\\": \\\"8321\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/8321_8c17a7364126ce46_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18499743/\\\", \\\"year_acquired\\\": \\\"1979\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Victorian Collectibles\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18064161\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18064161/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Maxwell & Co., S.A.\\\", \\\"role_name\\\": \\\"Distributor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236659/\\\", \\\"person_id\\\": \\\"18046361\\\", \\\"role_display_name\\\": \\\"Distributed by\\\", \\\"person_date\\\": \\\"Chicago, Illinois, USA\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046361/\\\", \\\"role_id\\\": \\\"35236659\\\"}], \\\"title\\\": \\\"Frieze (USA), 1890\\\\u20131910\\\", \\\"medium\\\": \\\"machine-printed\\\", \\\"description\\\": \\\"Series of vertical rectangles, alternating between large and small, topped with a large, white, rose. Stylized leafs outline the rectangles. The rectangles are framed by intertwining geometric motifs. A series of flowers and leafs run in a striaght line across the bottom. The background has brown, horizontal straitions. Printed in brown, white, and shades of green.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18500693/\\\", \\\"year_acquired\\\": \\\"1979\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Victorian Collectibles\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18064161\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18064161/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Frieze (USA), 1905\\\\u201315\\\", \\\"medium\\\": \\\"machine-printed on paper, textured ground\\\", \\\"description\\\": \\\"Large wave scrolls with large leaves (acanthus), beading and striping. Bottom band of wave pattern and beading. Top has band of stylized dentil pattern with dots. Part of background willed with light green. Ground embossed with floral vining and shades dark blue-green to light green (bottom to top). Printed in metallic gold, metallic silver and light green.\\\", \\\"decade\\\": \\\"1900\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18505147/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Erte\\\", \\\"role_name\\\": \\\"After\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236677/\\\", \\\"person_id\\\": \\\"18043487\\\", \\\"role_display_name\\\": \\\"After\\\", \\\"person_date\\\": \\\"Russian, 1892\\\\u20131990, active Paris\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18043487/\\\", \\\"role_id\\\": \\\"35236677\\\"}], \\\"title\\\": \\\"Poster, Sevenarts, 1978\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": \\\"1970\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18506707/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Ephemera\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18510271/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Menu\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#7c7266\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#5d5c57\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a18c77\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"169475\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/169475_1f2d5c88df7760fe_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 247}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"169475\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/169475_1f2d5c88df7760fe_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 247}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"169475\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/169475_1f2d5c88df7760fe_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"169475\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/169475_1f2d5c88df7760fe_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 791}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"169475\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/169475_1f2d5c88df7760fe_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 494}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18511779/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#485152\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#918880\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#6b8675\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#bba79b\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"148588\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148588_d8c81c7fd3986ea4_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 211}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"148588\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148588_d8c81c7fd3986ea4_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 211}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"148588\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148588_d8c81c7fd3986ea4_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"148588\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148588_d8c81c7fd3986ea4_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 675}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"148588\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148588_d8c81c7fd3986ea4_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 422}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18513269/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#dad2bb\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a5a290\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#7c8073\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#615d5a\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#bfa59d\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"156561\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156561_9a6dbca519a6873f_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 253}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"156561\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156561_9a6dbca519a6873f_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 253}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"156561\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156561_9a6dbca519a6873f_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"156561\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156561_9a6dbca519a6873f_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 809}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"156561\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156561_9a6dbca519a6873f_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 506}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18517315/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a19b8e\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#73595d\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#575a5c\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#a46d74\\\", \\\"closest_crayola\\\": \\\"#a57164\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"165485\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/165485_4142dca7ed89961c_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 244}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"165485\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/165485_4142dca7ed89961c_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 244}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"165485\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/165485_4142dca7ed89961c_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"165485\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/165485_4142dca7ed89961c_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 781}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"165485\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/165485_4142dca7ed89961c_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 488}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18518841/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#868373\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4d5452\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 249, \\\"image_id\\\": \\\"148143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148143_bc9f74006b7ab88b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 249, \\\"image_id\\\": \\\"148143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148143_bc9f74006b7ab88b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"148143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148143_bc9f74006b7ab88b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 797, \\\"image_id\\\": \\\"148143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148143_bc9f74006b7ab88b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 498, \\\"image_id\\\": \\\"148143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/148143_bc9f74006b7ab88b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18519837/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#b29d6d\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#84805b\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#646050\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#2f281d\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"157665\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157665_057e566113eb69a8_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 227}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"157665\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157665_057e566113eb69a8_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 227}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"157665\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157665_057e566113eb69a8_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"157665\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157665_057e566113eb69a8_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 725}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"157665\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157665_057e566113eb69a8_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 453}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18520289/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#e1dac7\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#68635f\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#484b47\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"153314\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153314_c95a073e496b7517_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 202}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"153314\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153314_c95a073e496b7517_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 202}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"153314\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153314_c95a073e496b7517_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"153314\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153314_c95a073e496b7517_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 647}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"153314\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/153314_c95a073e496b7517_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 404}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18521871/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b9b5a9\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#97856b\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#c6a68d\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#63614c\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#82856a\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"159749\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/159749_052f5077f10b031a_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 238}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"159749\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/159749_052f5077f10b031a_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 238}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"159749\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/159749_052f5077f10b031a_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"159749\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/159749_052f5077f10b031a_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 761}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"159749\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/159749_052f5077f10b031a_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 476}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18522599/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#9b9585\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#666960\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"150213\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150213_1db9ad78c6de219b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 267}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"150213\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150213_1db9ad78c6de219b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 267}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"150213\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150213_1db9ad78c6de219b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"150213\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150213_1db9ad78c6de219b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 855}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"150213\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150213_1db9ad78c6de219b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 534}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18524291/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a8a292\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#768178\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#52564f\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#81786b\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"156702\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156702_f209c6e1fca5d290_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 262}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"156702\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156702_f209c6e1fca5d290_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 262}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"156702\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156702_f209c6e1fca5d290_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"156702\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156702_f209c6e1fca5d290_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 839}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"156702\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/156702_f209c6e1fca5d290_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 524}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18526059/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#768080\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#595f5b\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"150753\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150753_fe26671a07c09071_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 229}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"150753\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150753_fe26671a07c09071_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 229}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"150753\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150753_fe26671a07c09071_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"150753\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150753_fe26671a07c09071_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 733}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"150753\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/150753_fe26671a07c09071_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 458}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18526999/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#2b262a\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#6e422b\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4c4448\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#71645d\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8d8683\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"96692\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/96692_c4344e9cb0e56d96_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"96692\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/96692_c4344e9cb0e56d96_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"96692\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/96692_c4344e9cb0e56d96_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 820, \\\"image_id\\\": \\\"96692\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/96692_c4344e9cb0e56d96_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 512, \\\"image_id\\\": \\\"96692\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/96692_c4344e9cb0e56d96_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18533157/\\\", \\\"year_acquired\\\": \\\"1982\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Carol B. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539175\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539175/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Stephen W. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539171\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539171/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Matchsafe\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#deb887\\\", \\\"closest_css3\\\": \\\"#deb887\\\", \\\"color\\\": \\\"#dec382\\\", \\\"closest_crayola\\\": \\\"#e7c697\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#615753\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#3d322e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#897969\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a7a09b\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"104108\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/104108_f7e688147c545428_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 256, \\\"image_id\\\": \\\"104108\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/104108_f7e688147c545428_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"104108\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/104108_f7e688147c545428_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 819, \\\"image_id\\\": \\\"104108\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/104108_f7e688147c545428_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 512, \\\"image_id\\\": \\\"104108\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/104108_f7e688147c545428_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18533521/\\\", \\\"year_acquired\\\": \\\"1982\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Carol B. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539175\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539175/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Stephen W. Brener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18539171\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18539171/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Matchsafe\\\", \\\"medium\\\": \\\"metal\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18540393/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18541947/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a69977\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#84795e\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"157287\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157287_14bbe192260413f8_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 191}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"157287\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157287_14bbe192260413f8_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 191}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"157287\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157287_14bbe192260413f8_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"157287\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157287_14bbe192260413f8_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 610}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"157287\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/157287_14bbe192260413f8_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 381}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18543055/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18544443/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": \\\"pen and brown ink with gray wash and traces of graphite \\\\nsupport: off-white laid paper\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18545157/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Edward D. Brandegee\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18049797\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131956\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049797/\\\", \\\"role_id\\\": \\\"35352249\\\"}], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18547685/\\\", \\\"year_acquired\\\": \\\"1938\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing, Design for pendant, 1725\\\\u201350\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18556025/\\\", \\\"year_acquired\\\": \\\"1939\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Rowland Burdon-Muller\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18052575\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052575/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (Japan)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18557325/\\\", \\\"year_acquired\\\": \\\"1939\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cora E. Wilson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18058283\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058283/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Winslow Homer\\\", \\\"role_name\\\": \\\"After\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236677/\\\", \\\"person_id\\\": \\\"18041949\\\", \\\"role_display_name\\\": \\\"After\\\", \\\"person_date\\\": \\\"American, 1836\\\\u20131910\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041949/\\\", \\\"role_id\\\": \\\"35236677\\\"}], \\\"title\\\": \\\"Print, Our Watering Places - The Empty Sleeve at Newport, August 26, 1865\\\", \\\"medium\\\": \\\"wood engraving printed in black ink on paper\\\", \\\"description\\\": \\\"Horizontal view of a wicker trap containing a woman and man with military cap of the Northern United States at the time of the Civil War; his left coat is empty and pinned under his lapel. Beach is visible in the distance, and the ocean beyond.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b7b89d\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}, {\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#d2b69b\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#889477\\\", \\\"closest_crayola\\\": \\\"#87a96b\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#687860\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#b1896c\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"44717\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44717_e0f8df9325094327_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 183}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"44717\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44717_e0f8df9325094327_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 183}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"44717\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44717_e0f8df9325094327_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"44717\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44717_e0f8df9325094327_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 586}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"44717\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/44717_e0f8df9325094327_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 366}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18564723/\\\", \\\"year_acquired\\\": \\\"1941\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Calvin S. Hathaway\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18052379\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052379/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Desfoss\\\\u00e9 et Karth\\\", \\\"role_name\\\": \\\"Printer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236673/\\\", \\\"person_id\\\": \\\"18046779\\\", \\\"role_display_name\\\": \\\"Printed by\\\", \\\"person_date\\\": \\\"French, active 1923\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046779/\\\", \\\"role_id\\\": \\\"35236673\\\"}, {\\\"person_name\\\": \\\"Anonymous\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"68739079\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/68739079/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Scenic, Chinese Chippendale, 1920\\\\u201325\\\", \\\"medium\\\": \\\"block-printed\\\", \\\"description\\\": \\\"In foreground, seated man with drum and sticks. In middle distance, portion of a meandering stream, a child seated on far bank at the base of a two-story garden house. Mountains in distance. Width numbered 20 at bottom.\\\", \\\"decade\\\": \\\"1920\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18565463/\\\", \\\"year_acquired\\\": \\\"1942\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Drawing (Italy)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18566385/\\\", \\\"year_acquired\\\": \\\"1942\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Erskine Hewitt\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18050021\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131938\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050021/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Drawing (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18566721/\\\", \\\"year_acquired\\\": \\\"1942\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Erskine Hewitt\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18050021\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131938\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050021/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Drawing (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18567117/\\\", \\\"year_acquired\\\": \\\"1942\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Erskine Hewitt\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18050021\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"American, 1871\\\\u20131938\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050021/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Drawing (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18567779/\\\", \\\"year_acquired\\\": \\\"1942\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Max Wilner\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18060767\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18060767/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a49677\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#73664d\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#484031\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"43369\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/43369_5a0ef7f9a0b13273_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"43369\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/43369_5a0ef7f9a0b13273_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"43369\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/43369_5a0ef7f9a0b13273_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"43369\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/43369_5a0ef7f9a0b13273_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"43369\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/43369_5a0ef7f9a0b13273_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"21959\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/21959_9b961c3225e27a01_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 309}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"21959\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/21959_9b961c3225e27a01_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 309}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"21959\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/21959_9b961c3225e27a01_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"21959\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/21959_9b961c3225e27a01_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 988}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"21959\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/21959_9b961c3225e27a01_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 617}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18569377/\\\", \\\"year_acquired\\\": \\\"1943\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. William Bayard Cutting\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18536987\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18536987/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Sybil Carter Indian Mission and Lace Industry Association\\\", \\\"role_name\\\": \\\"Maker\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236685/\\\", \\\"person_id\\\": \\\"18050547\\\", \\\"role_display_name\\\": \\\"Made by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050547/\\\", \\\"role_id\\\": \\\"35236685\\\"}], \\\"title\\\": \\\"Pillow Cover (USA), ca. 1900\\\", \\\"medium\\\": \\\"linen\\\", \\\"description\\\": \\\"Pillow cover ornamented in conventional design worked in cutwork and embroidery. Joined to the back with bobbin lace. Pillow covered in green silk.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18572247/\\\", \\\"year_acquired\\\": \\\"1944\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"John Kenneth Tilton\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047817\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047817/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"M.H. Birge & Sons Co.\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18046415\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"1834\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046415/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Imitation Leather (USA), 1920\\\", \\\"medium\\\": \\\"block-printed, embossed\\\", \\\"description\\\": \\\"A geometric design on a large scale of interlacing circular bands. The bands in turn are covered with small designs as though studded with nail heads. All of design is embossed and finished in brass-colored gilt. Field is plain ivory. Entire surface is antiqued by hand. Printed from wood blocks in oil paints. On reverse side is printed: \\\\\\\"No 8066 2\\\\\\\". Same design as 1944-79-19.\\\", \\\"decade\\\": \\\"1920\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18596615/\\\", \\\"year_acquired\\\": \\\"1945\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Henry Martin Rose II\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18058121\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058121/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Gilbert White Rose\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18058123\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058123/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (England and United States)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18601391/\\\", \\\"year_acquired\\\": \\\"1945\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Henry Martin Rose II\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18058121\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058121/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Gilbert White Rose\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18058123\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18058123/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (England and United States)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#aaa6a0\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#85837d\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#696863\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"214003\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/214003_559caadec1a7024f_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 214}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"214003\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/214003_559caadec1a7024f_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 214}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"214003\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/214003_559caadec1a7024f_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"214003\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/214003_559caadec1a7024f_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 686}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"214003\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/214003_559caadec1a7024f_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 429}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18605923/\\\", \\\"year_acquired\\\": \\\"1947\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Print (Germany)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8c8672\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"42168\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42168_5e5654cf99b28a45_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 257}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"42168\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42168_5e5654cf99b28a45_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 257}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"42168\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42168_5e5654cf99b28a45_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"42168\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42168_5e5654cf99b28a45_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 823}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"42168\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/42168_5e5654cf99b28a45_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 514}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"188492\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/188492_17b262ae5b7c8b6a_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 257}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"188492\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/188492_17b262ae5b7c8b6a_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 257}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"188492\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/188492_17b262ae5b7c8b6a_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"188492\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/188492_17b262ae5b7c8b6a_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 821}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"188492\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/188492_17b262ae5b7c8b6a_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 513}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18610881/\\\", \\\"year_acquired\\\": \\\"1948\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Karin Zonis\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"51676457\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/51676457/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Arnold William Brunner\\\", \\\"role_name\\\": \\\"Architect\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236663/\\\", \\\"person_id\\\": \\\"18043333\\\", \\\"role_display_name\\\": \\\"Architect:\\\", \\\"person_date\\\": \\\"1857\\\\u20131925\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18043333/\\\", \\\"role_id\\\": \\\"35236663\\\"}, {\\\"person_name\\\": \\\"Mrs. Arnold W. Brunner\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18054685\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18054685/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing, Proposed Towers--Bridge, Toledo, Ohio, 1890\\\\u20131925\\\", \\\"medium\\\": \\\"graphite, white chalk on dark cream paper\\\", \\\"description\\\": \\\"Drawing of a bridge with large columns rising from its bases over a river. Crowds of people are present on the bridge. In the foreground, a boat.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#dcdcdc\\\", \\\"closest_css3\\\": \\\"#dcdcdc\\\", \\\"color\\\": \\\"#e5e1ce\\\", \\\"closest_crayola\\\": \\\"#efdecd\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#989588\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#77776b\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#51524b\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"170138\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170138_03a499c893454255_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 201}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"170138\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170138_03a499c893454255_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 201}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"170138\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170138_03a499c893454255_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"170138\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170138_03a499c893454255_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 642}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"170138\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/170138_03a499c893454255_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 401}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18613679/\\\", \\\"year_acquired\\\": \\\"1949\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. George A. Kubler\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"51679001\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/51679001/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#93938a\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4f4643\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#7d7462\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6f5757\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"147143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147143_6dfd189bd0577494_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 227}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"147143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147143_6dfd189bd0577494_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 227}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"147143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147143_6dfd189bd0577494_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"147143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147143_6dfd189bd0577494_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 725}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"147143\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/147143_6dfd189bd0577494_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 453}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18614721/\\\", \\\"year_acquired\\\": \\\"1980\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Cooper Union Library\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056853\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056853/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#ffe4c4\\\", \\\"closest_css3\\\": \\\"#ffe4c4\\\", \\\"color\\\": \\\"#f0e8c4\\\", \\\"closest_crayola\\\": \\\"#eceabe\\\"}, {\\\"closest_css4\\\": \\\"#b0c4de\\\", \\\"closest_css3\\\": \\\"#b0c4de\\\", \\\"color\\\": \\\"#92c3c1\\\", \\\"closest_crayola\\\": \\\"#a2add0\\\"}, {\\\"closest_css4\\\": \\\"#8fbc8f\\\", \\\"closest_css3\\\": \\\"#8fbc8f\\\", \\\"color\\\": \\\"#98c6a9\\\", \\\"closest_crayola\\\": \\\"#a8e4a0\\\"}, {\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#c5d0c5\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#718a90\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"82682\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82682_5c93d2fbb0c43db4_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 176}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"82682\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82682_5c93d2fbb0c43db4_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 176}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"82682\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82682_5c93d2fbb0c43db4_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"82682\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82682_5c93d2fbb0c43db4_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 563}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"82682\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/82682_5c93d2fbb0c43db4_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 352}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"205325\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205325_2375f5d2d2ed627f_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 182}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"205325\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205325_2375f5d2d2ed627f_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 182}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"205325\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205325_2375f5d2d2ed627f_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"205325\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205325_2375f5d2d2ed627f_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 581}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"205325\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/205325_2375f5d2d2ed627f_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 363}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18618249/\\\", \\\"year_acquired\\\": \\\"1981\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Brigham Young University\\\", \\\"role_name\\\": \\\"Client\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236667/\\\", \\\"person_id\\\": \\\"18042421\\\", \\\"role_display_name\\\": \\\"Client:\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042421/\\\", \\\"role_id\\\": \\\"35236667\\\"}], \\\"title\\\": \\\"Poster, Fun Run\\\", \\\"medium\\\": \\\"lithograph on paper\\\", \\\"description\\\": \\\"Poster features a cartoon of a foot with each toe in a sneaker. Text in black for a 3-mile course.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18618955/\\\", \\\"year_acquired\\\": \\\"1986\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Card\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#504b49\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#76706d\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a8a29c\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"118988\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118988_8ff7e52953119c67_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 213}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"118988\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118988_8ff7e52953119c67_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 213}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"118988\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118988_8ff7e52953119c67_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"118988\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118988_8ff7e52953119c67_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 683}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"118988\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/118988_8ff7e52953119c67_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 427}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18622955/\\\", \\\"year_acquired\\\": \\\"1987\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Excel Cutlery, Inc.\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18537765\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18537765/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Excel Cutlery, Inc.\\\", \\\"role_name\\\": \\\"For\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236675/\\\", \\\"person_id\\\": \\\"18537765\\\", \\\"role_display_name\\\": \\\"Made for\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18537765/\\\", \\\"role_id\\\": \\\"35236675\\\"}, {\\\"person_name\\\": \\\"Retroneu\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18537763\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"Japan,\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18537763/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Sextet Onyx Teaspoon, ca. 1987\\\", \\\"medium\\\": \\\"stainless steel\\\", \\\"description\\\": null, \\\"decade\\\": \\\"1970\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#898882\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 284, \\\"image_id\\\": \\\"117186\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117186_3e8312d65991af6e_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 284, \\\"image_id\\\": \\\"117186\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117186_3e8312d65991af6e_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"117186\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117186_3e8312d65991af6e_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 908, \\\"image_id\\\": \\\"117186\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117186_3e8312d65991af6e_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 568, \\\"image_id\\\": \\\"117186\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/117186_3e8312d65991af6e_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18624987/\\\", \\\"year_acquired\\\": \\\"1988\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Donald Deskey\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041973\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1894\\\\u20131989\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041973/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"RKR\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18048257\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048257/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Dr. Gail Davidson\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18048255\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048255/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"K.\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18042249\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042249/\\\", \\\"role_id\\\": \\\"35236657\\\"}, {\\\"person_name\\\": \\\"K.\\\", \\\"role_name\\\": \\\"Draftsman\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236669/\\\", \\\"person_id\\\": \\\"18042249\\\", \\\"role_display_name\\\": \\\"Drafted by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042249/\\\", \\\"role_id\\\": \\\"35236669\\\"}, {\\\"person_name\\\": \\\"Donald Deskey\\\", \\\"role_name\\\": \\\"Office of\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236703/\\\", \\\"person_id\\\": \\\"18041973\\\", \\\"role_display_name\\\": \\\"Office of\\\", \\\"person_date\\\": \\\"American, 1894\\\\u20131989\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041973/\\\", \\\"role_id\\\": \\\"35236703\\\"}], \\\"title\\\": \\\"Drawing, Cabinet, early 20th century\\\", \\\"medium\\\": \\\"graphite, ruled border in graphite\\\\nsupport: tracing paper\\\", \\\"description\\\": \\\"Scale: 1\\\\\\\" = 1\\'\\\", \\\"decade\\\": \\\"1900\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#99958c\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#7f7973\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 288, \\\"image_id\\\": \\\"130357\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130357_0565b7338df7f7bc_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 288, \\\"image_id\\\": \\\"130357\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130357_0565b7338df7f7bc_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"130357\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130357_0565b7338df7f7bc_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 921, \\\"image_id\\\": \\\"130357\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130357_0565b7338df7f7bc_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 575, \\\"image_id\\\": \\\"130357\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/130357_0565b7338df7f7bc_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18626231/\\\", \\\"year_acquired\\\": \\\"1988\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Donald Deskey\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041973\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1894\\\\u20131989\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041973/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"LP\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047517\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047517/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Dr. Gail Davidson\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18048255\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048255/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Wiener\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18042275\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042275/\\\", \\\"role_id\\\": \\\"35236657\\\"}, {\\\"person_name\\\": \\\"Donald Deskey\\\", \\\"role_name\\\": \\\"Office of\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236703/\\\", \\\"person_id\\\": \\\"18041973\\\", \\\"role_display_name\\\": \\\"Office of\\\", \\\"person_date\\\": \\\"American, 1894\\\\u20131989\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041973/\\\", \\\"role_id\\\": \\\"35236703\\\"}], \\\"title\\\": \\\"Drawing, Armchair, Upholstered\\\", \\\"medium\\\": \\\"graphite\\\\nsupport: tracing paper\\\", \\\"description\\\": \\\"Scale: 1 1/2\\\\\\\" = 1\\'\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18627661/\\\", \\\"year_acquired\\\": \\\"1988\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Roger Selchow\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18057835\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18057835/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Print\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#cecdc1\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#e6e6fa\\\", \\\"closest_css3\\\": \\\"#e6e6fa\\\", \\\"color\\\": \\\"#dfd8fc\\\", \\\"closest_crayola\\\": \\\"#c5d0e6\\\"}, {\\\"closest_css4\\\": \\\"#dda0dd\\\", \\\"closest_css3\\\": \\\"#dda0dd\\\", \\\"color\\\": \\\"#d1aacd\\\", \\\"closest_crayola\\\": \\\"#cda4de\\\"}, {\\\"closest_css4\\\": \\\"#483d8b\\\", \\\"closest_css3\\\": \\\"#483d8b\\\", \\\"color\\\": \\\"#4f59a5\\\", \\\"closest_crayola\\\": \\\"#324ab2\\\"}, {\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#bdbfc8\\\", \\\"closest_crayola\\\": \\\"#b0b7c6\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 222, \\\"image_id\\\": \\\"27137\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/27137_508f237a8039c450_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 222, \\\"image_id\\\": \\\"27137\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/27137_508f237a8039c450_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"27137\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/27137_508f237a8039c450_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 709, \\\"image_id\\\": \\\"27137\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/27137_508f237a8039c450_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 443, \\\"image_id\\\": \\\"27137\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/27137_508f237a8039c450_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 114, \\\"image_id\\\": \\\"138211\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/138211_ab9c7607623db0b2_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 114, \\\"image_id\\\": \\\"138211\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/138211_ab9c7607623db0b2_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"138211\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/138211_ab9c7607623db0b2_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 364, \\\"image_id\\\": \\\"138211\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/138211_ab9c7607623db0b2_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 227, \\\"image_id\\\": \\\"138211\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/138211_ab9c7607623db0b2_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18631413/\\\", \\\"year_acquired\\\": \\\"1988\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Karin Zonis\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"51676457\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/51676457/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Decorative Arts Association Acquisition Fund\\\", \\\"role_name\\\": \\\"Fund\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352247/\\\", \\\"person_id\\\": \\\"18049365\\\", \\\"role_display_name\\\": \\\"Fund:\\\", \\\"person_date\\\": \\\"founded 1982, closed September 30, 1998\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049365/\\\", \\\"role_id\\\": \\\"35352247\\\"}, {\\\"person_name\\\": \\\"Wolfgang Ruf\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18538455\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18538455/\\\", \\\"role_id\\\": \\\"35352249\\\"}, {\\\"person_name\\\": \\\"Wiener Werkst\\\\u00e4tte\\\", \\\"role_name\\\": \\\"For\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236675/\\\", \\\"person_id\\\": \\\"18048101\\\", \\\"role_display_name\\\": \\\"Made for\\\", \\\"person_date\\\": \\\"Vienna, Austria, 1903 - 1932\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048101/\\\", \\\"role_id\\\": \\\"35236675\\\"}, {\\\"person_name\\\": \\\"Juliana Ryslavy\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18538943\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18538943/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Drawing, Annie: White with Ochre and Slate\\\", \\\"medium\\\": \\\"brush and gouache on paper\\\", \\\"description\\\": \\\"Scattering of blades of grass in ochre and slate on white ground.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a3998c\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#81756b\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6f5154\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#392a36\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4c4964\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"110759\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110759_d43fafe4325e742f_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 309}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"110759\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110759_d43fafe4325e742f_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 309}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"110759\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110759_d43fafe4325e742f_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"110759\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110759_d43fafe4325e742f_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 990}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"110759\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110759_d43fafe4325e742f_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 618}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"10630\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10630_9944f1adb079d236_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 243}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"10630\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10630_9944f1adb079d236_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 243}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"10630\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10630_9944f1adb079d236_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"10630\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10630_9944f1adb079d236_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 778}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"10630\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10630_9944f1adb079d236_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 486}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18632835/\\\", \\\"year_acquired\\\": \\\"1989\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Deborah S. Shinn\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047827\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047827/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Natalya Yakovlevna Danko\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18045193\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"Russian, b. Georgia, 1892\\\\u20131942\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045193/\\\", \\\"role_id\\\": \\\"35236655\\\"}, {\\\"person_name\\\": \\\"Lomonosov Porcelain Factory\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18045091\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"Leningrad, USSR, founded 1744\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045091/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Bust of Lenin Inkstand, ca. 1925\\\", \\\"medium\\\": \\\"enameled porcelain\\\", \\\"description\\\": \\\"In the form of two books, one sitting on top of the other, with a bust of Lenin resting on top; a scrolled paper-like form across the top and folding down the front side to form a pencil rest, inscribed (in Russian) \\\\\\\"Electrification + Soviet Power = Communism;\\\\\\\" circular hole for inkwell on top. Inscription on binding of lower book on back side (in Russian): \\\\\\\"N. Lenin / (V. Ulyanov) / Volume X / Collected / Works.\\\\\\\" Inscription on top side of upper book (in Russian): \\\\\\\"Publishing House of the Sea Ministry\\\\\\\"[?\\\", \\\"decade\\\": \\\"1910\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#988474\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#755344\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a19d90\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 282, \\\"image_id\\\": \\\"110738\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110738_a9f12d6fc8f198d9_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 282, \\\"image_id\\\": \\\"110738\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110738_a9f12d6fc8f198d9_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"110738\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110738_a9f12d6fc8f198d9_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 901, \\\"image_id\\\": \\\"110738\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110738_a9f12d6fc8f198d9_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 563, \\\"image_id\\\": \\\"110738\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110738_a9f12d6fc8f198d9_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"11049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/11049_fa1308e2383202bb_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 230}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"11049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/11049_fa1308e2383202bb_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 230}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"11049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/11049_fa1308e2383202bb_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"11049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/11049_fa1308e2383202bb_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 737}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"11049\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/11049_fa1308e2383202bb_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 460}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18632935/\\\", \\\"year_acquired\\\": \\\"1989\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Deborah S. Shinn\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047827\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047827/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Natalya Yakovlevna Danko\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18045193\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"Russian, b. Georgia, 1892\\\\u20131942\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045193/\\\", \\\"role_id\\\": \\\"35236655\\\"}, {\\\"person_name\\\": \\\"Lomonosov Porcelain Factory\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18045091\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"Leningrad, USSR, founded 1744\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045091/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Woman with Shawl Figure, 1929\\\", \\\"medium\\\": \\\"molded, enameled porcelain\\\", \\\"description\\\": \\\"Woman dressed in Turkik costume with floral printed bloomers, ornate blouse and vest, holding large shawl which covers top of her head up off of shoulders; standing on oval base.\\\", \\\"decade\\\": \\\"1920\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#2c3240\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#585a66\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#9d9aad\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#7a7b8b\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"10667\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10667_ed8007b5acf35b79_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 231}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"10667\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10667_ed8007b5acf35b79_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 231}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"10667\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10667_ed8007b5acf35b79_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"10667\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10667_ed8007b5acf35b79_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 739}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"10667\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/10667_ed8007b5acf35b79_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 462}}, {\\\"n\\\": {\\\"height\\\": 318, \\\"image_id\\\": \\\"115405\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/115405_866631cdcbd5d186_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 318, \\\"image_id\\\": \\\"115405\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/115405_866631cdcbd5d186_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"115405\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/115405_866631cdcbd5d186_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1018, \\\"image_id\\\": \\\"115405\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/115405_866631cdcbd5d186_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 636, \\\"image_id\\\": \\\"115405\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/115405_866631cdcbd5d186_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18632989/\\\", \\\"year_acquired\\\": \\\"1989\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Deborah S. Shinn\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047827\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047827/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Lomonosov Porcelain Factory\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18045091\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"Leningrad, USSR, founded 1744\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045091/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Bust of Lenin Figure, 1940\\\\u201350\\\", \\\"medium\\\": \\\"porcelain (bisque)\\\", \\\"description\\\": \\\"Bust-length portrait of bald man, head turned very slightly to his right\\\", \\\"decade\\\": \\\"1940\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#778899\\\", \\\"closest_css3\\\": \\\"#778899\\\", \\\"color\\\": \\\"#8b9197\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 288, \\\"image_id\\\": \\\"158817\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158817_4c26f7fb956cddcb_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 288, \\\"image_id\\\": \\\"158817\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158817_4c26f7fb956cddcb_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"158817\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158817_4c26f7fb956cddcb_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 923, \\\"image_id\\\": \\\"158817\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158817_4c26f7fb956cddcb_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 577, \\\"image_id\\\": \\\"158817\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/158817_4c26f7fb956cddcb_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"78397\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78397_03a767f5a9c787b2_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 207}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"78397\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78397_03a767f5a9c787b2_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 207}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"78397\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78397_03a767f5a9c787b2_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"78397\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78397_03a767f5a9c787b2_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 663}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"78397\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78397_03a767f5a9c787b2_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 414}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"78398\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78398_83d1bdbe454748a1_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 207}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"78398\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78398_83d1bdbe454748a1_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 207}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"78398\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78398_83d1bdbe454748a1_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"78398\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78398_83d1bdbe454748a1_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 663}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"78398\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78398_83d1bdbe454748a1_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 414}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18633543/\\\", \\\"year_acquired\\\": \\\"1989\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"SunarHauserman, Inc.\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18045987\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045987/\\\", \\\"role_id\\\": \\\"35236657\\\"}, {\\\"person_name\\\": \\\"Michael Graves\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18042695\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"American, 1934 - 2015\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042695/\\\", \\\"role_id\\\": \\\"35236655\\\"}, {\\\"person_name\\\": \\\"SunarHauserman, Inc.\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18045987\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045987/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Textile, Scroll, 1980s\\\", \\\"medium\\\": \\\"printed\\\", \\\"description\\\": null, \\\"decade\\\": \\\"1980\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18635135/\\\", \\\"year_acquired\\\": \\\"1990\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Scalamandr\\\\u00e9\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041217\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041217/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Border (USA), 1955\\\", \\\"medium\\\": \\\"machine-printed\\\", \\\"description\\\": null, \\\"decade\\\": \\\"1950\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#a29a8e\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#675d4f\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#32271e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#847c6d\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 204, \\\"image_id\\\": \\\"132400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/132400_2b0b9edd18d69bf8_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 204, \\\"image_id\\\": \\\"132400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/132400_2b0b9edd18d69bf8_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"132400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/132400_2b0b9edd18d69bf8_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 652, \\\"image_id\\\": \\\"132400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/132400_2b0b9edd18d69bf8_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 408, \\\"image_id\\\": \\\"132400\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/132400_2b0b9edd18d69bf8_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18637417/\\\", \\\"year_acquired\\\": \\\"1991\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Belt Slide (France), 1920\\\\u201340\\\", \\\"medium\\\": \\\"metal, glass, paste\\\", \\\"description\\\": null, \\\"decade\\\": \\\"1920\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#282927\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"161684\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161684_944980698ce86d9a_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 190}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"161684\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161684_944980698ce86d9a_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 190}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"161684\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161684_944980698ce86d9a_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"161684\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161684_944980698ce86d9a_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 608}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"161684\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161684_944980698ce86d9a_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 380}}, {\\\"n\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"78820\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78820_c50d2d1c6ac20ecc_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 207, \\\"image_id\\\": \\\"78820\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78820_c50d2d1c6ac20ecc_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"78820\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78820_c50d2d1c6ac20ecc_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 663, \\\"image_id\\\": \\\"78820\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78820_c50d2d1c6ac20ecc_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 414, \\\"image_id\\\": \\\"78820\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/78820_c50d2d1c6ac20ecc_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18638179/\\\", \\\"year_acquired\\\": \\\"1991\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Gillian Moss\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047459\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047459/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"General Acquisitions Endowment\\\", \\\"role_name\\\": \\\"Fund\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352247/\\\", \\\"person_id\\\": \\\"18048535\\\", \\\"role_display_name\\\": \\\"Fund:\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048535/\\\", \\\"role_id\\\": \\\"35352247\\\"}], \\\"title\\\": \\\"Textile (France), 1962\\\\u201363\\\", \\\"medium\\\": \\\"man-made fibers\\\", \\\"description\\\": \\\"All black fabric which contrasts transparent areas with shiny areas with areas of long fringe. Meant as a couture dress fabric.\\\", \\\"decade\\\": \\\"1960\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#c3b371\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#7b683d\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"60414\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/60414_11d35c464039ef60_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 298}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"60414\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/60414_11d35c464039ef60_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 298}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"60414\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/60414_11d35c464039ef60_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"60414\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/60414_11d35c464039ef60_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 955}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"60414\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/60414_11d35c464039ef60_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 597}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18639079/\\\", \\\"year_acquired\\\": \\\"1992\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Gregory Herringshaw\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047399\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047399/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"S.A. Maxwell & Co.\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18046363\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046363/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Sidewall (USA), 1920\\\\u201340\\\", \\\"medium\\\": \\\"machine-printed\\\", \\\"description\\\": \\\"Repeating motif of a floral bouquet in urn. Also contains floral swag, foliate scrolls and a floral wreath suspended below. Printed in metallic gold with burgundy highlights. Printed on a white mica, ribbed ground.\\\", \\\"decade\\\": \\\"1920\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#6d63a4\\\", \\\"closest_crayola\\\": \\\"#7851a9\\\"}, {\\\"closest_css4\\\": \\\"#4682b4\\\", \\\"closest_css3\\\": \\\"#4682b4\\\", \\\"color\\\": \\\"#5673bc\\\", \\\"closest_crayola\\\": \\\"#5d76cb\\\"}, {\\\"closest_css4\\\": \\\"#2e8b57\\\", \\\"closest_css3\\\": \\\"#2e8b57\\\", \\\"color\\\": \\\"#4a9556\\\", \\\"closest_crayola\\\": \\\"#319177\\\"}, {\\\"closest_css4\\\": \\\"#daa520\\\", \\\"closest_css3\\\": \\\"#daa520\\\", \\\"color\\\": \\\"#e0ca43\\\", \\\"closest_crayola\\\": \\\"#ffcf48\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#b15a2c\\\", \\\"closest_crayola\\\": \\\"#c46210\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"93335\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93335_29c2030139c1b550_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 226}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"93335\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93335_29c2030139c1b550_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 226}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"93335\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93335_29c2030139c1b550_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"93335\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93335_29c2030139c1b550_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 724}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"93335\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/93335_29c2030139c1b550_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 453}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18639261/\\\", \\\"year_acquired\\\": \\\"1992\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Shin Matsunaga\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041215\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"b. 1940\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041215/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Shin Matsunaga Design Inc.\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18048545\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"b. 1940\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048545/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Poster, Scandinavian Design: A Way of Life, 1987\\\", \\\"medium\\\": \\\"offset lithograph on paper\\\", \\\"description\\\": \\\"Colored letters on black ground.\\\", \\\"decade\\\": \\\"1980\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#dcd5c0\\\", \\\"closest_crayola\\\": \\\"#dbd7d2\\\"}, {\\\"closest_css4\\\": \\\"#8b4513\\\", \\\"closest_css3\\\": \\\"#8b4513\\\", \\\"color\\\": \\\"#6d4031\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#cd5c5c\\\", \\\"closest_css3\\\": \\\"#cd5c5c\\\", \\\"color\\\": \\\"#c3604d\\\", \\\"closest_crayola\\\": \\\"#bc5d58\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#5a5b7e\\\", \\\"closest_crayola\\\": \\\"#58427c\\\"}, {\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#cbaf61\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"41289\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/41289_587cb21dc5ba1d30_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 253}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"41289\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/41289_587cb21dc5ba1d30_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 253}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"41289\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/41289_587cb21dc5ba1d30_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"41289\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/41289_587cb21dc5ba1d30_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 809}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"41289\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/41289_587cb21dc5ba1d30_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 505}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"196477\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/196477_ac82b99634e703c2_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 240}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"196477\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/196477_ac82b99634e703c2_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 240}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"196477\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/196477_ac82b99634e703c2_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"196477\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/196477_ac82b99634e703c2_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 769}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"196477\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/196477_ac82b99634e703c2_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 480}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18640349/\\\", \\\"year_acquired\\\": \\\"1992\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Donald Cameron\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041077\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041077/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Tommi Parzinger\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18049811\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"German, active USA, 1903 - 1981\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049811/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Drawing, Concentric Circle Pattern, Textile Pattern, 1950\\\\u201370\\\", \\\"medium\\\": \\\"brush and gouache, graphite on paper, lined\\\", \\\"description\\\": \\\"On brown background, concentric circles of various sizes painted in red, yellow and blue.\\\", \\\"decade\\\": \\\"1950\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18641487/\\\", \\\"year_acquired\\\": \\\"1992\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"William Hunt Diederich\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18048665\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"1884\\\\u20131953\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048665/\\\", \\\"role_id\\\": \\\"35236565\\\"}], \\\"title\\\": \\\"Drawing, Botanical Gardens\\\", \\\"medium\\\": \\\"black crayon\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#c6b595\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8a7d69\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6b604e\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"133691\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/133691_80611699d7a72c4b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 71}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"133691\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/133691_80611699d7a72c4b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 71}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"133691\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/133691_80611699d7a72c4b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 228}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"133691\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/133691_80611699d7a72c4b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 228}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"133691\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/133691_80611699d7a72c4b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 142}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18646651/\\\", \\\"year_acquired\\\": \\\"1993\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mrs. Owen E. Robinson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041395\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041395/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Mrs. John B. Hendry\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18537895\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18537895/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Hair Pin (Switzerland)\\\", \\\"medium\\\": \\\"silver\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18647525/\\\", \\\"year_acquired\\\": \\\"1994\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Mike McNeilly\\\", \\\"role_name\\\": \\\"Artist\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236565/\\\", \\\"person_id\\\": \\\"18048781\\\", \\\"role_display_name\\\": \\\"\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18048781/\\\", \\\"role_id\\\": \\\"35236565\\\"}, {\\\"person_name\\\": \\\"Unknown donor: unsolicited gift\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18050283\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18050283/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Poster, Poster for Lethal Art: Michelangelo and Astronaut, late 20th century\\\", \\\"medium\\\": \\\"offset lithography\\\", \\\"description\\\": \\\"Poster for Lethal Art.\\\\nReproduction of famous images distorted by computer pixelation. Astronaut on moon saluting with American flag with space mobile, earth, saturn, and stars in background at top. Image of Michelangelo\\'s Sistine Ceiling with scene of God giving Adam life through the touch of their fingers. \\\\nImprinted \\\\\\\"LETHAL ART/ MIKE MCNEILLY\\\\\\\" at top left and \\\\\\\"Fax 213 650 5275\\\\\\\" (in white) at right edge.\\\", \\\"decade\\\": \\\"1970\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18649015/\\\", \\\"year_acquired\\\": \\\"1994\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"St. Jivago Desanges\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18041639\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041639/\\\", \\\"role_id\\\": \\\"35352249\\\"}], \\\"title\\\": \\\"Hotel Label, Miramar Hammamet\\\", \\\"medium\\\": \\\"printed paper\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a8a9a3\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 222, \\\"image_id\\\": \\\"167500\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/167500_ec5d014a3bf4324b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 222, \\\"image_id\\\": \\\"167500\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/167500_ec5d014a3bf4324b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"167500\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/167500_ec5d014a3bf4324b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 709, \\\"image_id\\\": \\\"167500\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/167500_ec5d014a3bf4324b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 443, \\\"image_id\\\": \\\"167500\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/167500_ec5d014a3bf4324b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18649729/\\\", \\\"year_acquired\\\": \\\"1994\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Barbara Duggan\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"18047457\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18047457/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Cora Ginsburg\\\", \\\"role_name\\\": \\\"Vendor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352249/\\\", \\\"person_id\\\": \\\"18041197\\\", \\\"role_display_name\\\": \\\"Purchased from\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041197/\\\", \\\"role_id\\\": \\\"35352249\\\"}, {\\\"person_name\\\": \\\"Pauline Cooper Noyes Fund\\\", \\\"role_name\\\": \\\"Fund\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352247/\\\", \\\"person_id\\\": \\\"18049103\\\", \\\"role_display_name\\\": \\\"Fund:\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049103/\\\", \\\"role_id\\\": \\\"35352247\\\"}], \\\"title\\\": \\\"Bed Sheet, 16th century\\\", \\\"medium\\\": \\\"linen\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#bcba9f\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 285, \\\"image_id\\\": \\\"48704\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/48704_46bb1d997ae39d4b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 285, \\\"image_id\\\": \\\"48704\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/48704_46bb1d997ae39d4b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"48704\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/48704_46bb1d997ae39d4b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 913, \\\"image_id\\\": \\\"48704\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/48704_46bb1d997ae39d4b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 571, \\\"image_id\\\": \\\"48704\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/48704_46bb1d997ae39d4b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 281, \\\"image_id\\\": \\\"198998\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198998_ada9df7e15c5f1bc_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 281, \\\"image_id\\\": \\\"198998\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198998_ada9df7e15c5f1bc_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"198998\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198998_ada9df7e15c5f1bc_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 899, \\\"image_id\\\": \\\"198998\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198998_ada9df7e15c5f1bc_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 562, \\\"image_id\\\": \\\"198998\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198998_ada9df7e15c5f1bc_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18650553/\\\", \\\"year_acquired\\\": \\\"1995\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Karin Zonis\\\", \\\"role_name\\\": \\\"Cataloguer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35352245/\\\", \\\"person_id\\\": \\\"51676457\\\", \\\"role_display_name\\\": \\\"Catalogued by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/51676457/\\\", \\\"role_id\\\": \\\"35352245\\\"}, {\\\"person_name\\\": \\\"Mr. John Finguerra\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041845\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041845/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Jean Elys\\\\u00e9e Puiforcat\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18049021\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"French, 1897\\\\u20131945\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049021/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Drawing, Design for a Creamer, ca. 1936\\\", \\\"medium\\\": \\\"graphite on cream tracing paper\\\", \\\"description\\\": \\\"Cylindrical creamer with a rounded spout drawn in plan and elevation decorated with thick vertical bands cinched at the middle around the base of the body. Elongated scroll handle connected to the short circular base.\\\", \\\"decade\\\": \\\"1930\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#b2a28b\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#977c67\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#8e604f\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 226, \\\"image_id\\\": \\\"110789\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110789_c93ba0a6b55c0414_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 226, \\\"image_id\\\": \\\"110789\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110789_c93ba0a6b55c0414_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"110789\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110789_c93ba0a6b55c0414_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 722, \\\"image_id\\\": \\\"110789\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110789_c93ba0a6b55c0414_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 451, \\\"image_id\\\": \\\"110789\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/110789_c93ba0a6b55c0414_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 242, \\\"image_id\\\": \\\"13346\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13346_5f7a9a0209ed4c97_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 242, \\\"image_id\\\": \\\"13346\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13346_5f7a9a0209ed4c97_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"13346\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13346_5f7a9a0209ed4c97_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 775, \\\"image_id\\\": \\\"13346\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13346_5f7a9a0209ed4c97_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 484, \\\"image_id\\\": \\\"13346\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13346_5f7a9a0209ed4c97_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18653243/\\\", \\\"year_acquired\\\": \\\"1996\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Victor Wiener\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041855\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041855/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Goebel\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18049139\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049139/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Box (Germany), 1920\\\\u201340\\\", \\\"medium\\\": \\\"glazed earthenware\\\", \\\"description\\\": \\\"Rectangular box and lid with cream glaze. Box brushed with brown coming up from the bottom. Lid divided into quarters by raised ridges lined in black. Black also lines the edge of the lid. Quarters diagonally across from each other match: two plain and two consisting of six black ridges with red lining the intermittent crevices.\\\", \\\"decade\\\": \\\"1920\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 212, \\\"image_id\\\": \\\"198513\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198513_c54cabcfec64e240_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 212, \\\"image_id\\\": \\\"198513\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198513_c54cabcfec64e240_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"198513\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198513_c54cabcfec64e240_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 679, \\\"image_id\\\": \\\"198513\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198513_c54cabcfec64e240_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 424, \\\"image_id\\\": \\\"198513\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198513_c54cabcfec64e240_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18655451/\\\", \\\"year_acquired\\\": \\\"1997\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Katherine McCoy\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18042311\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, b. 1945\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18042311/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Poster, Sunday at Three: September-October\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"198754\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198754_ec11faafb569c6c8_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 249}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"198754\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198754_ec11faafb569c6c8_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 249}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"198754\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198754_ec11faafb569c6c8_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"198754\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198754_ec11faafb569c6c8_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 798}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"198754\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/198754_ec11faafb569c6c8_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 499}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18655667/\\\", \\\"year_acquired\\\": \\\"1997\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"William T. Manning Company\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18043551\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"1925\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18043551/\\\", \\\"role_id\\\": \\\"35236655\\\"}, {\\\"person_name\\\": \\\"Mr. Edward T. Manning\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18041211\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041211/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Letterhead, A.H. Nilson Machine Co.\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#756644\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8c8c7c\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#a89767\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#f0e68c\\\", \\\"closest_css3\\\": \\\"#f0e68c\\\", \\\"color\\\": \\\"#ebd984\\\", \\\"closest_crayola\\\": \\\"#f0e891\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#5e4c3d\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 298, \\\"image_id\\\": \\\"151844\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/151844_308c7a395e21dca2_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 298, \\\"image_id\\\": \\\"151844\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/151844_308c7a395e21dca2_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"151844\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/151844_308c7a395e21dca2_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 954, \\\"image_id\\\": \\\"151844\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/151844_308c7a395e21dca2_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 596, \\\"image_id\\\": \\\"151844\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/151844_308c7a395e21dca2_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18657211/\\\", \\\"year_acquired\\\": null, \\\"participants\\\": [], \\\"title\\\": \\\"Button\\\", \\\"medium\\\": null, \\\"description\\\": \\\"On card 49\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#b7af8f\\\", \\\"closest_crayola\\\": \\\"#bab86c\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8e7f58\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#3f3423\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#68593b\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"46572\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46572_f58b9f8f51829c75_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 265}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"46572\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46572_f58b9f8f51829c75_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 265}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"46572\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46572_f58b9f8f51829c75_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"46572\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46572_f58b9f8f51829c75_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 849}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"46572\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46572_f58b9f8f51829c75_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 531}}, {\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"13142\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13142_b7674cf9a154def4_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 272}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"13142\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13142_b7674cf9a154def4_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 272}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"13142\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13142_b7674cf9a154def4_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"13142\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13142_b7674cf9a154def4_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 869}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"13142\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/13142_b7674cf9a154def4_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 543}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18667219/\\\", \\\"year_acquired\\\": \\\"1998\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Lanette Scheeline\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18045691\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1910 - 2001\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045691/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Lanette Scheeline\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18045691\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"American, 1910 - 2001\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18045691/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Textile (USA), before ca. 1950\\\", \\\"medium\\\": null, \\\"description\\\": \\\"Large flowers and leaves on a thick stem running up the middle of the design and printed in shades of brown.\\\", \\\"decade\\\": \\\"1930\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"195503\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/195503_4261189b325d7922_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 257}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"195503\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/195503_4261189b325d7922_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 257}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"195503\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/195503_4261189b325d7922_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"195503\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/195503_4261189b325d7922_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 821}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"195503\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/195503_4261189b325d7922_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 513}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18673957/\\\", \\\"year_acquired\\\": \\\"1997\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Ken Friedman\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049807\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049807/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Dan Friedman\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18041325\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"American, 1945\\\\u20131995\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18041325/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Design\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#928f6c\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#606b94\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#778899\\\", \\\"closest_css3\\\": \\\"#778899\\\", \\\"color\\\": \\\"#7c84a3\\\", \\\"closest_crayola\\\": \\\"#926eae\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#7b7e83\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"112214\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112214_b3517e29bbc6e272_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 306}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"112214\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112214_b3517e29bbc6e272_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 306}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"112214\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112214_b3517e29bbc6e272_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"112214\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112214_b3517e29bbc6e272_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 978}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"112214\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/112214_b3517e29bbc6e272_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 611}}, {\\\"n\\\": {\\\"height\\\": 313, \\\"image_id\\\": \\\"17703\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/17703_dd4e64f6fb82cc37_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 313, \\\"image_id\\\": \\\"17703\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/17703_dd4e64f6fb82cc37_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"17703\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/17703_dd4e64f6fb82cc37_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1002, \\\"image_id\\\": \\\"17703\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/17703_dd4e64f6fb82cc37_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 626, \\\"image_id\\\": \\\"17703\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/17703_dd4e64f6fb82cc37_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18678445/\\\", \\\"year_acquired\\\": \\\"1969\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Alexander Hayden Girard\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18046041\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1907\\\\u20131993\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046041/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Alexander Hayden Girard\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18046041\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"American, 1907\\\\u20131993\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046041/\\\", \\\"role_id\\\": \\\"35236655\\\"}, {\\\"person_name\\\": \\\"Herman Miller Furniture Company\\\", \\\"role_name\\\": \\\"Producer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236671/\\\", \\\"person_id\\\": \\\"18049013\\\", \\\"role_display_name\\\": \\\"Produced by\\\", \\\"person_date\\\": \\\"Zeeland, Michigan, USA, 1923\\\\u20131960\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049013/\\\", \\\"role_id\\\": \\\"35236671\\\"}, {\\\"person_name\\\": \\\"Meiers\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"85046719\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/85046719/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Sample, Mexidot, 1963\\\", \\\"medium\\\": \\\"cotton\\\", \\\"description\\\": \\\"White and olive green vertical stripes with blue rectangles. Rectangular patterning is formed by supplementary warp floats.\\\", \\\"decade\\\": \\\"1960\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#a7a39a\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 282, \\\"image_id\\\": \\\"154779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/154779_2727fbd934f12b82_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 282, \\\"image_id\\\": \\\"154779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/154779_2727fbd934f12b82_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"154779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/154779_2727fbd934f12b82_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 901, \\\"image_id\\\": \\\"154779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/154779_2727fbd934f12b82_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 563, \\\"image_id\\\": \\\"154779\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/154779_2727fbd934f12b82_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18683429/\\\", \\\"year_acquired\\\": \\\"2000\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"The Lake St. Louis Historical Society\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18052145\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052145/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"A.N. Davenport Co.\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18052147\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052147/\\\", \\\"role_id\\\": \\\"35236655\\\"}], \\\"title\\\": \\\"Drawing, Designs for Wardrobes, Washstands, & Somno (Night Tables)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#b1a18c\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#6b6057\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 229, \\\"image_id\\\": \\\"122063\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122063_788868507e557928_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 229, \\\"image_id\\\": \\\"122063\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122063_788868507e557928_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"122063\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122063_788868507e557928_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 733, \\\"image_id\\\": \\\"122063\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122063_788868507e557928_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 458, \\\"image_id\\\": \\\"122063\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122063_788868507e557928_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 310, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 310, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 854, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 882}, \\\"z\\\": {\\\"height\\\": 620, \\\"image_id\\\": \\\"19386\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19386_87b9842b387ea1ae_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18706227/\\\", \\\"year_acquired\\\": \\\"1957\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Tiffany and Co., New York\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18052955\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"Corona, New York, USA\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052955/\\\", \\\"role_id\\\": \\\"35236657\\\"}, {\\\"person_name\\\": \\\"Anonymous\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"68739079\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/68739079/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Chrysanthemum Luncheon Knife, 1880\\\\u201391\\\", \\\"medium\\\": \\\"silver, steel\\\", \\\"description\\\": \\\"Rounded steel blade; shaped handle with design in chrysanthemum pattern, with engraved \\\\\\\"B\\\\\\\" in reserve.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#778899\\\", \\\"closest_css3\\\": \\\"#778899\\\", \\\"color\\\": \\\"#8f8e91\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"123165\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/123165_cdde65b84b0bf34b_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 172}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"123165\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/123165_cdde65b84b0bf34b_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 172}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"123165\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/123165_cdde65b84b0bf34b_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"123165\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/123165_cdde65b84b0bf34b_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 549}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"123165\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/123165_cdde65b84b0bf34b_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 343}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18718127/\\\", \\\"year_acquired\\\": \\\"1991\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Donald A. Wallance\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18053597\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"American, 1909 \\\\u2013 1990\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18053597/\\\", \\\"role_id\\\": \\\"35236655\\\"}, {\\\"person_name\\\": \\\"Gregory J. Wallance\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18054673\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18054673/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"David M. Wallance\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18054675\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18054675/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Carving Ware Carving Fork, mid-20th century\\\", \\\"medium\\\": \\\"stainless steel and plastic\\\", \\\"description\\\": null, \\\"decade\\\": \\\"1920\\\"},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#deb887\\\", \\\"closest_css3\\\": \\\"#deb887\\\", \\\"color\\\": \\\"#e3c39a\\\", \\\"closest_crayola\\\": \\\"#e7c697\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#b9aa97\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"124241\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/124241_a6b7f28166602057_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 213}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"124241\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/124241_a6b7f28166602057_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 213}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"124241\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/124241_a6b7f28166602057_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"124241\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/124241_a6b7f28166602057_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 681}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"124241\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/124241_a6b7f28166602057_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 426}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18719105/\\\", \\\"year_acquired\\\": \\\"1991\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Gregory J. Wallance\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18054673\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18054673/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"David M. Wallance\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18054675\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18054675/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Palisander Handle Fragment\\\", \\\"medium\\\": \\\"wood\\\", \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d3d3d3\\\", \\\"closest_css3\\\": \\\"#d3d3d3\\\", \\\"color\\\": \\\"#d8d1bf\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#acaba3\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#9f877c\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}, {\\\"closest_css4\\\": \\\"#bc8f8f\\\", \\\"closest_css3\\\": \\\"#bc8f8f\\\", \\\"color\\\": \\\"#b9a38c\\\", \\\"closest_crayola\\\": \\\"#cd9575\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#836b64\\\", \\\"closest_crayola\\\": \\\"#8a795d\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 318, \\\"image_id\\\": \\\"100726\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/100726_2cb4c0ef56a5d6d3_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 318, \\\"image_id\\\": \\\"100726\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/100726_2cb4c0ef56a5d6d3_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"100726\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/100726_2cb4c0ef56a5d6d3_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1019, \\\"image_id\\\": \\\"100726\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/100726_2cb4c0ef56a5d6d3_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 637, \\\"image_id\\\": \\\"100726\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/100726_2cb4c0ef56a5d6d3_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18724683/\\\", \\\"year_acquired\\\": \\\"1926\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"William Randolph Hearst\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18059569\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18059569/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Wall Facing (Netherlands), ca. 1725\\\", \\\"medium\\\": \\\"tin-glazed earthenware, underglaze\\\", \\\"description\\\": \\\"Horizontal rectangle. Thirty-seven tiles wide and twenty-one high with opening for door or window nineteen and one-half tiles high and twelve wide. To left and right of opening, centered canopy above. Left, woman representing Hope, right, a sculputure urn. Centered above opening, a mascaron. Arabesque design of foliage.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18738099/\\\", \\\"year_acquired\\\": \\\"1952\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Book\\\", \\\"medium\\\": null, \\\"description\\\": \\\"Les Braisers\\\\n\\\\nrecto & verso\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#d2b48c\\\", \\\"closest_css3\\\": \\\"#d2b48c\\\", \\\"color\\\": \\\"#c1a987\\\", \\\"closest_crayola\\\": \\\"#deaa88\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#96917f\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#4e554a\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#2a453e\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#000000\\\", \\\"closest_css3\\\": \\\"#000000\\\", \\\"color\\\": \\\"#242720\\\", \\\"closest_crayola\\\": \\\"#000000\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 226, \\\"image_id\\\": \\\"19347\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19347_f9f539bae5309f9c_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 226, \\\"image_id\\\": \\\"19347\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19347_f9f539bae5309f9c_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"19347\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19347_f9f539bae5309f9c_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 724, \\\"image_id\\\": \\\"19347\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19347_f9f539bae5309f9c_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 452, \\\"image_id\\\": \\\"19347\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/19347_f9f539bae5309f9c_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18738345/\\\", \\\"year_acquired\\\": \\\"1962\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Nicolas Verien\\\", \\\"role_name\\\": \\\"Designer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236655/\\\", \\\"person_id\\\": \\\"18057665\\\", \\\"role_display_name\\\": \\\"Designed by\\\", \\\"person_date\\\": \\\"French, active 1685 \\\\u2013 1724\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18057665/\\\", \\\"role_id\\\": \\\"35236655\\\"}, {\\\"person_name\\\": \\\"Hamill & Barker\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18056543\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18056543/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Book, Livre Curieux et Utile pour Les S\\\\u00e7avans, et Artists. Compos\\\\u00e9 de trois Alphabets de Chiffres, Simples, doubles et triples., 1685\\\", \\\"medium\\\": \\\"engravings on cream laid paper, bound in boards with leather spine\\\", \\\"description\\\": \\\"Book of 153 pages of ornamental monogrames and some medallions. In addition, 16 plates of \\\\\\\"Supports and Chimiera\\\\\\\" for ornaments on armor: the 17th plate is bound in as a frontispiece. The \\\\\\\"table\\\\\\\" follows with the Forward placed last.\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18739367/\\\", \\\"year_acquired\\\": \\\"1979\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Album\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18746135/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Virginia Hamill Johnson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18063925\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18063925/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (France)\\\", \\\"medium\\\": null, \\\"description\\\": \\\"Drawing in Album\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18750227/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Virginia Hamill Johnson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18063925\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18063925/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (possibly France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18750543/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Virginia Hamill Johnson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18063925\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18063925/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (possibly France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18754091/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Virginia Hamill Johnson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18063925\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18063925/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Album (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18754453/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Virginia Hamill Johnson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18063925\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18063925/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Album (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18756015/\\\", \\\"year_acquired\\\": \\\"1945\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Joseph Appel\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18051399\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18051399/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Drawing (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18759403/\\\", \\\"year_acquired\\\": \\\"1973\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Virginia Hamill Johnson\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18063925\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18063925/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Album (France)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#2d2636\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#778899\\\", \\\"closest_css3\\\": \\\"#778899\\\", \\\"color\\\": \\\"#878d9d\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#5d6070\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#635358\\\", \\\"closest_crayola\\\": \\\"#6e5160\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#8d817c\\\", \\\"closest_crayola\\\": \\\"#9f8170\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"46835\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46835_e6a0994c645e4300_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 226}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"46835\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46835_e6a0994c645e4300_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 226}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"46835\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46835_e6a0994c645e4300_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"46835\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46835_e6a0994c645e4300_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 724}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"46835\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/46835_e6a0994c645e4300_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 452}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18794265/\\\", \\\"year_acquired\\\": \\\"2011\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Levi Strauss\\\", \\\"role_name\\\": \\\"Client\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236667/\\\", \\\"person_id\\\": \\\"18535845\\\", \\\"role_display_name\\\": \\\"Client:\\\", \\\"person_date\\\": \\\"San Francisco, California, USA\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18535845/\\\", \\\"role_id\\\": \\\"35236667\\\"}, {\\\"person_name\\\": \\\"Tom Schierlitz Photography\\\", \\\"role_name\\\": \\\"Photographer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236631/\\\", \\\"person_id\\\": \\\"18065115\\\", \\\"role_display_name\\\": \\\"Photographed by\\\", \\\"person_date\\\": \\\"American\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18065115/\\\", \\\"role_id\\\": \\\"35236631\\\"}, {\\\"person_name\\\": \\\"Sagmeister Inc.\\\", \\\"role_name\\\": \\\"Firm\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236797/\\\", \\\"person_id\\\": \\\"18054405\\\", \\\"role_display_name\\\": \\\"Firm:\\\", \\\"person_date\\\": \\\"New York, New York, USA, founded 1993\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18054405/\\\", \\\"role_id\\\": \\\"35236797\\\"}, {\\\"person_name\\\": \\\"Stefan Sagmeister\\\", \\\"role_name\\\": \\\"Art Director\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236787/\\\", \\\"person_id\\\": \\\"18052911\\\", \\\"role_display_name\\\": \\\"Art Director:\\\", \\\"person_date\\\": \\\"(Austrian, b. 1962)\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052911/\\\", \\\"role_id\\\": \\\"35236787\\\"}, {\\\"person_name\\\": \\\"Stefan Sagmeister\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18052911\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"(Austrian, b. 1962)\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18052911/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Richard The\\\", \\\"role_name\\\": \\\"Design Team member\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236801/\\\", \\\"person_id\\\": \\\"68739179\\\", \\\"role_display_name\\\": \\\"Design Team Member:\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/68739179/\\\", \\\"role_id\\\": \\\"35236801\\\"}, {\\\"person_name\\\": \\\"Joe Shouldice\\\", \\\"role_name\\\": \\\"Design Team member\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236801/\\\", \\\"person_id\\\": \\\"68739181\\\", \\\"role_display_name\\\": \\\"Design Team Member:\\\", \\\"person_date\\\": \\\"Canadian, n.d.\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/68739181/\\\", \\\"role_id\\\": \\\"35236801\\\"}], \\\"title\\\": \\\"Poster, Levi\\'s, The Strongest Thread, 2009\\\", \\\"medium\\\": \\\"offset lithograph on coated wove paper\\\", \\\"description\\\": \\\"Poster advertisement for Levi\\'s jeans. Recreation of jeans from its deconstructed thread.\\\", \\\"decade\\\": \\\"2000\\\"},\\n{\\\"colors\\\": [], \\\"images\\\": [], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18803483/\\\", \\\"year_acquired\\\": \\\"1984\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Allyn Cox\\\", \\\"role_name\\\": \\\"Bequestor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351537/\\\", \\\"person_id\\\": \\\"18536881\\\", \\\"role_display_name\\\": \\\"Bequest of\\\", \\\"person_date\\\": \\\"\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18536881/\\\", \\\"role_id\\\": \\\"35351537\\\"}], \\\"title\\\": \\\"Sketchbook Folio (USA)\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#ffffff\\\", \\\"closest_css3\\\": \\\"#ffffff\\\", \\\"color\\\": \\\"#ffffff\\\", \\\"closest_crayola\\\": \\\"#ffffff\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"122985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122985_70483437f3163217_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 218}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"122985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122985_70483437f3163217_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 218}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"122985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122985_70483437f3163217_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"122985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122985_70483437f3163217_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 696}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"122985\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/122985_70483437f3163217_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 435}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18803605/\\\", \\\"year_acquired\\\": \\\"1985\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Wine Glass\\\", \\\"medium\\\": \\\"glass\\\", \\\"description\\\": \\\"Conical shaped wine glass with asymmetrical top, one line engraved on goblet\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#343f36\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#312b29\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#606f58\\\", \\\"closest_crayola\\\": \\\"#4a646c\\\"}, {\\\"closest_css4\\\": \\\"#cd5c5c\\\", \\\"closest_css3\\\": \\\"#cd5c5c\\\", \\\"color\\\": \\\"#b24d52\\\", \\\"closest_crayola\\\": \\\"#bf4f51\\\"}, {\\\"closest_css4\\\": \\\"#deb887\\\", \\\"closest_css3\\\": \\\"#deb887\\\", \\\"color\\\": \\\"#e4d067\\\", \\\"closest_crayola\\\": \\\"#f8d568\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"149112\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149112_444a67f41e9760a5_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 208}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"149112\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149112_444a67f41e9760a5_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 208}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"149112\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149112_444a67f41e9760a5_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"149112\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149112_444a67f41e9760a5_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 665}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"149112\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/149112_444a67f41e9760a5_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 415}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18806399/\\\", \\\"year_acquired\\\": \\\"1986\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Card\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#bdb76b\\\", \\\"closest_css3\\\": \\\"#bdb76b\\\", \\\"color\\\": \\\"#b5946a\\\", \\\"closest_crayola\\\": \\\"#cd9575\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#56514d\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#766957\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#a9a9a9\\\", \\\"closest_css3\\\": \\\"#a9a9a9\\\", \\\"color\\\": \\\"#8f9ea3\\\", \\\"closest_crayola\\\": \\\"#979aaa\\\"}, {\\\"closest_css4\\\": \\\"#a0522d\\\", \\\"closest_css3\\\": \\\"#a0522d\\\", \\\"color\\\": \\\"#934f49\\\", \\\"closest_crayola\\\": \\\"#a5694f\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"182086\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182086_40e16c3372072eeb_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 213}, \\\"d\\\": {\\\"height\\\": 320, \\\"image_id\\\": \\\"182086\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182086_40e16c3372072eeb_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 213}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"182086\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182086_40e16c3372072eeb_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 1024, \\\"image_id\\\": \\\"182086\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182086_40e16c3372072eeb_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 683}, \\\"z\\\": {\\\"height\\\": 640, \\\"image_id\\\": \\\"182086\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/182086_40e16c3372072eeb_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 427}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/18806669/\\\", \\\"year_acquired\\\": \\\"1986\\\", \\\"participants\\\": [], \\\"title\\\": \\\"Card\\\", \\\"medium\\\": null, \\\"description\\\": null, \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#708090\\\", \\\"closest_css3\\\": \\\"#708090\\\", \\\"color\\\": \\\"#656985\\\", \\\"closest_crayola\\\": \\\"#757575\\\"}, {\\\"closest_css4\\\": \\\"#f0e68c\\\", \\\"closest_css3\\\": \\\"#f0e68c\\\", \\\"color\\\": \\\"#fae96a\\\", \\\"closest_crayola\\\": \\\"#fddb6d\\\"}, {\\\"closest_css4\\\": \\\"#f0e68c\\\", \\\"closest_css3\\\": \\\"#f0e68c\\\", \\\"color\\\": \\\"#d9d498\\\", \\\"closest_crayola\\\": \\\"#e7c697\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 311, \\\"image_id\\\": \\\"161087\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161087_7e27e8aa64e26185_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 311, \\\"image_id\\\": \\\"161087\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161087_7e27e8aa64e26185_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"161087\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161087_7e27e8aa64e26185_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 996, \\\"image_id\\\": \\\"161087\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161087_7e27e8aa64e26185_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 622, \\\"image_id\\\": \\\"161087\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/161087_7e27e8aa64e26185_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/68731079/\\\", \\\"year_acquired\\\": \\\"1925\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Medallion (England), late 18th century\\\", \\\"medium\\\": \\\"stoneware\\\", \\\"description\\\": \\\"Medallions in style of Wedgwood Jasperware, twelve petaled white flowers on blue ground. Central hole indicates they may have been intended for buttons.\\\\n\\\\nOn card 4\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#c0c0c0\\\", \\\"closest_css3\\\": \\\"#c0c0c0\\\", \\\"color\\\": \\\"#c0bfb5\\\", \\\"closest_crayola\\\": \\\"#cdc5c2\\\"}, {\\\"closest_css4\\\": \\\"#808080\\\", \\\"closest_css3\\\": \\\"#808080\\\", \\\"color\\\": \\\"#99927b\\\", \\\"closest_crayola\\\": \\\"#95918c\\\"}, {\\\"closest_css4\\\": \\\"#556b2f\\\", \\\"closest_css3\\\": \\\"#556b2f\\\", \\\"color\\\": \\\"#574832\\\", \\\"closest_crayola\\\": \\\"#714b23\\\"}, {\\\"closest_css4\\\": \\\"#696969\\\", \\\"closest_css3\\\": \\\"#696969\\\", \\\"color\\\": \\\"#746850\\\", \\\"closest_crayola\\\": \\\"#85754e\\\"}, {\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#342c21\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 262, \\\"image_id\\\": \\\"152402\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/152402_f7d4e6c4b139dd2c_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 262, \\\"image_id\\\": \\\"152402\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/152402_f7d4e6c4b139dd2c_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"152402\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/152402_f7d4e6c4b139dd2c_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 837, \\\"image_id\\\": \\\"152402\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/152402_f7d4e6c4b139dd2c_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 523, \\\"image_id\\\": \\\"152402\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/152402_f7d4e6c4b139dd2c_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/69115281/\\\", \\\"year_acquired\\\": \\\"1931\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Sarah Cooper Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049321\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1859\\\\u20131930\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049321/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Eleanor Garnier Hewitt\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18049325\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"American, 1864\\\\u20131924\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18049325/\\\", \\\"role_id\\\": \\\"35351535\\\"}], \\\"title\\\": \\\"Button, 19th century\\\", \\\"medium\\\": \\\"pearl, shell, brass, copper, glass\\\", \\\"description\\\": \\\"Flat circular button with shanks, varying.\\\\n\\\\nOn card 31\\\", \\\"decade\\\": null},\\n{\\\"colors\\\": [{\\\"closest_css4\\\": \\\"#2f4f4f\\\", \\\"closest_css3\\\": \\\"#2f4f4f\\\", \\\"color\\\": \\\"#403c3a\\\", \\\"closest_crayola\\\": \\\"#414a4c\\\"}], \\\"images\\\": [{\\\"n\\\": {\\\"height\\\": 168, \\\"image_id\\\": \\\"20862\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20862_4a71dc56c7683b99_n.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 168, \\\"image_id\\\": \\\"20862\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20862_4a71dc56c7683b99_d.gif\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"20862\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20862_4a71dc56c7683b99_sq.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 539, \\\"image_id\\\": \\\"20862\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20862_4a71dc56c7683b99_b.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 337, \\\"image_id\\\": \\\"20862\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20862_4a71dc56c7683b99_z.jpg\\\", \\\"is_primary\\\": \\\"1\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 168, \\\"image_id\\\": \\\"20864\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20864_51be43e310fd8951_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 168, \\\"image_id\\\": \\\"20864\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20864_51be43e310fd8951_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"20864\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20864_51be43e310fd8951_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 537, \\\"image_id\\\": \\\"20864\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20864_51be43e310fd8951_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 336, \\\"image_id\\\": \\\"20864\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20864_51be43e310fd8951_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}, {\\\"n\\\": {\\\"height\\\": 215, \\\"image_id\\\": \\\"20863\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20863_3f58efe1e14a16fd_n.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"d\\\": {\\\"height\\\": 215, \\\"image_id\\\": \\\"20863\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20863_3f58efe1e14a16fd_d.gif\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 320}, \\\"sq\\\": {\\\"height\\\": 300, \\\"image_id\\\": \\\"20863\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20863_3f58efe1e14a16fd_sq.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 300}, \\\"b\\\": {\\\"height\\\": 688, \\\"image_id\\\": \\\"20863\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20863_3f58efe1e14a16fd_b.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 1024}, \\\"z\\\": {\\\"height\\\": 430, \\\"image_id\\\": \\\"20863\\\", \\\"url\\\": \\\"https://images.collection.cooperhewitt.org/20863_3f58efe1e14a16fd_z.jpg\\\", \\\"is_primary\\\": \\\"0\\\", \\\"width\\\": 640}}], \\\"url\\\": \\\"https://collection.cooperhewitt.org/objects/85006023/\\\", \\\"year_acquired\\\": \\\"1972\\\", \\\"participants\\\": [{\\\"person_name\\\": \\\"Diament & Co., A.L.\\\", \\\"role_name\\\": \\\"Donor\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35351535/\\\", \\\"person_id\\\": \\\"18046503\\\", \\\"role_display_name\\\": \\\"Donated by\\\", \\\"person_date\\\": \\\"1885\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046503/\\\", \\\"role_id\\\": \\\"35351535\\\"}, {\\\"person_name\\\": \\\"Diament & Co., A.L.\\\", \\\"role_name\\\": \\\"Manufacturer\\\", \\\"role_url\\\": \\\"https://collection.cooperhewitt.org/roles/35236657/\\\", \\\"person_id\\\": \\\"18046503\\\", \\\"role_display_name\\\": \\\"Manufactured by\\\", \\\"person_date\\\": \\\"1885\\\", \\\"person_url\\\": \\\"https://collection.cooperhewitt.org/people/18046503/\\\", \\\"role_id\\\": \\\"35236657\\\"}], \\\"title\\\": \\\"Scenic - Portfolio, Scenic Portfolio, 1972\\\", \\\"medium\\\": \\\"photography, screen print\\\", \\\"description\\\": \\\"Diament Collection Scenic Portfolio; black and white and color photographic illustrations of scenic wallpapers. The scenics include: Les Grandes Chasses, U.S.A. War of Independence, Classic Landscape, Italian Landscape, Views of Sicily, Ionian Landscape, Banks of the Bosphorous, The Ruins - Port of Goats, Isola Bella, Scenic America, Zones Terrestres and Decor Chinois. Other scenic papers are also included, along with room installations. The scenic miniatures are enclosed in a black portfolio with a large gold Diament label.\\\", \\\"decade\\\": \\\"1970\\\"}\\n]\"))", "group": "Ungrouped variables", "templateType": "json", "description": "

From https://github.com/cooperhewitt/collection

"}, "img": {"name": "img", "definition": "image(items[0]['images'][0]['n']['url'])", "group": "Ungrouped variables", "templateType": "anything", "description": "

An image representing one of the items - see how it's displayed in the editor's preview column.

"}}, "advice": "", "tags": [], "metadata": {"licence": "Creative Commons Attribution 4.0 International", "description": "

Load data on some items held in the Cooper Hewitt collection, and show a table of 5 randomly picked items.

"}, "variable_groups": [], "preamble": {"js": "", "css": ".question td {\n text-align: left;\n}\ntd.photo {\n text-align: center;\n}\n.statement {\n padding-left: 0;\n}\n.statement p {\n padding-left: 1em;\n}\n.statement p > .full-width {\n margin-left: -1em;\n}"}, "variablesTest": {"maxRuns": 100, "condition": ""}, "ungrouped_variables": ["data", "eligible_items", "items", "img", "rows", "info"]}]}, {"name": "Custom Feedback", "pickingStrategy": "all-ordered", "pickQuestions": 1, "questions": [{"name": "Josh's copy of Custom marking - answer is a set", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Christian Lawson-Perfect", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/7/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "metadata": {"licence": "Creative Commons Attribution 4.0 International", "description": ""}, "preamble": {"css": "", "js": ""}, "ungrouped_variables": ["f", "ea", "odds", "det", "ec", "eb", "qb", "x0", "x1", "roots"], "rulesets": {}, "statement": "", "variable_groups": [], "tags": [], "functions": {}, "advice": "", "variablesTest": {"condition": "", "maxRuns": 100}, "parts": [{"prompt": "

Give the set of real-valued roots of the equation 

\n

\\[ \\simplify[all,fractionnumbers]{{ea}x^2+{eb}x+{ec}}=0 \\]

\n

Enter your answer as a list of numbers separated by commas and enclosed by square brackets, e.g. [1,2].

\n

If the equation has no roots, enter []

", "variableReplacementStrategy": "originalfirst", "type": "jme", "showPreview": true, "showCorrectAnswer": true, "customName": "", "customMarkingAlgorithm": "", "useCustomName": false, "variableReplacements": [], "valuegenerators": [], "checkingType": "absdiff", "unitTests": [], "checkVariableNames": false, "answer": "{roots}", "checkingAccuracy": 0.001, "vsetRange": [0, 1], "failureRate": 1, "showFeedbackIcon": true, "extendBaseMarkingAlgorithm": true, "vsetRangePoints": 5, "scripts": {"validate": {"script": "// Use the built-in validation function to catch syntax errors and so on\nif(!Numbas.parts.JMEPart.prototype.validate.apply(this)) {\n return false;\n}\n// Give a warning if the student's answer is not a list\nif(this.notAList) {\n this.giveWarning('You must enter a list, i.e. numbers separated by commas and enclosed by square brackets. For example, [1,2].');\n return false;\n}\nreturn true;", "order": "instead"}, "mark": {"script": "// evaluate the student's answer\ntry {\n var list = Numbas.jme.evaluate(this.studentAnswer,this.question.scope);\n}\ncatch(e)\n{\n this.setCredit(0,R('part.jme.answer invalid',e.message));\n return;\n}\n\n// check the answer is a list\nthis.notAList = list.type!='list';\nif(this.notAList) {\n this.setCredit(0,'Your answer is not a list of numbers.');\n return;\n}\n\nvar variables = this.question.scope.variables;\nvar unwrap = Numbas.jme.unwrapValue;\n\n// get the roots of the equation\nvar roots = unwrap(variables.roots);\n\n// unwrap the student's list to a Javascript array of numbers\nvar list = unwrap(list);\n\n// get the coefficients of the equation\nvar ea = unwrap(variables.ea);\nvar eb = unwrap(variables.eb);\nvar ec = unwrap(variables.ec);\n\n// check each root the student gave, keeping track of how many they got right\nvar got = 0;\nvar wrong = [];\nfor(var i=0;iroots.length) {\n this.setCredit(0,\"This equation does not have \"+(list.length)+\" real-valued \"+Numbas.util.pluralise(list.length,'root','roots')+\".\");\n} else if(got0,[],if(det=0,[x0],[x0,x1]))", "group": "Ungrouped variables", "name": "roots"}, "ec": {"templateType": "anything", "description": "", "definition": "x0*x1*f", "group": "Ungrouped variables", "name": "ec"}, "ea": {"templateType": "anything", "description": "", "definition": "f", "group": "Ungrouped variables", "name": "ea"}}}, {"name": "Josh's copy of Julie's copy of Pupil Teacher Ratio randomised", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Julie Crowley", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/113/"}, {"name": "Deirdre Casey", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/681/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "metadata": {"description": "

Simple ratio question with custom marking and partial credit possible

", "licence": "Creative Commons Attribution 4.0 International"}, "statement": "

The ratio of teachers to pupils in a school is 1:{studentrat}

", "variable_groups": [], "preamble": {"css": "", "js": ""}, "variablesTest": {"maxRuns": 100, "condition": ""}, "ungrouped_variables": ["studentrat", "percent"], "variables": {"percent": {"templateType": "anything", "description": "", "name": "percent", "definition": "(1/(studentrat+1))*100", "group": "Ungrouped variables"}, "studentrat": {"templateType": "anything", "description": "", "name": "studentrat", "definition": "Random(17..22)", "group": "Ungrouped variables"}}, "parts": [{"allowFractions": false, "type": "numberentry", "precision": "2", "strictPrecision": false, "correctAnswerStyle": "plain", "showFeedbackIcon": true, "showPrecisionHint": true, "customMarkingAlgorithm": "\nmark:\n apply(validNumber);\n if(isFraction,\n apply(cancelled)\n ,\n apply(correctPrecision)\n );\n switch(\n studentNumber=precround(100/(1+studentrat),studentPrecision),set_credit(1,\"Correct Answer, Well Done!\"),\n studentNumber=precround(100/studentrat,studentPrecision),set_credit(0.5,\"Some good work done but not quite there yet. Have a think about your denominator\"),\n studentNumber=precround(1/(1+studentrat),studentPrecision),set_credit(0.7,\"Is your answer a percentage?\"),\n studentNumber=precround((1+studentrat)/100.0,studentPrecision),set_credit(0.3,\"Something worthwhile here but you need to think further\"),\n set_credit(0,\"Incorrect\") \n )", "marks": "10", "unitTests": [], "showCorrectAnswer": true, "extendBaseMarkingAlgorithm": true, "precisionType": "dp", "minValue": "percent", "scripts": {}, "variableReplacementStrategy": "originalfirst", "notationStyles": ["plain", "en", "si-en"], "precisionMessage": "You have not given your answer to the correct precision.", "mustBeReduced": false, "variableReplacements": [], "precisionPartialCredit": 0, "prompt": "

What percentage of the school population are teachers?

", "maxValue": "percent", "mustBeReducedPC": 0, "correctAnswerFraction": false}], "tags": [], "advice": "

The fraction of the school population that are teachers is $\\frac{1}{1+\\var{studentrat}}$

\n

Convert this to a decimal by multiplying by 100.

\n

$\\frac{1}{\\simplify{1+{studentrat}}}*100=\\var{percent}$

\n

", "type": "question", "functions": {}, "rulesets": {}}, {"name": "Josh's copy of Catch malrules", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Christian Lawson-Perfect", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/7/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "metadata": {"licence": "Creative Commons Attribution 4.0 International", "description": "

Identify when the student gives an expected incorrect answer, and give appropriate feedback as well as partial marks.

"}, "preamble": {"css": "", "js": ""}, "ungrouped_variables": ["test"], "rulesets": {}, "statement": "

This question catches some expected incorrect answers and gives appropriate feedback, along with partial marks.

", "variable_groups": [], "tags": [], "functions": {}, "advice": "", "variablesTest": {"condition": "", "maxRuns": 100}, "parts": [{"prompt": "

Differentiate $f(x) = \\cos(2x)$

\n

$\\var{test}$

", "variableReplacementStrategy": "originalfirst", "type": "jme", "showPreview": true, "showCorrectAnswer": true, "customName": "", "customMarkingAlgorithm": "malrules:\n [\n [\"2sin(2x)\", \"Did you forget a minus sign?\"],\n [\"-sin(2x)\", \"You might have forgotten to apply the chain rule.\"],\n [\"2cos(2x)\", \"It looks like you forgot to differentiate $\\\\cos$.\"],\n [\"1/2sin(2x)\", \"It looks like you integrated instead of differentiating.\"]\n ]\n\n\nparsed_malrules: \n map(\n [\"expr\":parse(x[0]),\"feedback\":x[1]],\n x,\n malrules\n )\n\nagree_malrules (Do the student's answer and the expected answer agree on each of the sets of variable values?):\n map(\n len(filter(not x ,x,map(\n try(\n resultsEqual(unset(question_definitions,eval(studentexpr,vars)),unset(question_definitions,eval(malrule[\"expr\"],vars)),settings[\"checkingType\"],settings[\"checkingAccuracy\"]),\n message,\n false\n ),\n vars,\n vset\n )))Let $y = \\simplify{{a1}x^2 + {b1}x + {c1}}$.

\n

$\\dfrac{\\mathrm{d}y}{\\mathrm{d}x} = $ [[0]]

\n

Enter the coordinates of the stationary point of $y$: $\\big($ [[1]] $, $ [[2]] $\\big)$

\n

$\\dfrac{\\mathrm{d}^2y}{\\mathrm{d}x^2} = $ [[3]]

\n

What is the nature of the stationary point of $y$?

\n

[[4]]

", "marks": 0, "showCorrectAnswer": true, "extendBaseMarkingAlgorithm": true, "gaps": [{"failureRate": 1, "variableReplacementStrategy": "originalfirst", "unitTests": [], "vsetRangePoints": 5, "useCustomName": false, "checkVariableNames": false, "answer": "2*{a1}*x+{b1}", "valuegenerators": [{"value": "", "name": "x"}], "marks": 1, "showCorrectAnswer": true, "showPreview": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "checkingType": "absdiff", "customName": "", "type": "jme", "vsetRange": [0, 1], "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "showFeedbackIcon": true}, {"failureRate": 1, "marks": 1, "showPreview": false, "checkingType": "absdiff", "customName": "", "showFeedbackIcon": true, "type": "jme", "vsetRange": [0, 1], "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "vsetRangePoints": 5, "answerSimplification": "fractionnumbers", "answer": "{sx1}", "valuegenerators": [], "showCorrectAnswer": true, "checkVariableNames": false, "checkingAccuracy": 0.001, "variableReplacements": [], "scripts": {}}, {"failureRate": 1, "marks": 1, "showPreview": false, "checkingType": "absdiff", "customName": "", "showFeedbackIcon": true, "type": "jme", "vsetRange": [0, 1], "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "vsetRangePoints": 5, "answerSimplification": "fractionnumbers", "answer": "{sy1}", "valuegenerators": [], "showCorrectAnswer": true, "checkVariableNames": false, "checkingAccuracy": 0.001, "variableReplacements": [], "scripts": {}}, {"failureRate": 1, "variableReplacementStrategy": "originalfirst", "unitTests": [], "vsetRangePoints": 5, "useCustomName": false, "checkVariableNames": false, "answer": "{2a1}", "valuegenerators": [], "marks": 1, "showCorrectAnswer": true, "showPreview": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "checkingType": "absdiff", "customName": "", "type": "jme", "vsetRange": [0, 1], "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "unitTests": [], "choices": ["

Maximum

", "

Minimum

", "

Point of inflection

"], "useCustomName": false, "displayType": "radiogroup", "shuffleChoices": false, "showCellAnswerState": true, "marks": 0, "showCorrectAnswer": true, "maxMarks": 0, "extendBaseMarkingAlgorithm": true, "distractors": ["", "", ""], "customName": "", "type": "1_n_2", "matrix": [0, 1, 0], "minMarks": 0, "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "displayColumns": 0, "showFeedbackIcon": true}], "customName": "", "type": "gapfill", "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "sortAnswers": false, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "prompt": "

Let $z = \\simplify{{a2}x^2+{b2}x+{c2}}$.

\n

$\\dfrac{\\mathrm{d}z}{\\mathrm{d}x} = $ [[0]]

\n

Enter the coordinates of the stationary point of $z$: $\\big($ [[1]] $, $ [[2]] $\\big)$

\n

$\\dfrac{\\mathrm{d}^2z}{\\mathrm{d}x^2} = $ [[3]]

\n

What is the nature of the stationary point of $z$?

\n

[[4]]

", "marks": 0, "showCorrectAnswer": true, "extendBaseMarkingAlgorithm": true, "gaps": [{"failureRate": 1, "variableReplacementStrategy": "originalfirst", "unitTests": [], "vsetRangePoints": 5, "useCustomName": false, "checkVariableNames": false, "answer": "2*{a2}x+{b2}", "valuegenerators": [{"value": "", "name": "x"}], "marks": 1, "showCorrectAnswer": true, "showPreview": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "checkingType": "absdiff", "customName": "", "type": "jme", "vsetRange": [0, 1], "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "showFeedbackIcon": true}, {"failureRate": 1, "marks": 1, "showPreview": false, "checkingType": "absdiff", "customName": "", "showFeedbackIcon": true, "type": "jme", "vsetRange": [0, 1], "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "vsetRangePoints": 5, "answerSimplification": "fractionnumbers", "answer": "{sx2}", "valuegenerators": [], "showCorrectAnswer": true, "checkVariableNames": false, "checkingAccuracy": 0.001, "variableReplacements": [], "scripts": {}}, {"failureRate": 1, "marks": 1, "showPreview": false, "checkingType": "absdiff", "customName": "", "showFeedbackIcon": true, "type": "jme", "vsetRange": [0, 1], "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "vsetRangePoints": 5, "answerSimplification": "fractionnumbers", "answer": "{sy2}", "valuegenerators": [], "showCorrectAnswer": true, "checkVariableNames": false, "checkingAccuracy": 0.001, "variableReplacements": [], "scripts": {}}, {"failureRate": 1, "variableReplacementStrategy": "originalfirst", "unitTests": [], "vsetRangePoints": 5, "useCustomName": false, "checkVariableNames": false, "answer": "2{a2}", "valuegenerators": [], "marks": 1, "showCorrectAnswer": true, "showPreview": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "checkingType": "absdiff", "customName": "", "type": "jme", "vsetRange": [0, 1], "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "unitTests": [], "choices": ["

Maximum

", "

Minimum

", "

Point of inflection

"], "useCustomName": false, "displayType": "radiogroup", "shuffleChoices": false, "showCellAnswerState": true, "marks": 0, "showCorrectAnswer": true, "maxMarks": 0, "extendBaseMarkingAlgorithm": true, "distractors": ["", "", ""], "customName": "", "type": "1_n_2", "matrix": [1, 0, 0], "minMarks": 0, "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "displayColumns": 0, "showFeedbackIcon": true}], "customName": "", "type": "gapfill", "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "sortAnswers": false, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "prompt": "

Let $t = \\var{m}x^3+\\var{q}$.

\n

$\\dfrac{\\mathrm{d}t}{\\mathrm{d}x} = $ [[0]]

\n

Enter the coordinates of the stationary point of $t$: $\\big($ [[1]] $, $ [[2]] $\\big)$

\n

$\\dfrac{\\mathrm{d}^2t}{\\mathrm{d}x^2} = $ [[3]]

\n

What is the nature of the stationary point of $t$?

\n

[[4]]

", "marks": 0, "showCorrectAnswer": true, "extendBaseMarkingAlgorithm": true, "gaps": [{"failureRate": 1, "variableReplacementStrategy": "originalfirst", "unitTests": [], "vsetRangePoints": 5, "useCustomName": false, "checkVariableNames": false, "answer": "3*{m}*x^2", "valuegenerators": [{"value": "", "name": "x"}], "marks": 1, "showCorrectAnswer": true, "showPreview": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "checkingType": "absdiff", "customName": "", "type": "jme", "vsetRange": [0, 1], "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "showFeedbackIcon": true}, {"failureRate": 1, "marks": 1, "showPreview": false, "checkingType": "absdiff", "customName": "", "showFeedbackIcon": true, "type": "jme", "vsetRange": [0, 1], "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "vsetRangePoints": 5, "answerSimplification": "fractionnumbers", "answer": "0", "valuegenerators": [], "showCorrectAnswer": true, "checkVariableNames": false, "checkingAccuracy": 0.001, "variableReplacements": [], "scripts": {}}, {"failureRate": 1, "marks": 1, "showPreview": false, "checkingType": "absdiff", "customName": "", "showFeedbackIcon": true, "type": "jme", "vsetRange": [0, 1], "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "vsetRangePoints": 5, "answerSimplification": "fractionnumbers", "answer": "{q}", "valuegenerators": [], "showCorrectAnswer": true, "checkVariableNames": false, "checkingAccuracy": 0.001, "variableReplacements": [], "scripts": {}}, {"failureRate": 1, "variableReplacementStrategy": "originalfirst", "unitTests": [], "vsetRangePoints": 5, "useCustomName": false, "checkVariableNames": false, "answer": "6*{m}*x", "valuegenerators": [{"value": "", "name": "x"}], "marks": 1, "showCorrectAnswer": true, "showPreview": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "checkingType": "absdiff", "customName": "", "type": "jme", "vsetRange": [0, 1], "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "showFeedbackIcon": true}, {"variableReplacementStrategy": "originalfirst", "unitTests": [], "choices": ["

Maximum

", "

Minimum

", "

Point of inflection

"], "useCustomName": false, "displayType": "radiogroup", "shuffleChoices": false, "showCellAnswerState": true, "marks": 0, "showCorrectAnswer": true, "maxMarks": 0, "extendBaseMarkingAlgorithm": true, "distractors": ["", "", ""], "customName": "", "type": "1_n_2", "matrix": [0, 0, 1], "minMarks": 0, "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "displayColumns": 0, "showFeedbackIcon": true}], "customName": "", "type": "gapfill", "variableReplacements": [], "customMarkingAlgorithm": "", "scripts": {}, "sortAnswers": false, "showFeedbackIcon": true}], "variable_groups": [], "ungrouped_variables": ["a1", "sx1", "m", "sy1", "q", "sy2", "sx2", "a2", "b1", "b2", "c2", "c1"], "functions": {}, "rulesets": {}, "variablesTest": {"maxRuns": 100, "condition": ""}, "variables": {"sx1": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "sx1", "definition": "-b1/(2*a1)"}, "a2": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "a2", "definition": "random(-5..-2)"}, "b2": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "b2", "definition": "random(-6..6 except (-1..1))"}, "sx2": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "sx2", "definition": "-b2/(2*a2)"}, "m": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "m", "definition": "random(2,3,4)"}, "c1": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "c1", "definition": "random(-10..10 except (-1..1))"}, "b1": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "b1", "definition": "random(-6..6 except (-1..1))"}, "c2": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "c2", "definition": "random(-10..10 except (-1..1))"}, "sy2": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "sy2", "definition": "a2*(sx2^2)+b2*sx2+c2"}, "a1": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "a1", "definition": "random(2..5)"}, "sy1": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "sy1", "definition": "a1*(sx1^2)+b1*sx1+c1"}, "q": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "q", "definition": "random(-10..10 except 0)"}}, "advice": "

a)

\n

$\\dfrac{\\mathrm{d}y}{\\mathrm{d}x} = \\simplify{{2a1}x+{b1}}$.

\n

To find the $x$-coordinate of the stationary point, solve $\\frac{\\mathrm{d}y}{\\mathrm{d}x} = 0$ for $x$:

\n

\\[ \\begin{align} \\frac{\\mathrm{d}y}{\\mathrm{d}x} = \\simplify{{2a1}x + {b1}} &= 0 \\\\ x &= \\simplify[all,fractionNumbers]{{sx1}} \\end{align} \\]

\n

Find the $y$-coordinate by substituting this value of $x$ into the definition of $y(x)$:

\n

\\[\\begin{align} \\simplify[fractionnumbers]{y({sx1})} &= \\simplify[basic,fractionnumbers]{{a1}{sx1}^2+{b1}{sx1}+{c1}} \\\\ &= \\simplify[fractionnumbers]{{sy1}} \\end{align}\\]

\n

Finally, to determine the nature of the stationary point, look at $\\frac{\\mathrm{d}^2y}{\\mathrm{d}x^2}$ at $x = \\simplify[fractionnumbers]{{sx1}}$.

\n

\\[ \\frac{\\mathrm{d}^2y}{\\mathrm{d}x^2} = \\simplify{{2*a1}} \\]

\n

This is positive, so the stationary point is a minimum.

\n

b)

\n

$\\dfrac{\\mathrm{d}z}{\\mathrm{d}x} = \\simplify{{2a2}x+{b2}}$.

\n

To find the $x$-coordinate of the stationary point, solve $\\frac{\\mathrm{d}z}{\\mathrm{d}x} = 0$ for $x$:

\n

\\[ \\begin{align} \\frac{\\mathrm{d}z}{\\mathrm{d}x} = \\simplify{{2a2}x + {b2}} &= 0 \\\\ x &= \\simplify[all,fractionNumbers]{{sx2}} \\end{align} \\]

\n

Find the $y$-coordinate by substituting this value of $x$ into the definition of $z(x)$:

\n

\\[\\begin{align} \\simplify[fractionnumbers]{z({sx1})} &= \\simplify[basic,fractionnumbers]{{a2}{sx2}^2+{b2}{sx2}+{c2}} \\\\ &= \\simplify[fractionnumbers]{{sy2}} \\end{align}\\]

\n

Finally, to determine the nature of the stationary point, look at $\\frac{\\mathrm{d}^2z}{\\mathrm{d}x^2}$ at $x = \\simplify[fractionnumbers]{{sx2}}$.

\n

\\[ \\frac{\\mathrm{d}^2z}{\\mathrm{d}x^2} = \\simplify{{2*a2}} \\]

\n

This is negative, so the stationary point is a maximum.

\n

c)

\n

$\\dfrac{\\mathrm{d}t}{\\mathrm{d}x} = \\simplify{{3m}x^2}$.

\n

To find the $x$-coordinate of the stationary point, solve $\\frac{\\mathrm{d}t}{\\mathrm{d}x} = 0$ for $x$:

\n

\\[ \\begin{align} \\frac{\\mathrm{d}t}{\\mathrm{d}x} = \\simplify{{3m}x^2} &= 0 \\\\ x &= 0 \\end{align} \\]

\n

Find the $y$-coordinate by substituting this value of $x$ into the definition of $t(x)$:

\n

\\[\\begin{align} z(0) &= \\simplify[basic,fractionnumbers]{{m}*0^3 + {q}} \\\\ &= \\var{q} \\end{align}\\]

\n

Finally, to determine the nature of the stationary point, look at $\\frac{\\mathrm{d}^2t}{\\mathrm{d}x^2}$ at $x = 0$.

\n

\\[ \\frac{\\mathrm{d}^2t}{\\mathrm{d}x^2} = \\simplify{{6m}x} \\]

\n

\\[ \\left.\\frac{\\mathrm{d}^2t}{\\mathrm{d}x^2} \\right\\rvert_{x=0} = \\var{6m} \\times 0 = 0 \\]

\n

This is zero, so the stationary point is a point of inflection.

", "statement": "

For the following, find the stationary point and determine its nature. For your answers, where appropriate, write your solutions as fractions, NOT decimals, and cancel down where possible.

", "preamble": {"js": "", "css": ""}}, {"name": "Josh's copy of Solid phase change, radiation, entropy", "extensions": ["jsxgraph"], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Tom Stallard", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/841/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "metadata": {"description": "

A random heating question, that randomly picks a material, and then heats it through either one or two phase changes, provides an example graph of the heating with scaled temperature ranges (though not with scaled latent and specific heats), and a table with the suitable constants.

", "licence": "Creative Commons Attribution 4.0 International"}, "advice": "

a)

\n

$Q = m L_H$

\n

$Q = \\var{mass} \\times \\var{phase1_latentheat} = \\var{fusionheat}$

\n

\n

So the energy needed to melt the cube is {sigformat(fh_kj,3)} kJ.

\n

\n

b)

\n

$P_{net} = e \\sigma A \\Delta T^4$

\n

$P_{net} = e \\sigma A (T_1^4 - T_2^4)$

\n

where A is the surface area of the cube: $A = 6x^2 = 6 \\times (\\var{xx}^2) = 6*\\var{xx^2} = \\var{area}$

\n

$P_{net} = \\var{emissivity} \\times \\var{ksb2}\\times10^{-8} \\times \\var{area} \\times (\\var{phase1_temp}^4 - \\var{oven_temp}^4) = \\var{-power}$

\n

\n

So the net power emitted by the cube is {sigformat(-p_kw,3)} W , and the net power absorbed by the block is {sigformat(p_kw,3)} W.

\n

\n

c)

\n

$t = \\frac{E}{P}$

\n

$t = \\frac{\\var{fusionheat}}{\\var{sigformat(power,5)}} = \\var{time} $

\n

\n

So the time the cube takes to melt is {sigformat(time,3)} seconds.

\n

\n

d)

\n

$\\lambda_{max} = \\frac{K_W}{T}$

\n

$\\lambda_{max} = \\frac{\\var{kw}}{\\var{phase1_temp}} = \\var{wave}$

\n

\n

So the wavelength at which the cube's radiation is at a maximum is {sigformat(wave,3)} microns.

", "variable_groups": [{"name": "switcharoo values", "variables": []}, {"name": "kg or g", "variables": ["mass_string"]}, {"name": "Material values", "variables": ["mat_string", "container_string", "phase1_temp", "phase1_latentheat", "emissivity", "density"]}, {"name": "Energy", "variables": ["fusionheat", "fh_kj", "p_kw", "time", "power", "tt", "pp", "x", "xx", "xxx", "area", "ksb", "ksb2", "kw", "wave"]}, {"name": "Lists of values", "variables": ["material_list", "fusion_lh_list", "fusion_temp_list", "material_emissivity", "material_density"]}, {"name": "Random variables", "variables": ["wat_mat", "start_temp", "oven_start_temp", "mass", "oven_temp"]}], "preamble": {"css": "", "js": ""}, "variablesTest": {"maxRuns": 100, "condition": ""}, "variables": {"mass": {"templateType": "anything", "description": "", "definition": "siground(xxx*density/1000,3)", "name": "mass", "group": "Random variables"}, "xxx": {"templateType": "anything", "description": "", "definition": "x^3", "name": "xxx", "group": "Energy"}, "phase1_temp": {"templateType": "anything", "description": "", "definition": "fusion_temp_list[wat_mat]", "name": "phase1_temp", "group": "Material values"}, "ksb": {"templateType": "anything", "description": "", "definition": "5.67 * 10^-8", "name": "ksb", "group": "Energy"}, "time": {"templateType": "anything", "description": "", "definition": "fh_kj/p_kw", "name": "time", "group": "Energy"}, "material_list": {"templateType": "anything", "description": "", "definition": "['Nickel','Platinum','Copper','Gold','Iron','Silver','Aluminium']", "name": "material_list", "group": "Lists of values"}, "xx": {"templateType": "anything", "description": "", "definition": "x/100", "name": "xx", "group": "Energy"}, "density": {"templateType": "anything", "description": "", "definition": "material_density[wat_mat]", "name": "density", "group": "Material values"}, "fusion_lh_list": {"templateType": "anything", "description": "", "definition": "[17500,19300,207000,63000,272000,111000,398000]", "name": "fusion_lh_list", "group": "Lists of values"}, "wat_mat": {"templateType": "anything", "description": "", "definition": "random(0..3)", "name": "wat_mat", "group": "Random variables"}, "x": {"templateType": "anything", "description": "", "definition": "random(3..9)", "name": "x", "group": "Energy"}, "container_string": {"templateType": "anything", "description": "", "definition": "if (wat_mat < 1.5,'flask','crucible')", "name": "container_string", "group": "Material values"}, "phase1_latentheat": {"templateType": "anything", "description": "", "definition": "fusion_lh_list[wat_mat]", "name": "phase1_latentheat", "group": "Material values"}, "question_string": {"templateType": "anything", "description": "", "definition": "if(switcharoo=0,' for {time} hours, calculate the power of the heater in W, to three significant figures',' with a power of {power} W, calculate how long the {mat_string} took to melt in hours, to three significant figures')", "name": "question_string", "group": "Ungrouped variables"}, "mass_string": {"templateType": "anything", "description": "", "definition": "if(mass<1,dpformat(mass*1000,0)+' g',dpformat(mass,2)+' kg')", "name": "mass_string", "group": "kg or g"}, "tt": {"templateType": "anything", "description": "", "definition": "fh_kj*1000/(power*60*60)", "name": "tt", "group": "Energy"}, "answer": {"templateType": "anything", "description": "", "definition": "if(switcharoo=0,pp,tt)", "name": "answer", "group": "Ungrouped variables"}, "kw": {"templateType": "anything", "description": "", "definition": "2898", "name": "kw", "group": "Energy"}, "switcharoo": {"templateType": "anything", "description": "", "definition": "random(0,1)", "name": "switcharoo", "group": "Ungrouped variables"}, "area": {"templateType": "anything", "description": "", "definition": "6*(xx^2)", "name": "area", "group": "Energy"}, "pp": {"templateType": "anything", "description": "", "definition": "fusionheat/(time*60*60)", "name": "pp", "group": "Energy"}, "emissivity": {"templateType": "anything", "description": "", "definition": "material_emissivity[wat_mat]", "name": "emissivity", "group": "Material values"}, "mat_string": {"templateType": "anything", "description": "", "definition": "material_list[wat_mat]", "name": "mat_string", "group": "Material values"}, "fh_kj": {"templateType": "anything", "description": "", "definition": "fusionheat/1000", "name": "fh_kj", "group": "Energy"}, "material_emissivity": {"templateType": "anything", "description": "", "definition": "[0.31,\n 0.05,\n 0.22,\n 0.14,\n 0.74,\n 0.06,\n 0.19]", "name": "material_emissivity", "group": "Lists of values"}, "p_kw": {"templateType": "anything", "description": "", "definition": "power/1000", "name": "p_kw", "group": "Energy"}, "oven_temp": {"templateType": "anything", "description": "", "definition": "siground(phase1_temp*random(1.1..1.6#0.01),4)", "name": "oven_temp", "group": "Random variables"}, "oven_start_temp": {"templateType": "anything", "description": "", "definition": "oven_temp-273.15", "name": "oven_start_temp", "group": "Random variables"}, "fusion_temp_list": {"templateType": "anything", "description": "", "definition": "[1728,2045,1357,1337,1811,1235,933]", "name": "fusion_temp_list", "group": "Lists of values"}, "fusionheat": {"templateType": "anything", "description": "", "definition": "mass*phase1_latentheat", "name": "fusionheat", "group": "Energy"}, "wave": {"templateType": "anything", "description": "

wave

", "definition": "kw/phase1_temp", "name": "wave", "group": "Energy"}, "power": {"templateType": "anything", "description": "", "definition": "(emissivity*ksb*area*oven_temp^4)-(emissivity*ksb*area*phase1_temp^4)", "name": "power", "group": "Energy"}, "start_temp": {"templateType": "anything", "description": "", "definition": "phase1_temp-273.15", "name": "start_temp", "group": "Random variables"}, "material_density": {"templateType": "anything", "description": "

g/cm3

", "definition": "[8.91,21.1,8.97,19.32,7.87,10.49,2.70]", "name": "material_density", "group": "Lists of values"}, "ksb2": {"templateType": "anything", "description": "", "definition": "ksb*10^8", "name": "ksb2", "group": "Energy"}}, "functions": {"twostep": {"definition": "// Takes variables\n\n// showing K or C?\nk_c = Numbas.jme.unwrapValue(scope.variables.k_c_switch);\n\nif (k_c = 0) {\n var k_c_corr =0;\n var k_c_str=\"K\";\n} else {\n var k_c_corr =-273;\n var k_c_str=\"\u00b0C\";\n}\n\n//Set values\nst = Numbas.jme.unwrapValue(scope.variables.start_temp)+k_c_corr;\net = Numbas.jme.unwrapValue(scope.variables.end_temp)+k_c_corr;\npt1 = Numbas.jme.unwrapValue(scope.variables.phase1_temp)+k_c_corr;\npt2 = Numbas.jme.unwrapValue(scope.variables.phase2_temp)+k_c_corr;\n\n\n// The function provided by the JSXGraph extension wraps the board up in\n// a div tag so that it's easier to embed in the page.\nvar div = Numbas.extensions.jsxgraph.makeBoard('500px','300px',\n {boundingBox: [-5,et+(et-st)/10.,28,st-(et-st)/10.],\n axis: false,\n showNavigation: false,\n grid: false\n });\n\n// div.board is the object created by JSXGraph, which you use to\n// manipulate elements\nvar board = div.board;\n\n\n\n// create the x-axis.\n//var xaxis = board.create('line',[[0,0],[1,0]], {strokeColor: 'black', fixed: true});\n//var xticks = board.create('ticks',[xaxis,20],{\n// drawLabels: true,\n// minorTicks: 0\n//});\n\n// create the y-axis\n\nvar yaxis = board.create('line',[[0,0],[0,1]], { strokeColor: 'black', fixed: true });\nvar yticks = board.create('ticks',[yaxis,parseInt((et-st)/50.)*10],{\ndrawZero:true,\ndrawLabels: true,\nlabel: {offset: [20, 0]},\nminorTicks: 0\n});\n\n\n// full size of the five slopes\nvar allslope=(et-st);\nvar s1sz=(8*(pt1-st)/allslope);\nvar s3sz=(8*(pt2-pt1)/allslope);\nvar s5sz=(8*(et-pt2)/allslope);\n\n\n//\n//slope 1\nvar slope1 = board.create('line',[[4,st],[s1sz+4,pt1]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope2 = board.create('line',[[s1sz+4,pt1],[s1sz+8,pt1]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope3 = board.create('line',[[s1sz+8,pt1],[s1sz+s3sz+8,pt2]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope4 = board.create('line',[[s1sz+s3sz+8,pt2],[s1sz+s3sz+12,pt2]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope5 = board.create('line',[[s1sz+s3sz+12,pt2],[s1sz+s3sz+s5sz+12,et]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n//var slope6 = board.create('line',[[4,pt1],[20,pt2]], {dash:2,straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\nvar dash1 = board.create('line',[[s1sz+4,st-10],[s1sz+4,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash2 = board.create('line',[[s1sz+8,st-10],[s1sz+8,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash3 = board.create('line',[[s1sz+s3sz+8,st-10],[s1sz+s3sz+8,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash4 = board.create('line',[[s1sz+s3sz+12,st-10],[s1sz+s3sz+12,et+10]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n\n//label the y-axis\n var label = board.create('text',[-2,(et+st)/2,k_c_str]);\n\n\n// and return the container div\nreturn div;", "type": "html", "parameters": [], "language": "javascript"}, "onestep": {"definition": "// Takes variables\n\n// showing K or C?\nk_c = Numbas.jme.unwrapValue(scope.variables.k_c_switch);\n\nif (k_c = 0) {\n var k_c_corr =0;\n var k_c_str=\"K\";\n} else {\n var k_c_corr =-273;\n var k_c_str=\"\u00b0C\";\n}\n\n//Set values\nst = Numbas.jme.unwrapValue(scope.variables.start_temp)+k_c_corr;\net = Numbas.jme.unwrapValue(scope.variables.end_temp)+k_c_corr;\npt = Numbas.jme.unwrapValue(scope.variables.phase_temp)+k_c_corr;\n\n\n// The function provided by the JSXGraph extension wraps the board up in\n// a div tag so that it's easier to embed in the page.\nvar div = Numbas.extensions.jsxgraph.makeBoard('500px','300px',\n {boundingBox: [-4,et+10,20,st-10],\n axis: false,\n showNavigation: false,\n grid: false\n });\n\n// div.board is the object created by JSXGraph, which you use to\n// manipulate elements\nvar board = div.board;\n\n\n\n// create the x-axis.\n//var xaxis = board.create('line',[[0,0],[1,0]], {strokeColor: 'black', fixed: true});\n//var xticks = board.create('ticks',[xaxis,20],{\n// drawLabels: true,\n// minorTicks: 0\n//});\n\n// create the y-axis\nvar yaxis = board.create('line',[[0,0],[0,1]], { strokeColor: 'black', fixed: true });\nvar yticks = board.create('ticks',[yaxis,parseInt((et-st)/50.)*10],{\ndrawZero:true,\ndrawLabels: true,\nlabel: {offset: [20, 0]},\nminorTicks: 0\n});\n\n//\n//slope 1\nvar slope1 = board.create('line',[[4,st],[((pt-st)/((pt-st)+(et-pt))*8)+4,pt]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope2 = board.create('line',[[((pt-st)/((pt-st)+(et-pt))*8)+4,pt],[16-((et-pt)/((pt-st)+(et-pt))*8),pt]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar slope3 = board.create('line',[[16-((et-pt)/((pt-st)+(et-pt))*8),pt],[16,et]], {straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\nvar dash1 = board.create('line',[[((pt-st)/((pt-st)+(et-pt))*8)+4,st-5],[((pt-st)/((pt-st)+(et-pt))*8)+4,et+5]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\nvar dash2 = board.create('line',[[16-((et-pt)/((pt-st)+(et-pt))*8),st-5],[16-((et-pt)/((pt-st)+(et-pt))*8),et+5]], {dash:2, strokewidth:1, straightFirst:false, straightLast:false, strokeColor: 'black', fixed: true });\n\n\n//label the y-axis\n var label = board.create('text',[-2,(et+st)/2,k_c_str]);\n\n\n// and return the container div\nreturn div;", "type": "html", "parameters": [], "language": "javascript"}}, "tags": [], "parts": [{"notationStyles": ["plain", "en", "si-en"], "allowFractions": false, "type": "numberentry", "mustBeReduced": false, "mustBeReducedPC": 0, "variableReplacements": [], "correctAnswerFraction": false, "showFeedbackIcon": true, "maxValue": "siground(fh_kj,3)+siground(abs(fh_kj/100),3)", "correctAnswerStyle": "plain", "marks": "1", "showCorrectAnswer": true, "minValue": "siground(fh_kj,3)-siground(abs(fh_kj/100),3)", "scripts": {}, "prompt": "

Calculate the total heat absorbed by the {Mat_string} as it melts in kJ, to three significant figures.

", "variableReplacementStrategy": "originalfirst"}, {"notationStyles": ["plain", "en", "si-en"], "allowFractions": false, "type": "numberentry", "mustBeReduced": false, "mustBeReducedPC": 0, "variableReplacements": [], "correctAnswerFraction": false, "showFeedbackIcon": true, "maxValue": "siground(p_kw,3)+siground(abs(p_kw/100),3)", "correctAnswerStyle": "plain", "marks": "1", "showCorrectAnswer": true, "minValue": "siground(p_kw,3)-siground(abs(p_kw/100),3)", "scripts": {}, "prompt": "

Calculate the net power absorbed by the {mat_string} from radiation in kW, to three significant figures.

", "variableReplacementStrategy": "originalfirst"}, {"notationStyles": ["plain", "en", "si-en"], "allowFractions": false, "type": "numberentry", "mustBeReduced": false, "mustBeReducedPC": 0, "variableReplacements": [{"must_go_first": true, "part": "p0", "variable": "fh_kj"}, {"must_go_first": true, "part": "p1", "variable": "p_kw"}], "correctAnswerFraction": false, "showFeedbackIcon": true, "maxValue": "siground(time,3)+siground(abs(time/100),3)", "correctAnswerStyle": "plain", "marks": 1, "showCorrectAnswer": true, "minValue": "siground(time,3)-siground(abs(time/100),3)", "scripts": {}, "prompt": "

Using the values from part a) and b), calculate how long the block took to melt in seconds, to three significant figures

", "variableReplacementStrategy": "originalfirst"}, {"notationStyles": ["plain", "en", "si-en"], "allowFractions": false, "type": "numberentry", "mustBeReduced": false, "mustBeReducedPC": 0, "variableReplacements": [], "correctAnswerFraction": false, "showFeedbackIcon": true, "maxValue": "siground(wave,3)+siground(abs(wave/100),3)", "correctAnswerStyle": "plain", "marks": 1, "showCorrectAnswer": true, "minValue": "siground(wave,3)-siground(abs(wave/100),3)", "scripts": {}, "prompt": "

At what wavelength does the cube shine most brightly as it melts, in microns, to three significant figures?

", "variableReplacementStrategy": "originalfirst"}], "statement": "

\n

A {mass_string} cube of solid {Mat_string} measures {x} cm along each side. It has a temperature of {phase1_temp} K, the fusion temperature of {mat_string}.  The cube sits in an oven with a temperature of {oven_temp} K and is heated only by radiation (no conduction or convection) until it entirely melts.

\n

Assume Stefan's constant $\\sigma  = \\var{ksb2}\\times10^{-8}$  $W m^{-2}K^{-4}$ and Wien's displacement constant $k_W = \\var{kw}$ $\\mu mK$.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Latent Heat of fusionemissivity
{Mat_string}{phase1_latentheat} Jkg<sup>-1</sup>{emissivity}
", "type": "question", "ungrouped_variables": ["switcharoo", "answer", "question_string"], "rulesets": {}}, {"name": "Josh's copy of Decide if variable is binomial or Poisson, from description,", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Newcastle University Mathematics and Statistics", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/697/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "parts": [{"type": "m_n_x", "choices": ["{ch1}", "{ch2}", "{ch3}"], "maxAnswers": 0, "minAnswers": 0, "maxMarks": 0, "showCorrectAnswer": true, "marks": 0, "matrix": "mm", "layout": {"type": "all", "expression": ""}, "displayType": "radiogroup", "shuffleAnswers": false, "scripts": {}, "shuffleChoices": true, "answers": ["Binomial Distribution", "Poisson Distribution"], "warningType": "none", "minMarks": 0}], "variable_groups": [], "statement": "\n

Which of the following random variables could be modelled with a binomial distribution and which could be modelled with a Poisson distribution?

\n

You will lose 1 mark for every incorrect answer. The minimum mark is 0.

\n ", "type": "question", "showQuestionGroupNames": false, "tags": ["ACC1012", "checked2015", "MAS1403"], "rulesets": {}, "metadata": {"notes": "

06/12/2013

\n

Replaced a Poisson scenario that wasn't strictly Poisson. (AJY)

\n

31/12/2012:

\n


Checked choices, OK. Added tag sc as examples can be easily added to via the arrays b and pd.

", "description": "

Given descriptions of  3 random variables, decide whether or not each is from a Poisson or Binomial distribution.

", "licence": "Creative Commons Attribution 4.0 International"}, "ungrouped_variables": ["p2", "p3", "b", "mm", "ch3", "ch1", "ch2", "p1", "t", "pd"], "functions": {}, "preamble": {"js": "", "css": ""}, "advice": "

No solution given.

", "variables": {"t": {"description": "", "definition": "random(0,1)", "name": "t", "templateType": "anything", "group": "Ungrouped variables"}, "p3": {"description": "", "definition": "random(0..abs(pd)-1)", "name": "p3", "templateType": "anything", "group": "Ungrouped variables"}, "mm": {"description": "", "definition": "[[1,-1],[1-2*t,2*t-1],[-1,1]]", "name": "mm", "templateType": "anything", "group": "Ungrouped variables"}, "p1": {"description": "", "definition": "random(0..abs(b)-1)", "name": "p1", "templateType": "anything", "group": "Ungrouped variables"}, "ch2": {"description": "", "definition": "switch(t=0,b[p2],pd[p2])", "name": "ch2", "templateType": "anything", "group": "Ungrouped variables"}, "b": {"description": "", "definition": "\n[\"20% of eggs from a family-run farm are bad. X is the number of bad eggs in a box of a dozen.\",\n \"A salesperson has a 50% chance of making a sale on a customer visit and she arranges 10 visits in a day. Let X be the number of sales that day.\",\n \"30% of items off a factory production line have been shown to have defects. Let A be the number of defectives in a box of 20 such items.\",\n \"One in ten new small businesses in the north-east goes bust within a year. Let X be the number of small businesses that fail in the next year out of thirty that have been set up.\",\n \"The probability that an office photocopier will fail on any given day is 0.15. The human resources office at Newcastle University has ten such photocopiers; Let Y be the number of photocopiers that fail today.\",\n \"Callers to the Vodaphone call centre will get through to an operator immediately with probability 0.25. X is the number of callers that speak to an operator immediately out of thirty such callers.\",\n \"Experience has shown that two in every ten components produced by a circuitboard company will be defective. A random sample of 100 components is inspected for defects, and D is the number of defectives in this sample.\"]\n", "name": "b", "templateType": "anything", "group": "Ungrouped variables"}, "pd": {"description": "", "definition": "\n[\"Y is the number of flights sold per hour by an online travel agency. This travel agency usually sells 10 flights per hour.\",\n \"X is the number of cars sold by a local garage in a month. This garage usually sells about 10 cars per month.\",\n \"The number of calls, Y, received at the British Passport Office in Durham occurs at the rate of 10 a minute.\",\n \"We are interested in X, the number of machine breakdowns in a day. Such breakdowns at a particular IT company occur at a rate of eight per week.\",\n \"X is the number of e-mails arriving in your inbox in a one hour period. On average you receive 3 e-mails per hour.\",\n \"On average, three patients arrive at a local Accident and Emergency department every hour. We count the number, X, of patients in an hour period.\",\n \"About five customers arrive at a fish shop queue every ten minutes during the lunch time rush. We count X, the number of customers arriving during the lunch time rush.\"]\n", "name": "pd", "templateType": "anything", "group": "Ungrouped variables"}, "ch3": {"description": "", "definition": "pd[p3]", "name": "ch3", "templateType": "anything", "group": "Ungrouped variables"}, "ch1": {"description": "", "definition": "b[p1]", "name": "ch1", "templateType": "anything", "group": "Ungrouped variables"}, "p2": {"description": "", "definition": "switch(t=0,random(0..abs(b)-1 except p1),random(0..abs(pd)-1 except p3))", "name": "p2", "templateType": "anything", "group": "Ungrouped variables"}}, "variablesTest": {"maxRuns": 100, "condition": ""}, "question_groups": [{"pickQuestions": 0, "pickingStrategy": "all-ordered", "name": "", "questions": []}]}]}, {"name": "More Simple Examples", "pickingStrategy": "all-ordered", "pickQuestions": 1, "questions": [{"name": "Factorise a quadratic", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "tags": [], "metadata": {"description": "Demonstrate how string restrictions work", "licence": "None specified"}, "parts": [{"failureRate": 1, "marks": 1, "showPreview": true, "musthave": {"strings": ["(", ")"], "partialCredit": 0, "message": "", "showStrings": false}, "checkingType": "absdiff", "customName": "", "showFeedbackIcon": true, "type": "jme", "vsetRange": [0, 1], "customMarkingAlgorithm": "", "extendBaseMarkingAlgorithm": true, "variableReplacementStrategy": "originalfirst", "unitTests": [], "useCustomName": false, "vsetRangePoints": 5, "prompt": "

Factorise $\\simplify{ x^2 + {x0+x1}*x + {x0*x1} }$

", "valuegenerators": [{"value": "", "name": "x"}], "showCorrectAnswer": true, "checkVariableNames": false, "checkingAccuracy": 0.001, "answer": "(x+{x0})(x+{x1})", "notallowed": {"strings": ["^"], "partialCredit": 0, "message": "There should be no $x^2$ powers if you've factorised this correctly", "showStrings": true}, "variableReplacements": [], "scripts": {}}], "variable_groups": [], "ungrouped_variables": ["x0", "x1"], "functions": {}, "rulesets": {}, "variablesTest": {"maxRuns": 100, "condition": ""}, "variables": {"x0": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "name": "x0", "definition": "random(-9..9)"}, "x1": {"description": "

except x0 to avoid repeated roots

", "templateType": "anything", "group": "Ungrouped variables", "name": "x1", "definition": "random(-9..9 except x0)"}}, "advice": "", "statement": "", "preamble": {"js": "", "css": ""}}, {"name": "Josh's copy of Indefinite Integrals", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "TEAME UCC", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/351/"}, {"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "metadata": {"description": "

Indefinite Integrals

\n

rebel

\n

rebelmaths

", "licence": "Creative Commons Attribution 4.0 International"}, "statement": "

Solve the following indefinite integrals, using $C$ to represent an unknown constant.

", "variable_groups": [], "preamble": {"css": "", "js": ""}, "variablesTest": {"maxRuns": 100, "condition": ""}, "variables": {"b": {"templateType": "anything", "description": "", "name": "b", "definition": "random(2..9 except a)", "group": "Ungrouped variables"}, "c": {"templateType": "anything", "description": "", "name": "c", "definition": "random(1..9 except a except b)", "group": "Ungrouped variables"}, "a": {"templateType": "anything", "description": "", "name": "a", "definition": "random(2..9)", "group": "Ungrouped variables"}, "f": {"templateType": "anything", "description": "", "name": "f", "definition": "random(1..8 except d)", "group": "Ungrouped variables"}, "d": {"templateType": "anything", "description": "", "name": "d", "definition": "random(1..8)", "group": "Ungrouped variables"}}, "ungrouped_variables": ["a", "c", "b", "d", "f"], "tags": [], "parts": [{"showPreview": true, "type": "jme", "vsetRange": [0, 1], "showFeedbackIcon": true, "useCustomName": false, "customMarkingAlgorithm": "", "marks": 1, "unitTests": [], "showCorrectAnswer": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "scripts": {}, "vsetRangePoints": 5, "variableReplacementStrategy": "originalfirst", "answer": "x^5/5-{a}x^4/4+{b}x^2/2-{c}x+C", "variableReplacements": [], "checkVariableNames": false, "valuegenerators": [{"name": "c", "value": ""}, {"name": "x", "value": ""}], "prompt": "

$\\int(x^4-\\var{a}x^3+\\var{b}x-\\var{c})\\mathrm{dx}$

", "failureRate": 1, "checkingType": "absdiff", "customName": "", "musthave": {"partialCredit": 0, "message": "Did you forget the constant of integration?", "showStrings": false, "strings": ["C"]}}, {"showPreview": true, "type": "jme", "vsetRange": [0, 1], "showFeedbackIcon": true, "useCustomName": false, "customMarkingAlgorithm": "", "marks": 1, "unitTests": [], "showCorrectAnswer": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "scripts": {}, "vsetRangePoints": 5, "variableReplacementStrategy": "originalfirst", "answer": "2u^3/3+u^2({f}+2{d})/2+{d}{f}u+C", "variableReplacements": [], "checkVariableNames": false, "valuegenerators": [{"name": "c", "value": ""}, {"name": "u", "value": ""}], "prompt": "

$\\int(u+\\var{d})(2u+\\var{f})\\mathrm{du}$

", "failureRate": 1, "checkingType": "absdiff", "customName": ""}, {"showPreview": true, "type": "jme", "vsetRange": [0, 1], "showFeedbackIcon": true, "useCustomName": false, "customMarkingAlgorithm": "", "marks": 1, "unitTests": [], "showCorrectAnswer": true, "extendBaseMarkingAlgorithm": true, "checkingAccuracy": 0.001, "scripts": {}, "vsetRangePoints": 5, "variableReplacementStrategy": "originalfirst", "answer": "2sin(x) + C", "variableReplacements": [], "checkVariableNames": false, "valuegenerators": [{"name": "c", "value": ""}, {"name": "x", "value": ""}], "prompt": "

$\\int\\frac{\\sin(2x)}{\\sin(x)}\\mathrm{dx}$.

\n

Take care to include the brackets in the trigonometric expressions, i.e. write sin(x) rather than sinx.

", "failureRate": 1, "checkingType": "absdiff", "customName": ""}], "advice": "

Indefinite Integrals

", "functions": {}, "rulesets": {}}, {"name": "Matrix arithmetic", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "functions": {}, "ungrouped_variables": ["A", "C1", "C2", "UNIT"], "statement": "

Given the matrix

\n

$\\mathbf{A} = \\var{A}$

\n

", "tags": [], "variables": {"C1": {"group": "Ungrouped variables", "description": "", "templateType": "anything", "definition": "random(2..5)", "name": "C1"}, "UNIT": {"group": "Ungrouped variables", "description": "", "templateType": "anything", "definition": "id(2)", "name": "UNIT"}, "A": {"group": "Ungrouped variables", "description": "", "templateType": "anything", "definition": "matrix(repeat(random(-3..3),2),repeat(random(-3..3),2))", "name": "A"}, "C2": {"group": "Ungrouped variables", "description": "", "templateType": "anything", "definition": "random(2..5)", "name": "C2"}}, "advice": "

$\\mathbf{A} = \\var{A}$

\n

$\\mathbf{A}^2 = \\var{A}\\var{A} = \\var{A*A}$

\n

$\\var{C1}\\mathbf{A} = \\var{C1}\\var{A} = \\var{C1*A}$

\n

Putting it all together:

\n

$(\\mathbf{A}^2+\\var{C1}\\mathbf{A}+\\var{C2}\\mathbf{I})^T$

\n

$=\\left[\\var{A*A}+\\var{C1*A}+\\var{C2*UNIT}\\right]^T$

\n

$=\\var{A*A+C1*A+C2*UNIT}^T$

\n

$\\var{transpose(A*A+C1*A+C2*UNIT)}$

", "variable_groups": [], "preamble": {"js": "", "css": ""}, "metadata": {"description": "", "licence": "None specified"}, "variablesTest": {"maxRuns": 100, "condition": ""}, "parts": [{"variableReplacementStrategy": "originalfirst", "marks": 1, "prompt": "

Calculate

\n

$(\\mathbf{A}^2+\\var{C1}\\mathbf{A}+\\var{C2}\\mathbf{I})^T$

", "customMarkingAlgorithm": "", "correctAnswer": "transpose(A*A+C1*A+C2*UNIT)", "allowResize": false, "scripts": {}, "variableReplacements": [], "unitTests": [], "showCorrectAnswer": true, "type": "matrix", "tolerance": 0, "useCustomName": false, "allowFractions": false, "customName": "", "numColumns": "2", "correctAnswerFractions": false, "numRows": "2", "markPerCell": true, "adaptiveMarkingPenalty": 0, "showFeedbackIcon": true, "extendBaseMarkingAlgorithm": true}, {"variableReplacementStrategy": "originalfirst", "showFractionHint": true, "marks": 1, "prompt": "

Calculate $\\det \\left[ A \\right]$

", "customMarkingAlgorithm": "", "mustBeReduced": false, "allowFractions": false, "notationStyles": ["plain", "en", "si-en"], "correctAnswerStyle": "plain", "scripts": {}, "mustBeReducedPC": 0, "variableReplacements": [], "unitTests": [], "showCorrectAnswer": true, "minValue": "det(A)", "type": "numberentry", "useCustomName": false, "customName": "", "adaptiveMarkingPenalty": 0, "maxValue": "det(A)", "showFeedbackIcon": true, "correctAnswerFraction": false, "extendBaseMarkingAlgorithm": true}, {"variableReplacementStrategy": "originalfirst", "marks": 1, "prompt": "

Calculate $\\mathbf{A}^T$

", "customMarkingAlgorithm": "", "correctAnswer": "transpose(A)", "allowResize": true, "scripts": {}, "variableReplacements": [], "unitTests": [], "showCorrectAnswer": true, "type": "matrix", "tolerance": 0, "useCustomName": false, "allowFractions": false, "customName": "", "numColumns": 1, "correctAnswerFractions": false, "numRows": 1, "markPerCell": false, "adaptiveMarkingPenalty": 0, "showFeedbackIcon": true, "extendBaseMarkingAlgorithm": true}], "rulesets": {}}, {"name": "Simple Matrix Multiplication", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "contributors": [{"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "variablesTest": {"maxRuns": 100, "condition": ""}, "parts": [{"customMarkingAlgorithm": "", "allowFractions": false, "unitTests": [], "steps": [{"customMarkingAlgorithm": "", "prompt": "

", "type": "information", "scripts": {}, "customName": "", "useCustomName": false, "unitTests": [], "marks": 0, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "extendBaseMarkingAlgorithm": true, "showCorrectAnswer": true, "showFeedbackIcon": true}, {"customMarkingAlgorithm": "", "prompt": "

https://en.wikipedia.org/wiki/Matrix_multiplication#Definition

", "type": "information", "scripts": {}, "customName": "", "useCustomName": false, "unitTests": [], "marks": 0, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "extendBaseMarkingAlgorithm": true, "showCorrectAnswer": true, "showFeedbackIcon": true}], "type": "matrix", "scripts": {}, "correctAnswerFractions": false, "markPerCell": true, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "numRows": 1, "showFeedbackIcon": true, "prompt": "

$\\mathbf{C} = \\mathbf{AB}$

\n

$\\mathbf{C} =$

\n

", "numColumns": 1, "customName": "", "useCustomName": false, "correctAnswer": "A*B", "marks": 1, "allowResize": true, "tolerance": 0, "stepsPenalty": 0, "extendBaseMarkingAlgorithm": true, "showCorrectAnswer": true}, {"customMarkingAlgorithm": "", "prompt": "

$\\mathbf{D} = \\mathbf{BA}$

\n

$\\mathbf{D} =$

", "correctAnswerFractions": false, "correctAnswer": "B*A", "type": "matrix", "scripts": {}, "customName": "", "useCustomName": false, "unitTests": [], "marks": 1, "markPerCell": true, "variableReplacements": [], "variableReplacementStrategy": "originalfirst", "allowFractions": false, "allowResize": true, "numColumns": 1, "tolerance": 0, "numRows": 1, "extendBaseMarkingAlgorithm": true, "showCorrectAnswer": true, "showFeedbackIcon": true}], "statement": "

Do the following matrix problems :
Let

\n

$\\mathbf{A}= \\var{A}$ and $\\mathbf{B}=\\var{B}$
Calculate the following products of these matrices:

", "rulesets": {}, "variable_groups": [], "tags": [], "advice": "

See https://en.wikipedia.org/wiki/Matrix_multiplication#Definition

", "metadata": {"description": "Multiply a 2x3 and a 3x2 matrix together", "licence": "None specified"}, "functions": {}, "variables": {"amax": {"description": "", "templateType": "number", "group": "Ungrouped variables", "definition": "3", "name": "amax"}, "A": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "definition": "matrix([random(-amax..amax),random(-amax..amax),random(-amax..amax)],[random(-amax..amax),random(-amax..amax),random(-amax..amax)])", "name": "A"}, "B": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "definition": "matrix(repeat(random(1..4),2),repeat(random(1..4),2),repeat(random(1..4),2))", "name": "B"}, "bmax": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "definition": "random(-4..4)", "name": "bmax"}, "BA": {"description": "", "templateType": "anything", "group": "Ungrouped variables", "definition": "B*A", "name": "BA"}}, "preamble": {"css": "", "js": ""}, "ungrouped_variables": ["A", "amax", "B", "bmax", "BA"]}]}], "percentPass": 0, "name": "Interesting NUMBAS examples", "contributors": [{"name": "Josh Lim", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/2990/"}], "extensions": ["geogebra", "jsxgraph", "quantities", "stats", "weh"], "custom_part_types": [{"source": {"pk": 24, "author": {"name": "William Haynes", "pk": 2530}, "edit_page": "/part_type/24/edit"}, "name": "Angle quantity", "short_name": "angle-quantity-from-reference", "description": "

Angle as a quantity in degrees.

", "help_url": "", "input_widget": "string", "input_options": {"correctAnswer": "plain_string(settings['correct_quantity'])", "hint": {"static": true, "value": ""}, "allowEmpty": {"static": true, "value": false}}, "can_be_gap": true, "can_be_step": true, "marking_script": "mark:\nswitch( \nright and good_units and right_sign and angle_in_range, add_credit(1.0,'Correct.'),\nright and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\nright and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but missing degree symbol.'),\nright and good_units and right_sign and not angle_in_range,add_credit(settings['C1'],'Angle is out of range.'),\nclose and good_units, add_credit(settings['C1'],'Close.'),\nclose and not good_units, add_credit(settings['C3'],'Answer is close, but missing degree symbol.'),\nincorrect('Wrong answer.')\n)\n\ninterpreted_answer:\nqty(student_scalar, student_units)\n\ncorrect_scalar:\nscalar(correct_quantity)\n \n\ncorrect_quantity:\nsettings['correct_quantity']\n\ncorrect_units:\nunits(correct_quantity)\n\nallowed_notation_styles:\n[\"plain\",\"en\"]\n\nmatch_student_number:\nmatchnumber(studentAnswer,allowed_notation_styles)\n\nstudent_scalar:\nmatch_student_number[1]\n\nstudent_units:\njoin(\nsplit(studentAnswer[len(match_student_number[0])..len(studentAnswer)]\n,\"\u00b0\"),\" deg\")\n\n\n\ngood_units:\ntry(\ncompatible(quantity(1, student_units),correct_quantity),\nmsg,\nfeedback(msg);false)\n\nstudent_quantity:\nswitch(not good_units, \nstudent_scalar * correct_units, \nnot right_sign,\n-quantity(student_scalar, student_units),\nquantity(student_scalar,student_units)\n)\n\nright_sign:\nsign(student_scalar) = sign(correct_quantity)\n\nangle_in_range:\nif(settings['restrict_angle'], abs(student_scalar) <= 90, true)\n\nright:\nwithinTolerance(abs(student_scalar), abs(correct_scalar), settings['right'])\n\nclose:\nwithinTolerance(student_scalar, correct_scalar, settings['close'])", "marking_notes": [{"name": "mark", "description": "This is the main marking note. It should award credit and provide feedback based on the student's answer.", "definition": "switch( \nright and good_units and right_sign and angle_in_range, add_credit(1.0,'Correct.'),\nright and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\nright and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but missing degree symbol.'),\nright and good_units and right_sign and not angle_in_range,add_credit(settings['C1'],'Angle is out of range.'),\nclose and good_units, add_credit(settings['C1'],'Close.'),\nclose and not good_units, add_credit(settings['C3'],'Answer is close, but missing degree symbol.'),\nincorrect('Wrong answer.')\n)"}, {"name": "interpreted_answer", "description": "A value representing the student's answer to this part.", "definition": "qty(student_scalar, student_units)"}, {"name": "correct_scalar", "description": "", "definition": "scalar(correct_quantity)\n "}, {"name": "correct_quantity", "description": "", "definition": "settings['correct_quantity']"}, {"name": "correct_units", "description": "", "definition": "units(correct_quantity)"}, {"name": "allowed_notation_styles", "description": "", "definition": "[\"plain\",\"en\"]"}, {"name": "match_student_number", "description": "", "definition": "matchnumber(studentAnswer,allowed_notation_styles)"}, {"name": "student_scalar", "description": "", "definition": "match_student_number[1]"}, {"name": "student_units", "description": "", "definition": "join(\nsplit(studentAnswer[len(match_student_number[0])..len(studentAnswer)]\n,\"\u00b0\"),\" deg\")\n\n"}, {"name": "good_units", "description": "", "definition": "try(\ncompatible(quantity(1, student_units),correct_quantity),\nmsg,\nfeedback(msg);false)"}, {"name": "student_quantity", "description": "", "definition": "switch(not good_units, \nstudent_scalar * correct_units, \nnot right_sign,\n-quantity(student_scalar, student_units),\nquantity(student_scalar,student_units)\n)"}, {"name": "right_sign", "description": "", "definition": "sign(student_scalar) = sign(correct_quantity)"}, {"name": "angle_in_range", "description": "", "definition": "if(settings['restrict_angle'], abs(student_scalar) <= 90, true)"}, {"name": "right", "description": "

Will check for correct sign elswhere.

", "definition": "withinTolerance(abs(student_scalar), abs(correct_scalar), settings['right'])"}, {"name": "close", "description": "

Must have correct sign to be close.

", "definition": "withinTolerance(student_scalar, correct_scalar, settings['close'])\n"}], "settings": [{"name": "correct_quantity", "label": "Correct Angle as quantity ", "help_url": "", "hint": "", "input_type": "code", "default_value": "qty(45,'deg')", "evaluate": true}, {"name": "right", "label": "Accuracy for right.", "help_url": "", "hint": "Question will be considered correct if the scalar part of the student's answer is within ± this amount from the correct value.", "input_type": "code", "default_value": "0.1", "evaluate": true}, {"name": "restrict_angle", "label": "Less than 90\u00b0", "help_url": "", "hint": "When checked, angle must be between -90° and +90°.", "input_type": "checkbox", "default_value": true}, {"name": "C1", "label": "Close with units.", "help_url": "", "hint": "Partial Credit for close value with appropriate units.", "input_type": "percent", "default_value": "75"}, {"name": "close", "label": " Accuracy for close.", "help_url": "", "hint": "Question will be considered close if the scalar part of the student's answer is within ± this amount from the correct value.", "input_type": "code", "default_value": "0.5", "evaluate": true}, {"name": "C2", "label": "No units or wrong sign", "help_url": "", "hint": "Partial credit for forgetting units or using wrong sign.", "input_type": "percent", "default_value": "50"}, {"name": "C3", "label": "Close, no units.", "help_url": "", "hint": "Partial Credit for close value without units.", "input_type": "percent", "default_value": "25"}], "public_availability": "restricted", "published": false, "extensions": ["quantities"]}, {"source": {"pk": 19, "author": {"name": "William Haynes", "pk": 2530}, "edit_page": "/part_type/19/edit"}, "name": "Engineering Accuracy with units", "short_name": "engineering-answer", "description": "

A value with units marked right if within an adjustable % error of the correct value.  Marked close if within a wider margin of error.

", "help_url": "", "input_widget": "string", "input_options": {"correctAnswer": "siground(settings['correctAnswer'],4)", "hint": {"static": true, "value": ""}, "allowEmpty": {"static": true, "value": true}}, "can_be_gap": true, "can_be_step": true, "marking_script": "mark:\nswitch( \n right and good_units and right_sign, add_credit(1.0,'Correct.'),\n right and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\n right and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but wrong or missing units.'),\n close and good_units, add_credit(settings['C1'],'Close.'),\n close and not good_units, add_credit(settings['C3'],'Answer is close, but wrong or missing units.'),\n incorrect('Wrong answer.')\n)\n\n\ninterpreted_answer:\nqty(student_scalar, student_units)\n\n\n\ncorrect_quantity:\nsettings[\"correctAnswer\"]\n\n\n\ncorrect_units:\nunits(correct_quantity)\n\n\nallowed_notation_styles:\n[\"plain\",\"en\"]\n\nmatch_student_number:\nmatchnumber(studentAnswer,allowed_notation_styles)\n\nstudent_scalar:\nmatch_student_number[1]\n\nstudent_units:\nreplace_regex('ohms','ohm',\n replace_regex('\u00b0', ' deg',\n replace_regex('-', ' ' ,\n studentAnswer[len(match_student_number[0])..len(studentAnswer)])),\"i\")\n\ngood_units:\ntry(\ncompatible(quantity(1, student_units),correct_units),\nmsg,\nfeedback(msg);false)\n\n\nstudent_quantity:\nswitch(not good_units, \n student_scalar * correct_units, \n not right_sign,\n -quantity(student_scalar, student_units),\n quantity(student_scalar,student_units)\n)\n \n\n\npercent_error:\ntry(\nscalar(abs((correct_quantity - student_quantity)/correct_quantity))*100 \n,msg,\nif(student_quantity=correct_quantity,0,100))\n \n\nright:\npercent_error <= settings['right']\n\n\nclose:\nright_sign and percent_error <= settings['close']\n\nright_sign:\nsign(student_scalar) = sign(correct_quantity)", "marking_notes": [{"name": "mark", "description": "This is the main marking note. It should award credit and provide feedback based on the student's answer.", "definition": "switch( \n right and good_units and right_sign, add_credit(1.0,'Correct.'),\n right and good_units and not right_sign, add_credit(settings['C2'],'Wrong sign.'),\n right and right_sign and not good_units, add_credit(settings['C2'],'Correct value, but wrong or missing units.'),\n close and good_units, add_credit(settings['C1'],'Close.'),\n close and not good_units, add_credit(settings['C3'],'Answer is close, but wrong or missing units.'),\n incorrect('Wrong answer.')\n)\n"}, {"name": "interpreted_answer", "description": "A value representing the student's answer to this part.", "definition": "qty(student_scalar, student_units)\n\n"}, {"name": "correct_quantity", "description": "", "definition": "settings[\"correctAnswer\"]\n\n"}, {"name": "correct_units", "description": "", "definition": "units(correct_quantity)\n"}, {"name": "allowed_notation_styles", "description": "", "definition": "[\"plain\",\"en\"]"}, {"name": "match_student_number", "description": "", "definition": "matchnumber(studentAnswer,allowed_notation_styles)"}, {"name": "student_scalar", "description": "", "definition": "match_student_number[1]"}, {"name": "student_units", "description": "

Modify the unit portion of the student's answer by

\n

1. replacing \"ohms\" with \"ohm\"  case insensitive

\n

2. replacing '-' with ' ' 

\n

3. replacing '°' with ' deg' 

\n

to allow answers like 10 ft-lb and 30°

", "definition": "replace_regex('ohms','ohm',\n replace_regex('\u00b0', ' deg',\n replace_regex('-', ' ' ,\n studentAnswer[len(match_student_number[0])..len(studentAnswer)])),\"i\")"}, {"name": "good_units", "description": "", "definition": "try(\ncompatible(quantity(1, student_units),correct_units),\nmsg,\nfeedback(msg);false)\n"}, {"name": "student_quantity", "description": "

This fixes the student answer for two common errors.  

\n

If student_units are wrong  - replace with correct units

\n

If student_scalar has the wrong sign - replace with right sign

\n

If student makes both errors, only one gets fixed.

", "definition": "switch(not good_units, \n student_scalar * correct_units, \n not right_sign,\n -quantity(student_scalar, student_units),\n quantity(student_scalar,student_units)\n)\n \n"}, {"name": "percent_error", "description": "", "definition": "try(\nscalar(abs((correct_quantity - student_quantity)/correct_quantity))*100 \n,msg,\nif(student_quantity=correct_quantity,0,100))\n "}, {"name": "right", "description": "", "definition": "percent_error <= settings['right']\n"}, {"name": "close", "description": "

Only marked close if the student actually has the right sign.

", "definition": "right_sign and percent_error <= settings['close']"}, {"name": "right_sign", "description": "", "definition": "sign(student_scalar) = sign(correct_quantity) "}], "settings": [{"name": "correctAnswer", "label": "Correct Quantity.", "help_url": "", "hint": "The correct answer given as a JME quantity.", "input_type": "code", "default_value": "", "evaluate": true}, {"name": "right", "label": "% Accuracy for right.", "help_url": "", "hint": "Question will be considered correct if the scalar part of the student's answer is within this % of correct value.", "input_type": "code", "default_value": "0.2", "evaluate": true}, {"name": "close", "label": "% Accuracy for close.", "help_url": "", "hint": "Question will be considered close if the scalar part of the student's answer is within this % of correct value.", "input_type": "code", "default_value": "1.0", "evaluate": true}, {"name": "C1", "label": "Close with units.", "help_url": "", "hint": "Partial Credit for close value with appropriate units.  if correct answer is 100 N and close is ±1%,
99  N is accepted.", "input_type": "percent", "default_value": "75"}, {"name": "C2", "label": "No units or wrong sign", "help_url": "", "hint": "Partial credit for forgetting units or using wrong sign.
If the correct answer is 100 N, both 100 and -100 N are accepted.", "input_type": "percent", "default_value": "50"}, {"name": "C3", "label": "Close, no units.", "help_url": "", "hint": "Partial Credit for close value but forgotten units.
This value would be close if the expected units were provided.  If the correct answer is 100 N, and close is ±1%,
99 is accepted.", "input_type": "percent", "default_value": "25"}], "public_availability": "always", "published": true, "extensions": ["quantities"]}], "resources": [["question-resources/Data.csv", "/srv/numbas/media/question-resources/Data.csv"]]}