diff --git a/.gitattributes b/.gitattributes index bed0738c7eeb449bca98b5d2f33c89a1ee56349a..8d4ce717e8ad69383753af336752f7401a0eefaf 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,60 +1,6 @@ -*.7z filter=lfs diff=lfs merge=lfs -text -*.arrow filter=lfs diff=lfs merge=lfs -text -*.avro filter=lfs diff=lfs merge=lfs -text -*.bin filter=lfs diff=lfs merge=lfs -text -*.bz2 filter=lfs diff=lfs merge=lfs -text -*.ckpt filter=lfs diff=lfs merge=lfs -text -*.ftz filter=lfs diff=lfs merge=lfs -text -*.gz filter=lfs diff=lfs merge=lfs -text -*.h5 filter=lfs diff=lfs merge=lfs -text -*.joblib filter=lfs diff=lfs merge=lfs -text -*.lfs.* filter=lfs diff=lfs merge=lfs -text -*.lz4 filter=lfs diff=lfs merge=lfs -text -*.mds filter=lfs diff=lfs merge=lfs -text -*.mlmodel filter=lfs diff=lfs merge=lfs -text -*.model filter=lfs diff=lfs merge=lfs -text -*.msgpack filter=lfs diff=lfs merge=lfs -text -*.npy filter=lfs diff=lfs merge=lfs -text -*.npz filter=lfs diff=lfs merge=lfs -text -*.onnx filter=lfs diff=lfs merge=lfs -text -*.ot filter=lfs diff=lfs merge=lfs -text -*.parquet filter=lfs diff=lfs merge=lfs -text -*.pb filter=lfs diff=lfs merge=lfs -text -*.pickle filter=lfs diff=lfs merge=lfs -text -*.pkl filter=lfs diff=lfs merge=lfs -text -*.pt filter=lfs diff=lfs merge=lfs -text -*.pth filter=lfs diff=lfs merge=lfs -text -*.rar filter=lfs diff=lfs merge=lfs -text -*.safetensors filter=lfs diff=lfs merge=lfs -text -saved_model/**/* filter=lfs diff=lfs merge=lfs -text -*.tar.* filter=lfs diff=lfs merge=lfs -text -*.tar filter=lfs diff=lfs merge=lfs -text -*.tflite filter=lfs diff=lfs merge=lfs -text -*.tgz filter=lfs diff=lfs merge=lfs -text -*.wasm filter=lfs diff=lfs merge=lfs -text -*.xz filter=lfs diff=lfs merge=lfs -text -*.zip filter=lfs diff=lfs merge=lfs -text -*.zst filter=lfs diff=lfs merge=lfs -text -*tfevents* filter=lfs diff=lfs merge=lfs -text -# Audio files - uncompressed -*.pcm filter=lfs diff=lfs merge=lfs -text -*.sam filter=lfs diff=lfs merge=lfs -text -*.raw filter=lfs diff=lfs merge=lfs -text -# Audio files - compressed -*.aac filter=lfs diff=lfs merge=lfs -text -*.flac filter=lfs diff=lfs merge=lfs -text -*.mp3 filter=lfs diff=lfs merge=lfs -text -*.ogg filter=lfs diff=lfs merge=lfs -text -*.wav filter=lfs diff=lfs merge=lfs -text -# Image files - uncompressed -*.bmp filter=lfs diff=lfs merge=lfs -text -*.gif filter=lfs diff=lfs merge=lfs -text -*.png filter=lfs diff=lfs merge=lfs -text -*.tiff filter=lfs diff=lfs merge=lfs -text -# Image files - compressed *.jpg filter=lfs diff=lfs merge=lfs -text *.jpeg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text *.webp filter=lfs diff=lfs merge=lfs -text -# Video files - compressed -*.mp4 filter=lfs diff=lfs merge=lfs -text -*.webm filter=lfs diff=lfs merge=lfs -text +*.jsonl text eol=lf +*.md text eol=lf diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ca7c61f0973ec03342a41e72ce7cc0df3d29ad59 --- /dev/null +++ b/README.md @@ -0,0 +1,80 @@ +--- +license: other +language: +- en +pretty_name: Gen-Arena +size_categories: +- n<1K +task_categories: +- text-to-image +tags: +- text-to-image +- image-generation +- compositionality +- reference-image +- benchmark +--- + +# Gen-Arena + +Gen-Arena is a text-to-image evaluation benchmark for compositional prompt following and reference-conditioned generation. Each sample contains a natural-language generation prompt, optional reference images, named entities, and fine-grained constraints. + +Gen-Arena is introduced in the paper *SCOPE: Structured Decomposition and Conditional Skill Orchestration for Complex Image Generation* as a human-annotated benchmark with entity- and constraint-level specifications. + +This package contains 300 samples across 6 categories: + +| Category | Samples | Unique image files | Reference slots | +| --- | ---: | ---: | ---: | +| `1-cartoon` | 50 | 56 | 56 | +| `2-game` | 50 | 103 | 104 | +| `3-sports` | 50 | 50 | 50 | +| `4-entertainment` | 50 | 50 | 50 | +| `5-competition` | 50 | 0 | 0 | +| `6-ceremony` | 50 | 30 | 50 | + +## Files + +- `data/gen_arena.jsonl`: unified metadata file with all 300 samples. +- `reference_images//`: reference images grouped by category. + +All image paths in `data/gen_arena.jsonl` are root-relative paths. + +## Schema + +Each row in `data/gen_arena.jsonl` has the following fields: + +- `id`: unique sample id. +- `category`: category directory name. +- `prompt`: generation prompt. +- `reference_images`: list of objects with `id` and root-relative `path`. +- `reference_image_paths`: list of root-relative image paths. +- `num_reference_images`: number of reference images for the sample. +- `entities`: list of named entities and optional reference links. +- `constraints`: list of fine-grained constraints with `id`, `type`, `text`, and `depends_on`. +- `num_entities`: entity count. +- `num_constraints`: constraint count. +- `constraint_type_counts`: counts by constraint type. + +Constraint types are `attribute`, `layout`, and `relation`. + +## Loading + +```python +from datasets import load_dataset + +dataset = load_dataset("json", data_files="data/gen_arena.jsonl", split="train") +print(dataset[0]["prompt"]) +print(dataset[0]["reference_image_paths"]) +``` + +Reference images can be loaded by joining each `reference_image_paths` value with the dataset root. For example, image paths follow the form `reference_images/1-cartoon/1-cartoon_001_Tiggy.jpg`. + +## Notes + +- `5-competition` is intentionally text-only and has no reference images. +- Some samples share the same reference image file after exact duplicate cleanup. +- The license and redistribution status of reference images should be verified before public release. + +## Citation + +Citation information will be added after the associated paper is publicly available. diff --git a/data/gen_arena.jsonl b/data/gen_arena.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..851da14afa0ee6371578415a396570caab49be7a --- /dev/null +++ b/data/gen_arena.jsonl @@ -0,0 +1,300 @@ +{"id": "1-cartoon_001", "category": "1-cartoon", "prompt": "Create an image of Tiggy from Tig n' Seek sitting at a wooden desk in a workspace. Tiggy is holding a pencil in one hand. On the desk, there are three stacked books resting near the edge. An open backpack sits on the floor in the lower foreground. Behind the desk, a large window is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_001_Tiggy.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_001_Tiggy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Tiggy", "reference_ids": ["R1"]}, {"id": "O2", "name": "desk"}, {"id": "O3", "name": "pencil"}, {"id": "O4", "name": "books"}, {"id": "O5", "name": "backpack"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "relation", "text": "Tiggy is seated at the desk.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Tiggy is holding the pencil.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The books are stacked.", "depends_on": ["O4"]}, {"id": "C4", "type": "relation", "text": "The books are resting on the desk.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "attribute", "text": "The backpack is open.", "depends_on": ["O5"]}, {"id": "C6", "type": "layout", "text": "The backpack is located in the lower foreground.", "depends_on": ["O5"]}, {"id": "C7", "type": "layout", "text": "The window is positioned in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The window is behind the desk.", "depends_on": ["O6", "O2"]}, {"id": "C9", "type": "attribute", "text": "The stack on the desk contains exactly three books.", "depends_on": ["O4", "O2"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 4}} +{"id": "1-cartoon_002", "category": "1-cartoon", "prompt": "Create an image of Oscar from Summer Camp Island standing outside a building. Oscar is positioned in the midground on a set of stone steps leading up to a large wooden doorway. An open backpack rests on the steps right beside him. Textured pavement stretches across the lower foreground. A tall street sign stands to the left of the steps, and Oscar is looking toward it.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_002_Oscar.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_002_Oscar.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Oscar", "reference_ids": ["R1"]}, {"id": "O2", "name": "stone steps"}, {"id": "O3", "name": "wooden doorway"}, {"id": "O4", "name": "backpack"}, {"id": "O5", "name": "pavement"}, {"id": "O6", "name": "street sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Oscar is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Oscar is standing on the stone steps.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The stone steps are positioned in front of the wooden doorway.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The backpack rests beside Oscar.", "depends_on": ["O4", "O1"]}, {"id": "C5", "type": "attribute", "text": "The backpack is open.", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The pavement stretches across the lower foreground.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The street sign stands to the left of the stone steps.", "depends_on": ["O6", "O2"]}, {"id": "C8", "type": "relation", "text": "Oscar is looking toward the street sign.", "depends_on": ["O1", "O6"]}, {"id": "C9", "type": "layout", "text": "The wooden doorway is positioned in the background.", "depends_on": ["O3"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "1-cartoon_003", "category": "1-cartoon", "prompt": "Create an image of Kid from Kid Cosmic standing in a club room. He is leaning forward with both hands resting on a large wooden club table. In the lower foreground, an open backpack sits on the floor, spilling three papers. Behind him, a wide chalkboard is mounted on the wall in the background, displaying the word \"HERO\" in large letters. A tall bookshelf filled with stacked boxes stands to the right side of the room.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_003_Kid.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_003_Kid.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Kid", "reference_ids": ["R1"]}, {"id": "O2", "name": "club table"}, {"id": "O3", "name": "backpack"}, {"id": "O4", "name": "papers"}, {"id": "O5", "name": "chalkboard"}, {"id": "O6", "name": "bookshelf"}, {"id": "O7", "name": "boxes"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Kid is leaning forward.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Kid has both hands resting on the club table.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "layout", "text": "The backpack is positioned in the lower foreground.", "depends_on": ["O3"]}, {"id": "C4", "type": "relation", "text": "The papers are spilling out of the backpack.", "depends_on": ["O4", "O3"]}, {"id": "C5", "type": "layout", "text": "The chalkboard is mounted on the wall in the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The chalkboard is located behind Kid.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "attribute", "text": "The chalkboard shows the word \"HERO\".", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The bookshelf stands to the right side of the room.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The boxes are placed on the bookshelf.", "depends_on": ["O7", "O6"]}, {"id": "C10", "type": "attribute", "text": "The backpack is open.", "depends_on": ["O3"]}, {"id": "C11", "type": "attribute", "text": "The boxes are stacked.", "depends_on": ["O7"]}, {"id": "C12", "type": "attribute", "text": "Exactly three papers are spilling out of the backpack.", "depends_on": ["O4", "O3"]}], "num_entities": 7, "num_constraints": 12, "constraint_type_counts": {"attribute": 5, "layout": 3, "relation": 4}} +{"id": "1-cartoon_004", "category": "1-cartoon", "prompt": "Create an image of Gretel Grant-Gomez from Hamster & Gretel standing on a small stage. She is positioned in the midground, firmly holding a tall microphone stand. Behind her, a large display board rests against a heavy stage curtain in the background. A black floor monitor sits in the lower foreground near the stage edge. The display board features the short text \"LIVE\" in bold letters.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_004_Gretel_Grant_Gomez.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_004_Gretel_Grant_Gomez.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Gretel Grant-Gomez", "reference_ids": ["R1"]}, {"id": "O2", "name": "stage"}, {"id": "O3", "name": "microphone stand"}, {"id": "O4", "name": "display board"}, {"id": "O5", "name": "stage curtain"}, {"id": "O6", "name": "floor monitor"}], "constraints": [{"id": "C1", "type": "layout", "text": "Gretel Grant-Gomez is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Gretel Grant-Gomez is standing on the stage.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Gretel Grant-Gomez is holding the microphone stand.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "The stage curtain is located in the background.", "depends_on": ["O5"]}, {"id": "C5", "type": "relation", "text": "The display board rests against the stage curtain.", "depends_on": ["O4", "O5"]}, {"id": "C6", "type": "layout", "text": "The floor monitor is positioned in the lower foreground.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The display board is behind Gretel Grant-Gomez.", "depends_on": ["O4", "O1"]}, {"id": "C8", "type": "attribute", "text": "The display board shows the word \"LIVE\".", "depends_on": ["O4"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "1-cartoon_005", "category": "1-cartoon", "prompt": "Create an image of Rawhide from Long Gone Gulch waiting at a transit stop. Rawhide is standing on the platform edge in the lower foreground, holding a small paper ticket. Directly behind Rawhide, a vehicle door is open. A wooden station bench sits to the right in the midground. In the background, a tall station sign stands behind the bench, displaying the word \"STOP\" clearly.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_005_Rawhide.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_005_Rawhide.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Rawhide", "reference_ids": ["R1"]}, {"id": "O2", "name": "platform edge"}, {"id": "O3", "name": "paper ticket"}, {"id": "O4", "name": "vehicle door"}, {"id": "O5", "name": "station bench"}, {"id": "O6", "name": "station sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "The platform edge runs through the lower foreground.", "depends_on": ["O2"]}, {"id": "C2", "type": "relation", "text": "Rawhide is standing on the platform edge.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Rawhide is holding the paper ticket.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The vehicle door is positioned directly behind Rawhide.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "attribute", "text": "The vehicle door is open.", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The station bench is located to the right in the midground.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The station sign stands behind the station bench.", "depends_on": ["O5", "O6"]}, {"id": "C8", "type": "layout", "text": "The station sign is positioned in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "attribute", "text": "The station sign shows the word \"STOP\".", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "1-cartoon_006", "category": "1-cartoon", "prompt": "Create an image of Kipo Oak from Kipo and the Age of Wonderbeasts sitting on a bed in a room. She is reaching toward a lit lamp resting on a small desk. In the lower foreground, a folded blanket lies neatly on a rug. A bookshelf is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_006_Kipo_Oak.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_006_Kipo_Oak.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Kipo Oak", "reference_ids": ["R1"]}, {"id": "O2", "name": "bed"}, {"id": "O3", "name": "lamp"}, {"id": "O4", "name": "desk"}, {"id": "O5", "name": "blanket"}, {"id": "O6", "name": "rug"}, {"id": "O7", "name": "bookshelf"}], "constraints": [{"id": "C1", "type": "relation", "text": "Kipo Oak is sitting on the bed.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Kipo Oak is reaching toward the lamp.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The lamp rests on the desk.", "depends_on": ["O3", "O4"]}, {"id": "C4", "type": "layout", "text": "The blanket is positioned in the lower foreground.", "depends_on": ["O5"]}, {"id": "C5", "type": "relation", "text": "The blanket lies on the rug.", "depends_on": ["O5", "O6"]}, {"id": "C6", "type": "attribute", "text": "The blanket is folded.", "depends_on": ["O5"]}, {"id": "C7", "type": "layout", "text": "The bookshelf is positioned in the background.", "depends_on": ["O7"]}, {"id": "C8", "type": "attribute", "text": "The lamp is lit.", "depends_on": ["O3"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "1-cartoon_007", "category": "1-cartoon", "prompt": "Create an image of Hailey Banks from Hailey's On It! inside a library. She is positioned in the midground, reaching up to pull a thick book from a tall bookshelf. In the lower foreground, a reading table holds an open stack of books and a small desk lamp. The bookshelf extends into the background directly behind her. A short label reading 'SPACE' is attached to the side of the bookshelf.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_007_Hailey_Banks.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_007_Hailey_Banks.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Hailey Banks", "reference_ids": ["R1"]}, {"id": "O2", "name": "book"}, {"id": "O3", "name": "bookshelf"}, {"id": "O4", "name": "reading table"}, {"id": "O5", "name": "books"}, {"id": "O6", "name": "desk lamp"}, {"id": "O7", "name": "label"}], "constraints": [{"id": "C1", "type": "layout", "text": "Hailey Banks is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Hailey Banks is reaching for the book.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The book is located on the bookshelf.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "layout", "text": "The reading table is located in the lower foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The books are resting on the reading table.", "depends_on": ["O5", "O4"]}, {"id": "C6", "type": "attribute", "text": "The books are visibly open.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The desk lamp is placed on the reading table.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "relation", "text": "The bookshelf is positioned in the background behind Hailey Banks.", "depends_on": ["O3", "O1"]}, {"id": "C9", "type": "relation", "text": "The label is attached to the bookshelf.", "depends_on": ["O7", "O3"]}, {"id": "C10", "type": "attribute", "text": "The label shows the word \"SPACE\".", "depends_on": ["O7"]}, {"id": "C11", "type": "attribute", "text": "The books are stacked.", "depends_on": ["O5"]}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 6}} +{"id": "1-cartoon_008", "category": "1-cartoon", "prompt": "Create an image of Pinecone from Pinecone & Pony standing on a rooftop patio. She is holding a large metal watering can over a wooden plant box. A low brick railing runs across the lower foreground. Behind her, a sturdy worktable holds a stack of empty clay pots. A hanging lantern is suspended above the table in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_008_Pinecone.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_008_Pinecone.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Pinecone", "reference_ids": ["R1"]}, {"id": "O2", "name": "watering can"}, {"id": "O3", "name": "wooden plant box"}, {"id": "O4", "name": "brick railing"}, {"id": "O5", "name": "worktable"}, {"id": "O6", "name": "clay pots"}, {"id": "O7", "name": "hanging lantern"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Pinecone is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Pinecone is holding the watering can.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The watering can is positioned above the wooden plant box.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "layout", "text": "The brick railing spans the lower foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The worktable is positioned behind Pinecone.", "depends_on": ["O1", "O5"]}, {"id": "C6", "type": "attribute", "text": "The clay pots are stacked.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The clay pots rest on the worktable.", "depends_on": ["O5", "O6"]}, {"id": "C8", "type": "layout", "text": "The hanging lantern is located in the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "The hanging lantern hangs above the worktable.", "depends_on": ["O5", "O7"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "1-cartoon_009", "category": "1-cartoon", "prompt": "Create an image of Parker J. Cloud from Middlemost Post standing behind a large wooden workspace table. He is holding a folded paper map in his hands, looking down at it. An open mailbag rests on the right side of the table, with three stacked boxes beside it. In the background, a tall bookshelf is filled with various parcels and letters. A small tilted stool sits in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_009_Parker_J_Cloud.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_009_Parker_J_Cloud.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Parker J. Cloud", "reference_ids": ["R1"]}, {"id": "O2", "name": "workspace table"}, {"id": "O3", "name": "paper map"}, {"id": "O4", "name": "mailbag"}, {"id": "O5", "name": "boxes"}, {"id": "O6", "name": "bookshelf"}, {"id": "O7", "name": "stool"}], "constraints": [{"id": "C1", "type": "relation", "text": "Parker J. Cloud is standing behind the workspace table.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Parker J. Cloud is holding the paper map.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The paper map is folded.", "depends_on": ["O3"]}, {"id": "C4", "type": "attribute", "text": "The mailbag is open.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The mailbag rests on the workspace table.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "relation", "text": "The boxes are beside the mailbag.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "layout", "text": "The bookshelf is positioned in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "layout", "text": "The stool is located in the lower foreground.", "depends_on": ["O7"]}, {"id": "C9", "type": "attribute", "text": "The stool is tilted.", "depends_on": ["O7"]}, {"id": "C10", "type": "attribute", "text": "The boxes are stacked.", "depends_on": ["O5"]}, {"id": "C11", "type": "attribute", "text": "Exactly three boxes are stacked beside the mailbag.", "depends_on": ["O5", "O4"]}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 5, "layout": 2, "relation": 4}} +{"id": "1-cartoon_010", "category": "1-cartoon", "prompt": "Create an image of Molly Mabray from Molly of Denali standing at an outdoor trail kiosk. She is positioned in the midground, holding an open map while facing an information board. A closed backpack rests on a bench in the lower foreground, with a compass placed beside it. A trail marker stands to her left. In the background, a railing runs behind the information board.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_010_Molly_Mabray.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_010_Molly_Mabray.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Molly Mabray", "reference_ids": ["R1"]}, {"id": "O2", "name": "information board"}, {"id": "O3", "name": "map"}, {"id": "O4", "name": "trail marker"}, {"id": "O5", "name": "bench"}, {"id": "O6", "name": "railing"}, {"id": "O7", "name": "backpack"}, {"id": "O8", "name": "compass"}], "constraints": [{"id": "C1", "type": "layout", "text": "Molly Mabray is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Molly Mabray is holding the map.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The map is open.", "depends_on": ["O3"]}, {"id": "C4", "type": "relation", "text": "Molly Mabray is facing the information board.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "layout", "text": "The bench is located in the lower foreground.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The backpack rests on the bench.", "depends_on": ["O7", "O5"]}, {"id": "C7", "type": "attribute", "text": "The backpack is closed.", "depends_on": ["O7"]}, {"id": "C8", "type": "relation", "text": "The compass is placed beside the backpack.", "depends_on": ["O8", "O7"]}, {"id": "C9", "type": "relation", "text": "The compass is on the bench.", "depends_on": ["O8", "O5"]}, {"id": "C10", "type": "relation", "text": "The trail marker stands to the left of Molly Mabray.", "depends_on": ["O4", "O1"]}, {"id": "C11", "type": "layout", "text": "The railing is positioned in the background.", "depends_on": ["O6"]}, {"id": "C12", "type": "relation", "text": "The railing runs behind the information board.", "depends_on": ["O6", "O2"]}], "num_entities": 8, "num_constraints": 12, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 7}} +{"id": "1-cartoon_011", "category": "1-cartoon", "prompt": "Create an image of Mira from Mira, Royal Detective standing in a detective room. She is positioned in the midground at a case table, holding a magnifying glass above an open notebook. A corkboard hangs in the background with the word \"CLUE\" displayed on it. Three clue cards are pinned to the corkboard. A desk lamp sits on the case table, and a closed drawer is visible in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_011_Mira.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_011_Mira.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mira", "reference_ids": ["R1"]}, {"id": "O2", "name": "case table"}, {"id": "O3", "name": "notebook"}, {"id": "O4", "name": "corkboard"}, {"id": "O5", "name": "clue cards"}, {"id": "O6", "name": "desk lamp"}, {"id": "O7", "name": "magnifying glass"}, {"id": "O8", "name": "drawer"}], "constraints": [{"id": "C1", "type": "layout", "text": "Mira is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Mira stands at the case table.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Mira is holding the magnifying glass.", "depends_on": ["O1", "O7"]}, {"id": "C4", "type": "relation", "text": "The magnifying glass is above the notebook.", "depends_on": ["O7", "O3"]}, {"id": "C5", "type": "attribute", "text": "The notebook is open.", "depends_on": ["O3"]}, {"id": "C6", "type": "relation", "text": "The notebook rests on the case table.", "depends_on": ["O3", "O2"]}, {"id": "C7", "type": "layout", "text": "The corkboard is positioned in the background.", "depends_on": ["O4"]}, {"id": "C8", "type": "attribute", "text": "The corkboard shows the word \"CLUE\".", "depends_on": ["O4"]}, {"id": "C9", "type": "relation", "text": "The clue cards are pinned to the corkboard.", "depends_on": ["O5", "O4"]}, {"id": "C10", "type": "attribute", "text": "Exactly three clue cards are pinned to the corkboard.", "depends_on": ["O5", "O4"]}, {"id": "C11", "type": "relation", "text": "The desk lamp sits on the case table.", "depends_on": ["O6", "O2"]}, {"id": "C12", "type": "layout", "text": "The drawer is in the lower foreground.", "depends_on": ["O8"]}, {"id": "C13", "type": "attribute", "text": "The drawer is closed.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 13, "constraint_type_counts": {"attribute": 4, "layout": 3, "relation": 6}} +{"id": "1-cartoon_012", "category": "1-cartoon", "prompt": "Create an image of Doug from Doug Unplugs standing in a robot testing room. He is positioned at a control panel in the midground, holding a cable connector toward a small robot on the table. A status screen behind the robot displays the word \"GO\". A cable spool sits in the lower foreground, and a storage cabinet is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_012_Doug.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_012_Doug.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Doug", "reference_ids": ["R1"]}, {"id": "O2", "name": "control panel"}, {"id": "O3", "name": "cable connector"}, {"id": "O4", "name": "robot"}, {"id": "O5", "name": "table"}, {"id": "O6", "name": "status screen"}, {"id": "O7", "name": "cable spool"}, {"id": "O8", "name": "storage cabinet"}], "constraints": [{"type": "layout", "text": "Doug is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Doug stands at the control panel.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "Doug is holding the cable connector.", "depends_on": ["O1", "O3"], "id": "C3"}, {"type": "relation", "text": "The cable connector is held toward the robot.", "depends_on": ["O3", "O4"], "id": "C4"}, {"type": "relation", "text": "The robot rests on the table.", "depends_on": ["O4", "O5"], "id": "C5"}, {"type": "relation", "text": "The status screen is positioned behind the robot.", "depends_on": ["O6", "O4"], "id": "C6"}, {"type": "attribute", "text": "The status screen shows the word \"GO\".", "depends_on": ["O6"], "id": "C7"}, {"type": "layout", "text": "The cable spool is located in the lower foreground.", "depends_on": ["O7"], "id": "C8"}, {"type": "layout", "text": "The storage cabinet is in the background.", "depends_on": ["O8"], "id": "C9"}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "1-cartoon_013", "category": "1-cartoon", "prompt": "Create an image of Ada Twist from Ada Twist, Scientist standing on a station platform. She is positioned in the midground next to a tall ticket machine, holding an open notebook and a pencil in her hands. A yellow safety line marks the platform edge in the lower foreground. Behind her, a wooden bench sits against the wall. A large clock hangs in the background above the bench.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_013_Ada_Twist.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_013_Ada_Twist.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ada Twist", "reference_ids": ["R1"]}, {"id": "O2", "name": "platform"}, {"id": "O3", "name": "ticket machine"}, {"id": "O4", "name": "notebook"}, {"id": "O5", "name": "pencil"}, {"id": "O6", "name": "safety line"}, {"id": "O7", "name": "wooden bench"}, {"id": "O8", "name": "clock"}], "constraints": [{"id": "C1", "type": "layout", "text": "Ada Twist is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Ada Twist is standing next to the ticket machine.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Ada Twist is holding the notebook.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Ada Twist is holding the pencil.", "depends_on": ["O1", "O5"]}, {"id": "C5", "type": "attribute", "text": "The notebook is open.", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The safety line is located in the lower foreground.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The safety line marks the edge of the platform.", "depends_on": ["O6", "O2"]}, {"id": "C8", "type": "layout", "text": "The wooden bench is positioned in the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "The clock hangs above the wooden bench.", "depends_on": ["O8", "O7"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "1-cartoon_014", "category": "1-cartoon", "prompt": "Create an image of Glendale from Centaurworld standing at a theater prop table. She is positioned in the midground, reaching toward an open prop trunk. A costume mask rests on the table beside a row of three ribbon spools. A stage mirror is visible in the background, and a floor mat lies in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_014_Glendale.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_014_Glendale.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Glendale", "reference_ids": ["R1"]}, {"id": "O2", "name": "prop table"}, {"id": "O3", "name": "prop trunk"}, {"id": "O4", "name": "costume mask"}, {"id": "O5", "name": "ribbon spools"}, {"id": "O6", "name": "stage mirror"}, {"id": "O7", "name": "floor mat"}], "constraints": [{"type": "layout", "text": "Glendale is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Glendale is reaching toward the prop trunk.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "attribute", "text": "The prop trunk is open.", "depends_on": ["O3"], "id": "C3"}, {"type": "relation", "text": "The prop trunk is beside the prop table.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "relation", "text": "The costume mask rests on the prop table.", "depends_on": ["O4", "O2"], "id": "C5"}, {"type": "relation", "text": "The ribbon spools are arranged on the prop table.", "depends_on": ["O5", "O2"], "id": "C6"}, {"type": "attribute", "text": "Exactly three ribbon spools are arranged beside the costume mask.", "depends_on": ["O5", "O4"], "id": "C7"}, {"type": "layout", "text": "The stage mirror is positioned in the background.", "depends_on": ["O6"], "id": "C8"}, {"type": "layout", "text": "The floor mat is located in the lower foreground.", "depends_on": ["O7"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "1-cartoon_015", "category": "1-cartoon", "prompt": "Create an image of Bertie Songthrush from Tuca & Bertie working at a bakery prep counter. She is positioned in the midground, holding a mixing spoon above a batter bowl. A recipe card with the text \"BAKE\" is clipped to a stand on the counter. Three measuring cups sit in a row in the lower foreground. A cooling rack with pastries is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_015_Bertie_Songthrush.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_015_Bertie_Songthrush.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Bertie Songthrush", "reference_ids": ["R1"]}, {"id": "O2", "name": "prep counter"}, {"id": "O3", "name": "mixing spoon"}, {"id": "O4", "name": "batter bowl"}, {"id": "O5", "name": "recipe card"}, {"id": "O6", "name": "measuring cups"}, {"id": "O7", "name": "cooling rack"}, {"id": "O8", "name": "pastries"}], "constraints": [{"type": "layout", "text": "Bertie Songthrush is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Bertie Songthrush is holding the mixing spoon.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "relation", "text": "The mixing spoon is above the batter bowl.", "depends_on": ["O3", "O4"], "id": "C3"}, {"type": "relation", "text": "The batter bowl rests on the prep counter.", "depends_on": ["O4", "O2"], "id": "C4"}, {"type": "relation", "text": "The recipe card is clipped to a stand on the prep counter.", "depends_on": ["O5", "O2"], "id": "C5"}, {"type": "attribute", "text": "The recipe card shows the word \"BAKE\".", "depends_on": ["O5"], "id": "C6"}, {"type": "layout", "text": "The measuring cups are located in the lower foreground.", "depends_on": ["O6"], "id": "C7"}, {"type": "attribute", "text": "Exactly three measuring cups sit in the lower foreground.", "depends_on": ["O6"], "id": "C8"}, {"type": "layout", "text": "The cooling rack is positioned in the background.", "depends_on": ["O7"], "id": "C9"}, {"type": "relation", "text": "The pastries are on the cooling rack.", "depends_on": ["O8", "O7"], "id": "C10"}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "1-cartoon_016", "category": "1-cartoon", "prompt": "Create an image of Cupcake from Cupcake & Dino: General Services standing in a building service hallway. Cupcake is holding a clipboard beside a rolling cart. An open toolbox rests on the cart, and a mop bucket sits in the lower foreground. An exit sign on the wall displays the word \"EXIT\". A utility shelf in the background holds three folded towels.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_016_Cupcake.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_016_Cupcake.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Cupcake", "reference_ids": ["R1"]}, {"id": "O2", "name": "clipboard"}, {"id": "O3", "name": "rolling cart"}, {"id": "O4", "name": "toolbox"}, {"id": "O5", "name": "mop bucket"}, {"id": "O6", "name": "exit sign"}, {"id": "O7", "name": "utility shelf"}, {"id": "O8", "name": "towels"}], "constraints": [{"type": "relation", "text": "Cupcake is holding the clipboard.", "depends_on": ["O1", "O2"], "id": "C1"}, {"type": "relation", "text": "Cupcake stands beside the rolling cart.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "relation", "text": "The toolbox rests on the rolling cart.", "depends_on": ["O4", "O3"], "id": "C3"}, {"type": "attribute", "text": "The toolbox is open.", "depends_on": ["O4"], "id": "C4"}, {"type": "layout", "text": "The mop bucket is located in the lower foreground.", "depends_on": ["O5"], "id": "C5"}, {"type": "attribute", "text": "The exit sign is wall-mounted.", "depends_on": ["O6"], "id": "C6"}, {"type": "attribute", "text": "The exit sign shows the word \"EXIT\".", "depends_on": ["O6"], "id": "C7"}, {"type": "layout", "text": "The utility shelf is positioned in the background.", "depends_on": ["O7"], "id": "C8"}, {"type": "relation", "text": "The towels are on the utility shelf.", "depends_on": ["O8", "O7"], "id": "C9"}, {"type": "attribute", "text": "The utility shelf holds exactly three towels.", "depends_on": ["O8", "O7"], "id": "C10"}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 4}} +{"id": "1-cartoon_017", "category": "1-cartoon", "prompt": "Create an image of Garbage from Dogs in Space standing behind a large metal workspace table. He is holding a rolled-up blueprint in his paws. An open toolbox rests on the table next to a scattered pile of metal gears. In the background, a glowing desk lamp is placed near a tall storage shelf. A tilted stool sits in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_017_Garbage.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_017_Garbage.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Garbage", "reference_ids": ["R1"]}, {"id": "O2", "name": "workspace table"}, {"id": "O3", "name": "blueprint"}, {"id": "O4", "name": "toolbox"}, {"id": "O5", "name": "gears"}, {"id": "O6", "name": "desk lamp"}, {"id": "O7", "name": "storage shelf"}, {"id": "O8", "name": "stool"}], "constraints": [{"id": "C1", "type": "relation", "text": "Garbage stands behind the workspace table.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Garbage is holding the blueprint.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The toolbox is open.", "depends_on": ["O4"]}, {"id": "C4", "type": "relation", "text": "The toolbox rests on the workspace table.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "relation", "text": "The gears are positioned next to the toolbox.", "depends_on": ["O5", "O4"]}, {"id": "C6", "type": "layout", "text": "The storage shelf is located in the background.", "depends_on": ["O7"]}, {"id": "C7", "type": "relation", "text": "The desk lamp is placed near the storage shelf.", "depends_on": ["O6", "O7"]}, {"id": "C8", "type": "attribute", "text": "The stool is tilted.", "depends_on": ["O8"]}, {"id": "C9", "type": "layout", "text": "The stool is located in the lower foreground.", "depends_on": ["O8"]}, {"id": "C10", "type": "attribute", "text": "The blueprint is rolled up.", "depends_on": ["O3"]}, {"id": "C11", "type": "attribute", "text": "The gears are metal.", "depends_on": ["O5"]}], "num_entities": 8, "num_constraints": 11, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 5}} +{"id": "1-cartoon_018", "category": "1-cartoon", "prompt": "Create an image of Seth and Pascal from The Fungies! standing outside a shopfront doorway. Seth is positioned in the midground, holding an open bag in his hands. Pascal stands directly beside Seth, pointing up at a street sign mounted on the wall. The shopfront doorway frames them from behind. A set of pavement steps occupies the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_018_Seth.jpg"}, {"id": "R2", "path": "reference_images/1-cartoon/1-cartoon_018_Pascal.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_018_Seth.jpg", "reference_images/1-cartoon/1-cartoon_018_Pascal.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Seth", "reference_ids": ["R1"]}, {"id": "O2", "name": "Pascal", "reference_ids": ["R2"]}, {"id": "O3", "name": "doorway"}, {"id": "O4", "name": "bag"}, {"id": "O5", "name": "street sign"}, {"id": "O6", "name": "wall"}, {"id": "O7", "name": "pavement steps"}], "constraints": [{"id": "C1", "type": "layout", "text": "Seth is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Pascal stands directly beside Seth.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Seth is holding the bag.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "attribute", "text": "The bag is open.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "Pascal is pointing at the street sign.", "depends_on": ["O2", "O5"]}, {"id": "C6", "type": "relation", "text": "The street sign is mounted on the wall.", "depends_on": ["O5", "O6"]}, {"id": "C7", "type": "relation", "text": "The doorway is located behind Seth.", "depends_on": ["O1", "O3"]}, {"id": "C8", "type": "relation", "text": "The doorway is located behind Pascal.", "depends_on": ["O2", "O3"]}, {"id": "C9", "type": "layout", "text": "The pavement steps are located in the lower foreground.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "1-cartoon_019", "category": "1-cartoon", "prompt": "Create an image of Elliott and Mo from Elliott from Earth in a club room. Elliott stands in the midground behind a wooden club table, holding a green marker in his hand. Mo sits directly on the club table beside an open notebook, facing Elliott. A large whiteboard is mounted on the wall in the background behind the two characters. The word \"PLAN\" is clearly written in large letters on the whiteboard.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_019_Elliott.jpg"}, {"id": "R2", "path": "reference_images/1-cartoon/1-cartoon_019_Mo.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_019_Elliott.jpg", "reference_images/1-cartoon/1-cartoon_019_Mo.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Elliott", "reference_ids": ["R1"]}, {"id": "O2", "name": "Mo", "reference_ids": ["R2"]}, {"id": "O3", "name": "club table"}, {"id": "O4", "name": "green marker"}, {"id": "O5", "name": "notebook"}, {"id": "O6", "name": "whiteboard"}], "constraints": [{"id": "C1", "type": "layout", "text": "Elliott is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Elliott is standing behind the club table.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Elliott is holding the green marker.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Mo is sitting on the club table.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "relation", "text": "Mo is facing Elliott.", "depends_on": ["O1", "O2"]}, {"id": "C6", "type": "relation", "text": "The notebook rests on the club table beside Mo.", "depends_on": ["O5", "O3", "O2"]}, {"id": "C7", "type": "attribute", "text": "The notebook is open.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The whiteboard is located in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The whiteboard is mounted behind Elliott and Mo.", "depends_on": ["O6", "O1", "O2"]}, {"id": "C10", "type": "attribute", "text": "The whiteboard shows the word \"PLAN\".", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 6}} +{"id": "1-cartoon_020", "category": "1-cartoon", "prompt": "Create an image of Barney Guttman and Norma Khan from Dead End: Paranormal Park. Barney Guttman stands behind a booth counter in the midground, resting his hands on its surface. Norma Khan stands beside him, reaching out to adjust a microphone stand. A display board is mounted on the front of the booth counter, clearly showing the text \"HELP\". A stage curtain hangs in the background, framing the scene.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_020_Barney_Guttman.jpg"}, {"id": "R2", "path": "reference_images/1-cartoon/1-cartoon_020_Norma_Khan.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_020_Barney_Guttman.jpg", "reference_images/1-cartoon/1-cartoon_020_Norma_Khan.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Barney Guttman", "reference_ids": ["R1"]}, {"id": "O2", "name": "Norma Khan", "reference_ids": ["R2"]}, {"id": "O3", "name": "booth counter"}, {"id": "O4", "name": "microphone stand"}, {"id": "O5", "name": "display board"}, {"id": "O6", "name": "stage curtain"}], "constraints": [{"id": "C1", "type": "layout", "text": "Barney Guttman is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Barney Guttman stands behind the booth counter.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Barney Guttman is resting his hands on the booth counter.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "Norma Khan stands beside Barney Guttman.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "relation", "text": "Norma Khan is reaching out to adjust the microphone stand.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "The display board is mounted on the front of the booth counter.", "depends_on": ["O3", "O5"]}, {"id": "C7", "type": "attribute", "text": "The display board shows the word \"HELP\".", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The stage curtain is positioned in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The stage curtain hangs behind the booth counter.", "depends_on": ["O3", "O6"]}, {"id": "C10", "type": "attribute", "text": "The stage curtain is hanging.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 6}} +{"id": "1-cartoon_021", "category": "1-cartoon", "prompt": "Create an image of Wolfboy and Sprout from Wolfboy and the Everything Factory waiting at a transit stop. Wolfboy stands in the midground, reaching toward an open vehicle door. Sprout sits on a station bench beside him, looking toward the door. A ticket machine stands in the background behind the bench. The textured platform edge runs across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_021_Wolfboy.jpg"}, {"id": "R2", "path": "reference_images/1-cartoon/1-cartoon_021_Sprout.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_021_Wolfboy.jpg", "reference_images/1-cartoon/1-cartoon_021_Sprout.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Wolfboy", "reference_ids": ["R1"]}, {"id": "O2", "name": "Sprout", "reference_ids": ["R2"]}, {"id": "O3", "name": "vehicle door"}, {"id": "O4", "name": "station bench"}, {"id": "O5", "name": "ticket machine"}, {"id": "O6", "name": "platform edge"}], "constraints": [{"id": "C1", "type": "layout", "text": "Wolfboy is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Wolfboy is reaching toward the vehicle door.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The vehicle door is open.", "depends_on": ["O3"]}, {"id": "C4", "type": "relation", "text": "Sprout is sitting on the station bench.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Sprout is positioned beside Wolfboy.", "depends_on": ["O2", "O1"]}, {"id": "C6", "type": "relation", "text": "Sprout is looking toward the vehicle door.", "depends_on": ["O2", "O3"]}, {"id": "C7", "type": "layout", "text": "The ticket machine is positioned in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The ticket machine stands behind the station bench.", "depends_on": ["O5", "O4"]}, {"id": "C9", "type": "layout", "text": "The platform edge is located in the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "1-cartoon_022", "category": "1-cartoon", "prompt": "Create an image of Daniel Spellbound and Hoagie from Daniel Spellbound inside a bedroom. Daniel Spellbound is seated on the edge of a bed in the midground, looking down toward his companion. Hoagie stands on a rug in the lower foreground, facing Daniel Spellbound. Beside the bed, an open drawer sits below stacked books. A window is positioned in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_022_Daniel_Spellbound.jpg"}, {"id": "R2", "path": "reference_images/1-cartoon/1-cartoon_022_Hoagie.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_022_Daniel_Spellbound.jpg", "reference_images/1-cartoon/1-cartoon_022_Hoagie.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Daniel Spellbound", "reference_ids": ["R1"]}, {"id": "O2", "name": "Hoagie", "reference_ids": ["R2"]}, {"id": "O3", "name": "bed"}, {"id": "O4", "name": "rug"}, {"id": "O5", "name": "drawer"}, {"id": "O6", "name": "books"}, {"id": "O7", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Daniel Spellbound is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Hoagie is positioned in the lower foreground.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Daniel Spellbound is seated on the bed.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "Hoagie stands on the rug.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Hoagie is facing Daniel Spellbound.", "depends_on": ["O1", "O2"]}, {"id": "C6", "type": "relation", "text": "The books rest above the drawer.", "depends_on": ["O6", "O5"]}, {"id": "C7", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O7"]}, {"id": "C8", "type": "relation", "text": "The drawer is positioned beside the bed.", "depends_on": ["O5", "O3"]}, {"id": "C9", "type": "attribute", "text": "The drawer is open.", "depends_on": ["O5"]}, {"id": "C10", "type": "attribute", "text": "The books are stacked.", "depends_on": ["O6"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "1-cartoon_023", "category": "1-cartoon", "prompt": "Create an image of Shrike Sanchez and Beebs from Monkey Wrench in a reading area. Shrike Sanchez is standing on a wooden step ladder, reaching for a thick book on the top shelf. Beebs is seated at a reading table in the lower foreground, looking up toward Shrike. A neat stack of cards rests on the table right in front of Beebs. Tall bookshelves fill the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_023_Shrike_Sanchez.jpg"}, {"id": "R2", "path": "reference_images/1-cartoon/1-cartoon_023_Beebs.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_023_Shrike_Sanchez.jpg", "reference_images/1-cartoon/1-cartoon_023_Beebs.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Shrike Sanchez", "reference_ids": ["R1"]}, {"id": "O2", "name": "Beebs", "reference_ids": ["R2"]}, {"id": "O3", "name": "wooden step ladder"}, {"id": "O4", "name": "book"}, {"id": "O5", "name": "top shelf"}, {"id": "O6", "name": "reading table"}, {"id": "O7", "name": "cards"}, {"id": "O8", "name": "bookshelves"}], "constraints": [{"id": "C1", "type": "relation", "text": "Shrike Sanchez is standing on the wooden step ladder.", "depends_on": ["O1", "O3"]}, {"id": "C2", "type": "relation", "text": "Shrike Sanchez is reaching for the book.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "The book is located on the top shelf.", "depends_on": ["O4", "O5"]}, {"id": "C4", "type": "layout", "text": "Beebs is positioned in the lower foreground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Beebs is seated at the reading table.", "depends_on": ["O2", "O6"]}, {"id": "C6", "type": "relation", "text": "Beebs is looking up toward Shrike Sanchez.", "depends_on": ["O1", "O2"]}, {"id": "C7", "type": "relation", "text": "The cards rest on the reading table.", "depends_on": ["O6", "O7"]}, {"id": "C8", "type": "relation", "text": "The cards are directly in front of Beebs.", "depends_on": ["O2", "O7"]}, {"id": "C9", "type": "layout", "text": "The bookshelves fill the background.", "depends_on": ["O8"]}, {"id": "C10", "type": "layout", "text": "The reading table is in the foreground.", "depends_on": ["O6"]}, {"id": "C11", "type": "attribute", "text": "The cards are stacked.", "depends_on": ["O7"]}], "num_entities": 8, "num_constraints": 11, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 7}} +{"id": "1-cartoon_024", "category": "1-cartoon", "prompt": "Create an image of Pepper Ann Pearson from Pepper Ann standing in a rooftop garden. She is holding a watering can in her hand, leaning forward. A wooden plant box sits in the lower foreground, resting on square floor tiles. A metal railing runs along the edge of the roof directly behind her. A small worktable with a stacked pile of clay pots is positioned to her left in the midground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_024_Pepper_Ann_Pearson.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_024_Pepper_Ann_Pearson.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Pepper Ann Pearson", "reference_ids": ["R1"]}, {"id": "O2", "name": "watering can"}, {"id": "O3", "name": "plant box"}, {"id": "O4", "name": "floor tiles"}, {"id": "O5", "name": "metal railing"}, {"id": "O6", "name": "worktable"}, {"id": "O7", "name": "clay pots"}], "constraints": [{"id": "C1", "type": "relation", "text": "Pepper Ann Pearson is holding the watering can.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "Pepper Ann Pearson is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "attribute", "text": "Pepper Ann Pearson is leaning forward.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "The plant box is positioned in the lower foreground.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The plant box rests on the floor tiles.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The metal railing is located in the background directly behind Pepper Ann Pearson.", "depends_on": ["O1", "O5"]}, {"id": "C7", "type": "relation", "text": "The worktable is positioned to the left of Pepper Ann Pearson.", "depends_on": ["O1", "O6"]}, {"id": "C8", "type": "relation", "text": "The clay pots are resting on top of the worktable.", "depends_on": ["O6", "O7"]}, {"id": "C9", "type": "attribute", "text": "The clay pots are stacked in a pile.", "depends_on": ["O7"]}, {"id": "C10", "type": "layout", "text": "Pepper Ann Pearson is positioned in the midground.", "depends_on": ["O1"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 5}} +{"id": "1-cartoon_025", "category": "1-cartoon", "prompt": "Create an image of Milo Murphy from Milo Murphy's Law standing in a school locker hallway. He holds a yellow pencil while looking down at a folded paper map. An open backpack rests on the floor beside a row of lockers. A wall clock hangs above a notice board in the background, and a striped floor mat crosses the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_025_Milo_Murphy.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_025_Milo_Murphy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Milo Murphy", "reference_ids": ["R1"]}, {"id": "O2", "name": "pencil"}, {"id": "O3", "name": "paper map"}, {"id": "O4", "name": "backpack"}, {"id": "O5", "name": "lockers"}, {"id": "O6", "name": "wall clock"}, {"id": "O7", "name": "notice board"}, {"id": "O8", "name": "floor mat"}], "constraints": [{"id": "C1", "type": "relation", "text": "Milo Murphy is holding the pencil.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "The pencil is yellow.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Milo Murphy is looking down at the paper map.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "The paper map is folded.", "depends_on": ["O3"]}, {"id": "C5", "type": "attribute", "text": "The backpack is open.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The backpack rests beside the lockers.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "relation", "text": "The wall clock hangs above the notice board.", "depends_on": ["O6", "O7"]}, {"id": "C8", "type": "layout", "text": "The notice board is positioned in the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "layout", "text": "The floor mat crosses the lower foreground.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 4}} +{"id": "1-cartoon_026", "category": "1-cartoon", "prompt": "Create an image of Robotboy from Robotboy hovering in a charging bay. Robotboy is positioned in the midground facing a wall display. A charging cable is connected to a power dock below him. A tool tray sits in the lower foreground with three bolts inside it. A warning panel on the wall displays the word \"POWER\".", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_026_Robotboy.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_026_Robotboy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Robotboy", "reference_ids": ["R1"]}, {"id": "O2", "name": "wall display"}, {"id": "O3", "name": "charging cable"}, {"id": "O4", "name": "power dock"}, {"id": "O5", "name": "tool tray"}, {"id": "O6", "name": "bolts"}, {"id": "O7", "name": "warning panel"}], "constraints": [{"type": "layout", "text": "Robotboy is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "Robotboy is hovering above the ground.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "Robotboy is facing the wall display.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The charging cable is connected to the power dock.", "depends_on": ["O3", "O4"], "id": "C4"}, {"type": "relation", "text": "The power dock is below Robotboy.", "depends_on": ["O4", "O1"], "id": "C5"}, {"type": "layout", "text": "The tool tray is located in the lower foreground.", "depends_on": ["O5"], "id": "C6"}, {"type": "relation", "text": "The bolts are inside the tool tray.", "depends_on": ["O6", "O5"], "id": "C7"}, {"type": "attribute", "text": "The tool tray contains exactly three bolts.", "depends_on": ["O6", "O5"], "id": "C8"}, {"type": "attribute", "text": "The warning panel shows the word \"POWER\".", "depends_on": ["O7"], "id": "C9"}, {"type": "layout", "text": "The warning panel is mounted on the wall.", "depends_on": ["O7"], "id": "C10"}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 4}} +{"id": "1-cartoon_027", "category": "1-cartoon", "prompt": "Create an image of Sheen Estevez from Planet Sheen standing in a club room. He is positioned in the midground, leaning forward with his hands resting on a large wooden desk. In the lower foreground, an open backpack sits on the floor with scattered notebooks next to it. Behind him, a wide chalkboard is positioned in the background. A colorful poster hangs next to the chalkboard, displaying the text 'RULES' in large letters.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_027_Sheen_Estevez.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_027_Sheen_Estevez.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sheen Estevez", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden desk"}, {"id": "O3", "name": "backpack"}, {"id": "O4", "name": "notebooks"}, {"id": "O5", "name": "chalkboard"}, {"id": "O6", "name": "poster"}], "constraints": [{"id": "C1", "type": "layout", "text": "Sheen Estevez is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Sheen Estevez is leaning forward.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Sheen Estevez has his hands resting on the wooden desk.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The backpack is located in the lower foreground.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The notebooks are next to the backpack.", "depends_on": ["O4", "O3"]}, {"id": "C6", "type": "layout", "text": "The chalkboard is positioned in the background.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The chalkboard is directly behind Sheen Estevez.", "depends_on": ["O5", "O1"]}, {"id": "C8", "type": "relation", "text": "The poster hangs next to the chalkboard.", "depends_on": ["O6", "O5"]}, {"id": "C9", "type": "attribute", "text": "The poster shows the word \"RULES\".", "depends_on": ["O6"]}, {"id": "C10", "type": "attribute", "text": "The backpack is open.", "depends_on": ["O3"]}, {"id": "C11", "type": "attribute", "text": "The notebooks are scattered.", "depends_on": ["O4"]}], "num_entities": 6, "num_constraints": 11, "constraint_type_counts": {"attribute": 4, "layout": 3, "relation": 4}} +{"id": "1-cartoon_028", "category": "1-cartoon", "prompt": "Create an image of Dorg Van Dango from Dorg Van Dango presenting at a school science fair. He is positioned in the midground, holding a microphone beside a table with a tabletop model on it. A display board stands behind the model with the word \"INFO\" displayed on it. Three labeled jars are lined up along the lower foreground edge of the table. A banner hangs in the background above the table.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_028_Dorg_Van_Dango.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_028_Dorg_Van_Dango.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Dorg Van Dango", "reference_ids": ["R1"]}, {"id": "O2", "name": "table"}, {"id": "O3", "name": "microphone"}, {"id": "O4", "name": "tabletop model"}, {"id": "O5", "name": "display board"}, {"id": "O6", "name": "jars"}, {"id": "O7", "name": "banner"}], "constraints": [{"type": "layout", "text": "Dorg Van Dango is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Dorg Van Dango is holding the microphone.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "relation", "text": "Dorg Van Dango stands beside the tabletop model.", "depends_on": ["O1", "O4"], "id": "C3"}, {"type": "relation", "text": "The tabletop model rests on the table.", "depends_on": ["O4", "O2"], "id": "C4"}, {"type": "relation", "text": "The display board stands behind the tabletop model.", "depends_on": ["O5", "O4"], "id": "C5"}, {"type": "attribute", "text": "The display board shows the word \"INFO\".", "depends_on": ["O5"], "id": "C6"}, {"type": "relation", "text": "The jars are lined up along the lower foreground edge of the table.", "depends_on": ["O6", "O2"], "id": "C7"}, {"type": "attribute", "text": "Exactly three jars are lined up along the lower foreground edge of the table.", "depends_on": ["O6", "O2"], "id": "C8"}, {"type": "relation", "text": "The banner hangs in the background above the table.", "depends_on": ["O7", "O2"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 6}} +{"id": "1-cartoon_029", "category": "1-cartoon", "prompt": "Create an image of Ollie Allen from Ollie's Pack waiting at a vehicle station. He is standing in the midground, looking toward a closed vehicle door. A large ticket machine is positioned to his left, and a wooden bench sits directly behind him. The lower foreground features a textured platform edge with painted floor markings. In the background, a station sign displays the text 'WAIT' above the platform.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_029_Ollie_Allen.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_029_Ollie_Allen.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ollie Allen", "reference_ids": ["R1"]}, {"id": "O2", "name": "vehicle door"}, {"id": "O3", "name": "ticket machine"}, {"id": "O4", "name": "wooden bench"}, {"id": "O5", "name": "platform edge"}, {"id": "O6", "name": "floor markings"}, {"id": "O7", "name": "station sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Ollie Allen is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Ollie Allen is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Ollie Allen is looking toward the vehicle door.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "The vehicle door is closed.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The ticket machine is positioned to the left of Ollie Allen.", "depends_on": ["O3", "O1"]}, {"id": "C6", "type": "relation", "text": "The wooden bench is located directly behind Ollie Allen.", "depends_on": ["O4", "O1"]}, {"id": "C7", "type": "layout", "text": "The platform edge spans the lower foreground.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The floor markings are painted on the platform edge.", "depends_on": ["O6", "O5"]}, {"id": "C9", "type": "layout", "text": "The station sign is positioned in the background.", "depends_on": ["O7"]}, {"id": "C10", "type": "attribute", "text": "The station sign shows the word \"WAIT\".", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 4}} +{"id": "1-cartoon_030", "category": "1-cartoon", "prompt": "Create an image of Angelo from Angelo Rules relaxing in a bedroom. Angelo is seated on the edge of a bed in the midground, holding a game controller in his hands. In the lower foreground, a rug lies flat on the floor next to an open drawer. Behind him, stacked books rest on a desk. A window is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_030_Angelo.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_030_Angelo.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Angelo", "reference_ids": ["R1"]}, {"id": "O2", "name": "bed"}, {"id": "O3", "name": "game controller"}, {"id": "O4", "name": "rug"}, {"id": "O5", "name": "drawer"}, {"id": "O6", "name": "books"}, {"id": "O7", "name": "desk"}, {"id": "O8", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Angelo is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Angelo is seated on the edge of the bed.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Angelo is holding the game controller.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "The rug is located in the lower foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "attribute", "text": "The drawer is open.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The drawer is next to the rug.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "attribute", "text": "The books are stacked.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The books rest on the desk.", "depends_on": ["O6", "O7"]}, {"id": "C9", "type": "relation", "text": "The desk is positioned behind Angelo.", "depends_on": ["O1", "O7"]}, {"id": "C10", "type": "layout", "text": "The window is in the background.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "1-cartoon_031", "category": "1-cartoon", "prompt": "Create an image of Cornelius Fillmore from Fillmore! standing beside a school lost-and-found table. He is holding a clipboard while facing a row of labeled bins. A backpack rests inside the left bin, and a water bottle sits inside the right bin. A bulletin board hangs in the background with the word \"FOUND\" displayed on it. The lower foreground shows a taped floor line in front of the table.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_031_Cornelius_Fillmore.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_031_Cornelius_Fillmore.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Cornelius Fillmore", "reference_ids": ["R1"]}, {"id": "O2", "name": "lost-and-found table"}, {"id": "O3", "name": "clipboard"}, {"id": "O4", "name": "bins"}, {"id": "O5", "name": "backpack"}, {"id": "O6", "name": "water bottle"}, {"id": "O7", "name": "bulletin board"}, {"id": "O8", "name": "floor line"}], "constraints": [{"type": "relation", "text": "Cornelius Fillmore is standing beside the lost-and-found table.", "depends_on": ["O1", "O2"], "id": "C1"}, {"type": "relation", "text": "Cornelius Fillmore is holding the clipboard.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "relation", "text": "Cornelius Fillmore is facing the bins.", "depends_on": ["O1", "O4"], "id": "C3"}, {"type": "relation", "text": "The bins are arranged on the lost-and-found table.", "depends_on": ["O4", "O2"], "id": "C4"}, {"type": "attribute", "text": "The row of labeled bins contains exactly two bins.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The backpack is inside the left bin.", "depends_on": ["O5", "O4"], "id": "C6"}, {"type": "relation", "text": "The water bottle is inside the right bin.", "depends_on": ["O6", "O4"], "id": "C7"}, {"type": "layout", "text": "The bulletin board is positioned in the background.", "depends_on": ["O7"], "id": "C8"}, {"type": "attribute", "text": "The bulletin board shows the word \"FOUND\".", "depends_on": ["O7"], "id": "C9"}, {"type": "layout", "text": "The floor line crosses the lower foreground.", "depends_on": ["O8"], "id": "C10"}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 6}} +{"id": "1-cartoon_032", "category": "1-cartoon", "prompt": "Create an image of Maggie Pesky from The Buzz on Maggie standing at a large wooden worktable. She is holding a colored pencil in one hand while looking down at a large, unfolded blueprint resting on the table. An open backpack sits on the floor in the lower foreground, with three rolled papers sticking out of it. In the background, a tall bookshelf is filled with stacked books. A metal desk lamp hangs directly above the worktable, lighting the worktable.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_032_Maggie_Pesky.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_032_Maggie_Pesky.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Maggie Pesky", "reference_ids": ["R1"]}, {"id": "O2", "name": "worktable"}, {"id": "O3", "name": "pencil"}, {"id": "O4", "name": "blueprint"}, {"id": "O5", "name": "backpack"}, {"id": "O6", "name": "bookshelf"}, {"id": "O7", "name": "books"}, {"id": "O8", "name": "desk lamp"}, {"id": "O9", "name": "papers"}], "constraints": [{"id": "C1", "type": "relation", "text": "Maggie Pesky is standing at the worktable.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Maggie Pesky is holding the pencil.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The blueprint is unfolded.", "depends_on": ["O4"]}, {"id": "C4", "type": "relation", "text": "The blueprint is resting on the worktable.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "layout", "text": "The backpack is located in the lower foreground.", "depends_on": ["O5"]}, {"id": "C6", "type": "layout", "text": "The bookshelf is positioned in the background.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The books are on the bookshelf.", "depends_on": ["O7", "O6"]}, {"id": "C8", "type": "relation", "text": "The desk lamp hangs above the worktable.", "depends_on": ["O8", "O2"]}, {"id": "C9", "type": "attribute", "text": "The backpack is open.", "depends_on": ["O5"]}, {"id": "C10", "type": "attribute", "text": "The books are stacked.", "depends_on": ["O7"]}, {"id": "C11", "type": "attribute", "text": "Exactly three papers stick out of the backpack.", "depends_on": ["O9", "O5"]}, {"id": "C12", "type": "relation", "text": "The papers are sticking out of the backpack.", "depends_on": ["O9", "O5"]}], "num_entities": 9, "num_constraints": 12, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 6}} +{"id": "1-cartoon_033", "category": "1-cartoon", "prompt": "Create an image of Dave the Barbarian from Dave the Barbarian standing near a large wooden doorway. He is holding a closed travel bag in one hand while looking toward a street sign. Stone steps lead up to the doorway in the lower foreground. A wooden bench sits beside the entrance, and a torn poster hangs above the bench in the background. The street sign clearly displays the text \"WAY\" in large letters.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_033_Dave_the_Barbarian.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_033_Dave_the_Barbarian.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Dave the Barbarian", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden doorway"}, {"id": "O3", "name": "travel bag"}, {"id": "O4", "name": "street sign"}, {"id": "O5", "name": "stone steps"}, {"id": "O6", "name": "wooden bench"}, {"id": "O7", "name": "torn poster"}], "constraints": [{"id": "C1", "type": "layout", "text": "The stone steps are located in the lower foreground.", "depends_on": ["O5"]}, {"id": "C2", "type": "layout", "text": "The wooden doorway is positioned in the background.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Dave the Barbarian is standing near the wooden doorway.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Dave the Barbarian is holding the travel bag.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "Dave the Barbarian is looking toward the street sign.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "relation", "text": "The wooden bench sits beside the wooden doorway.", "depends_on": ["O6", "O2"]}, {"id": "C7", "type": "relation", "text": "The torn poster hangs above the wooden bench.", "depends_on": ["O7", "O6"]}, {"id": "C8", "type": "attribute", "text": "The street sign shows the word \"WAY\".", "depends_on": ["O4"]}, {"id": "C9", "type": "attribute", "text": "The travel bag is closed.", "depends_on": ["O3"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "1-cartoon_034", "category": "1-cartoon", "prompt": "Create an image of Bessie Higgenbottom from The Mighty B! standing behind a wooden booth counter. She is leaning forward and speaking into a silver microphone stand. A display board rests on the counter to her right, showing the word \"HONEY\" in bold letters. A heavy red curtain hangs in the background, framing the small stage area. The stage floor edge is visible in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_034_Bessie_Higgenbottom.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_034_Bessie_Higgenbottom.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Bessie Higgenbottom", "reference_ids": ["R1"]}, {"id": "O2", "name": "booth counter"}, {"id": "O3", "name": "microphone stand"}, {"id": "O4", "name": "display board"}, {"id": "O5", "name": "curtain"}, {"id": "O6", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "relation", "text": "Bessie Higgenbottom stands behind the booth counter.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "Bessie Higgenbottom is leaning forward.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Bessie Higgenbottom is speaking into the microphone stand.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The display board rests on the booth counter.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "relation", "text": "The display board is positioned to the right of Bessie Higgenbottom.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "attribute", "text": "The display board shows the word \"HONEY\".", "depends_on": ["O4"]}, {"id": "C7", "type": "layout", "text": "The curtain hangs in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The stage floor edge runs along the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "1-cartoon_035", "category": "1-cartoon", "prompt": "Create an image of Manny Rivera from El Tigre: The Adventures of Manny Rivera standing at an arena entrance. Manny Rivera is positioned in the midground, holding a paper ticket toward a turnstile. A rope barrier runs across the lower foreground. A poster board stands to his right with the word \"MATCH\" displayed on it. In the background, a doorway opens toward the arena seats.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_035_Manny_Rivera.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_035_Manny_Rivera.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Manny Rivera", "reference_ids": ["R1"]}, {"id": "O2", "name": "paper ticket"}, {"id": "O3", "name": "turnstile"}, {"id": "O4", "name": "rope barrier"}, {"id": "O5", "name": "poster board"}, {"id": "O6", "name": "doorway"}, {"id": "O7", "name": "arena seats"}], "constraints": [{"type": "layout", "text": "Manny Rivera is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Manny Rivera is holding the paper ticket.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The paper ticket is held toward the turnstile.", "depends_on": ["O2", "O3"], "id": "C3"}, {"type": "layout", "text": "The rope barrier runs across the lower foreground.", "depends_on": ["O4"], "id": "C4"}, {"type": "relation", "text": "The poster board stands to the right of Manny Rivera.", "depends_on": ["O5", "O1"], "id": "C5"}, {"type": "attribute", "text": "The poster board shows the word \"MATCH\".", "depends_on": ["O5"], "id": "C6"}, {"type": "layout", "text": "The doorway is positioned in the background.", "depends_on": ["O6"], "id": "C7"}, {"type": "relation", "text": "The doorway opens toward the arena seats.", "depends_on": ["O6", "O7"], "id": "C8"}, {"type": "relation", "text": "The arena seats are beyond the doorway.", "depends_on": ["O7", "O6"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "1-cartoon_036", "category": "1-cartoon", "prompt": "Create an image of Zick Barrymore from Monster Allergy standing in a creature research lab. He is positioned in the midground, reaching toward a glass specimen tank. A glowing slime jar sits on a metal lab cart in the lower foreground. A wall chart hangs in the background with the word \"MONSTER\" displayed on it. Three sample vials are lined up beside the tank.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_036_Zick_Barrymore.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_036_Zick_Barrymore.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Zick Barrymore", "reference_ids": ["R1"]}, {"id": "O2", "name": "specimen tank"}, {"id": "O3", "name": "slime jar"}, {"id": "O4", "name": "lab cart"}, {"id": "O5", "name": "wall chart"}, {"id": "O6", "name": "sample vials"}], "constraints": [{"type": "layout", "text": "Zick Barrymore is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Zick Barrymore is reaching toward the specimen tank.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "layout", "text": "The lab cart is located in the lower foreground.", "depends_on": ["O4"], "id": "C3"}, {"type": "relation", "text": "The slime jar sits on the lab cart.", "depends_on": ["O3", "O4"], "id": "C4"}, {"type": "attribute", "text": "The slime jar is glowing.", "depends_on": ["O3"], "id": "C5"}, {"type": "layout", "text": "The wall chart is positioned in the background.", "depends_on": ["O5"], "id": "C6"}, {"type": "attribute", "text": "The wall chart shows the word \"MONSTER\".", "depends_on": ["O5"], "id": "C7"}, {"type": "relation", "text": "The sample vials are lined up beside the specimen tank.", "depends_on": ["O6", "O2"], "id": "C8"}, {"type": "attribute", "text": "Exactly three sample vials are lined up beside the specimen tank.", "depends_on": ["O6", "O2"], "id": "C9"}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 3}} +{"id": "1-cartoon_037", "category": "1-cartoon", "prompt": "Create an image of Eliot Kid from Eliot Kid standing in a library. He is reaching up to pull a thick red book from a tall wooden bookshelf. In the lower foreground, a reading table holds a stack of open books and a small brass lamp. The background features rows of neatly organized shelves stretching into the distance. A short shelf label reading 'READ' is attached to the wood right next to his hand.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_037_Eliot_Kid.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_037_Eliot_Kid.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Eliot Kid", "reference_ids": ["R1"]}, {"id": "O2", "name": "red book"}, {"id": "O3", "name": "wooden bookshelf"}, {"id": "O4", "name": "reading table"}, {"id": "O5", "name": "books"}, {"id": "O6", "name": "lamp"}, {"id": "O7", "name": "shelf label"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Eliot Kid is reaching up with his hand.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Eliot Kid is touching the red book.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The red book is located on the wooden bookshelf.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "layout", "text": "The reading table is positioned in the lower foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The books are resting on the reading table.", "depends_on": ["O5", "O4"]}, {"id": "C6", "type": "relation", "text": "The lamp is placed on the reading table.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "layout", "text": "The wooden bookshelf is positioned in the background.", "depends_on": ["O3"]}, {"id": "C8", "type": "relation", "text": "The shelf label is attached to the wooden bookshelf.", "depends_on": ["O7", "O3"]}, {"id": "C9", "type": "attribute", "text": "The shelf label shows the word \"READ\".", "depends_on": ["O7"]}, {"id": "C10", "type": "attribute", "text": "The books are open.", "depends_on": ["O5"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 5}} +{"id": "1-cartoon_038", "category": "1-cartoon", "prompt": "Create an image of Sally Bollywood from Sally Bollywood: Super Detective on a rooftop investigation scene. She holds a magnifying glass over an open evidence envelope on a small worktable. A camera sits beside the envelope, and a rooftop railing runs behind the table. Patterned floor tiles cover the lower foreground, while an open sky fills the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_038_Sally_Bollywood.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_038_Sally_Bollywood.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sally Bollywood", "reference_ids": ["R1"]}, {"id": "O2", "name": "magnifying glass"}, {"id": "O3", "name": "evidence envelope"}, {"id": "O4", "name": "worktable"}, {"id": "O5", "name": "camera"}, {"id": "O6", "name": "rooftop railing"}, {"id": "O7", "name": "floor tiles"}, {"id": "O8", "name": "sky"}], "constraints": [{"id": "C1", "type": "relation", "text": "Sally Bollywood is holding the magnifying glass.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "The magnifying glass is over the evidence envelope.", "depends_on": ["O2", "O3"]}, {"id": "C3", "type": "attribute", "text": "The evidence envelope is open.", "depends_on": ["O3"]}, {"id": "C4", "type": "relation", "text": "The evidence envelope rests on the worktable.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "relation", "text": "The camera sits beside the evidence envelope.", "depends_on": ["O5", "O3"]}, {"id": "C6", "type": "relation", "text": "The rooftop railing runs behind the worktable.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "layout", "text": "The floor tiles cover the lower foreground.", "depends_on": ["O7"]}, {"id": "C8", "type": "layout", "text": "The sky fills the background.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "1-cartoon_039", "category": "1-cartoon", "prompt": "Create an image of Todd from Wayside sitting at a wooden desk. He is holding a yellow pencil in his right hand and looking toward a piece of folded paper. A stack of books rests on the left side of the wooden desk. In the background, a large window lets in light, and a small lamp sits in front of it. The lower foreground shows the edge of the wooden desk and a tilted chair.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_039_Todd.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_039_Todd.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Todd", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden desk"}, {"id": "O3", "name": "pencil"}, {"id": "O4", "name": "paper"}, {"id": "O5", "name": "books"}, {"id": "O6", "name": "window"}, {"id": "O7", "name": "lamp"}, {"id": "O8", "name": "chair"}], "constraints": [{"id": "C1", "type": "relation", "text": "Todd is sitting at the wooden desk.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Todd is holding the pencil.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Todd is looking toward the paper.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The paper rests on the wooden desk.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "relation", "text": "The books are placed on the wooden desk.", "depends_on": ["O5", "O2"]}, {"id": "C6", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The lamp sits in front of the window.", "depends_on": ["O7", "O6"]}, {"id": "C8", "type": "layout", "text": "The chair is positioned in the lower foreground.", "depends_on": ["O8"]}, {"id": "C9", "type": "attribute", "text": "The pencil is yellow.", "depends_on": ["O3"]}, {"id": "C10", "type": "attribute", "text": "The paper is folded.", "depends_on": ["O4"]}, {"id": "C11", "type": "attribute", "text": "The books are stacked.", "depends_on": ["O5"]}, {"id": "C12", "type": "attribute", "text": "The chair is tilted.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 12, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 6}} +{"id": "1-cartoon_040", "category": "1-cartoon", "prompt": "Create an image of Maya Santos from Maya & Miguel standing outside a neighborhood shopfront. She is positioned in the midground, holding a colored paper bag in one hand. A wooden bench sits to her left, resting on the foreground pavement. Behind her, the open doorway of the shop reveals a dimly lit interior. A street sign is mounted on the wall next to the entrance.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_040_Maya_Santos.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_040_Maya_Santos.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Maya Santos", "reference_ids": ["R1"]}, {"id": "O2", "name": "shopfront"}, {"id": "O3", "name": "paper bag"}, {"id": "O4", "name": "wooden bench"}, {"id": "O5", "name": "pavement"}, {"id": "O6", "name": "doorway"}, {"id": "O7", "name": "street sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Maya Santos is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Maya Santos is holding the paper bag.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The wooden bench is positioned to the left of Maya Santos.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The wooden bench rests on the pavement.", "depends_on": ["O4", "O5"]}, {"id": "C5", "type": "layout", "text": "The pavement is located in the lower foreground.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The doorway is located directly behind Maya Santos.", "depends_on": ["O1", "O6"]}, {"id": "C7", "type": "attribute", "text": "The doorway reveals an interior space.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The street sign is mounted on the wall next to the doorway.", "depends_on": ["O7", "O6"]}, {"id": "C9", "type": "layout", "text": "The shopfront is in the background.", "depends_on": ["O2"]}, {"id": "C10", "type": "attribute", "text": "The doorway is open.", "depends_on": ["O6"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "1-cartoon_041", "category": "1-cartoon", "prompt": "Create an image of Mikey Simon from Kappa Mikey standing in a TV studio green room. He is leaning over a script table with both hands on an open script. A director chair sits in the lower foreground facing the table. A wall monitor hangs in the background and displays the word \"TAKE\". A clothing rack stands to the right side of the room with three hangers visible.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_041_Mikey_Simon.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_041_Mikey_Simon.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mikey Simon", "reference_ids": ["R1"]}, {"id": "O2", "name": "script table"}, {"id": "O3", "name": "script"}, {"id": "O4", "name": "director chair"}, {"id": "O5", "name": "wall monitor"}, {"id": "O6", "name": "clothing rack"}, {"id": "O7", "name": "hangers"}], "constraints": [{"type": "relation", "text": "Mikey Simon is leaning over the script table.", "depends_on": ["O1", "O2"], "id": "C1"}, {"type": "relation", "text": "Mikey Simon has both hands on the script.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "attribute", "text": "The script is open.", "depends_on": ["O3"], "id": "C3"}, {"type": "relation", "text": "The script rests on the script table.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The director chair is located in the lower foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The director chair faces the script table.", "depends_on": ["O4", "O2"], "id": "C6"}, {"type": "layout", "text": "The wall monitor is positioned in the background.", "depends_on": ["O5"], "id": "C7"}, {"type": "attribute", "text": "The wall monitor shows the word \"TAKE\".", "depends_on": ["O5"], "id": "C8"}, {"type": "layout", "text": "The clothing rack stands to the right side of the room.", "depends_on": ["O6"], "id": "C9"}, {"type": "relation", "text": "The hangers are on the clothing rack.", "depends_on": ["O7", "O6"], "id": "C10"}, {"type": "attribute", "text": "Exactly three hangers are visible on the clothing rack.", "depends_on": ["O7", "O6"], "id": "C11"}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 5}} +{"id": "1-cartoon_042", "category": "1-cartoon", "prompt": "Create an image of Chuck McFarlane from Motorcity standing on a station platform. He is positioned in the midground, leaning against a closed vehicle door. A large ticket machine stands to his right, featuring a short text sign that reads \"FARE\". In the lower foreground, a painted platform edge marks the boundary of the floor. A metal bench rests in the background behind the ticket machine.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_042_Chuck_McFarlane.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_042_Chuck_McFarlane.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Chuck McFarlane", "reference_ids": ["R1"]}, {"id": "O2", "name": "vehicle door"}, {"id": "O3", "name": "ticket machine"}, {"id": "O4", "name": "sign"}, {"id": "O5", "name": "platform edge"}, {"id": "O6", "name": "metal bench"}], "constraints": [{"id": "C1", "type": "layout", "text": "Chuck McFarlane is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The vehicle door is closed.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Chuck McFarlane is leaning against the vehicle door.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The ticket machine stands to the right of Chuck McFarlane.", "depends_on": ["O3", "O1"]}, {"id": "C5", "type": "relation", "text": "The sign is mounted on the ticket machine.", "depends_on": ["O4", "O3"]}, {"id": "C6", "type": "attribute", "text": "The sign shows the word \"FARE\".", "depends_on": ["O4"]}, {"id": "C7", "type": "layout", "text": "The platform edge is located in the lower foreground.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The metal bench is positioned in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The metal bench rests behind the ticket machine.", "depends_on": ["O6", "O3"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "1-cartoon_043", "category": "1-cartoon", "prompt": "Create an image of Lance from Sym-Bionic Titan standing in a hangar repair bay. He is positioned in the midground, leaning against a work platform. A folded tarp lies across a metal crate in the lower foreground. Three tool cases are stacked beside the platform. A warning light is mounted in the background above a service door.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_043_Lance.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_043_Lance.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Lance", "reference_ids": ["R1"]}, {"id": "O2", "name": "work platform"}, {"id": "O3", "name": "tarp"}, {"id": "O4", "name": "metal crate"}, {"id": "O5", "name": "tool cases"}, {"id": "O6", "name": "warning light"}, {"id": "O7", "name": "service door"}], "constraints": [{"type": "layout", "text": "Lance is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Lance is leaning against the work platform.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "layout", "text": "The metal crate is located in the lower foreground.", "depends_on": ["O4"], "id": "C3"}, {"type": "relation", "text": "The tarp lies across the metal crate.", "depends_on": ["O3", "O4"], "id": "C4"}, {"type": "attribute", "text": "The tarp is folded.", "depends_on": ["O3"], "id": "C5"}, {"type": "relation", "text": "The tool cases are stacked beside the work platform.", "depends_on": ["O5", "O2"], "id": "C6"}, {"type": "attribute", "text": "Exactly three tool cases are stacked beside the work platform.", "depends_on": ["O5", "O2"], "id": "C7"}, {"type": "layout", "text": "The warning light is mounted in the background.", "depends_on": ["O6"], "id": "C8"}, {"type": "relation", "text": "The warning light is above the service door.", "depends_on": ["O6", "O7"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "1-cartoon_044", "category": "1-cartoon", "prompt": "Create an image of Zak Saturday from The Secret Saturdays examining a museum display room. Zak Saturday is positioned in the midground, holding a flashlight toward a glass display case. A fossil model rests inside the display case. A wall label with the text \"LORE\" is mounted beside the case. Two rope posts stand in the lower foreground, and a map board is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_044_Zak_Saturday.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_044_Zak_Saturday.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Zak Saturday", "reference_ids": ["R1"]}, {"id": "O2", "name": "flashlight"}, {"id": "O3", "name": "display case"}, {"id": "O4", "name": "fossil model"}, {"id": "O5", "name": "wall label"}, {"id": "O6", "name": "rope posts"}, {"id": "O7", "name": "map board"}], "constraints": [{"type": "layout", "text": "Zak Saturday is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Zak Saturday is holding the flashlight.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The flashlight is pointed toward the display case.", "depends_on": ["O2", "O3"], "id": "C3"}, {"type": "relation", "text": "The fossil model rests inside the display case.", "depends_on": ["O4", "O3"], "id": "C4"}, {"type": "relation", "text": "The wall label is mounted beside the display case.", "depends_on": ["O5", "O3"], "id": "C5"}, {"type": "attribute", "text": "The wall label shows the word \"LORE\".", "depends_on": ["O5"], "id": "C6"}, {"type": "layout", "text": "The rope posts stand in the lower foreground.", "depends_on": ["O6"], "id": "C7"}, {"type": "attribute", "text": "Exactly two rope posts stand in the lower foreground.", "depends_on": ["O6"], "id": "C8"}, {"type": "layout", "text": "The map board is positioned in the background.", "depends_on": ["O7"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "1-cartoon_045", "category": "1-cartoon", "prompt": "Create an image of Ansi Molina from Welcome to the Wayne standing in an apartment mailroom. He is holding a package scanner toward a parcel resting on a sorting counter. Three mail slots are visible on the wall behind him. A rolling cart sits in the lower foreground with a parcel on it, and the cart parcel is open. A wall label above the slots displays the word \"MAIL\".", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_045_Ansi_Molina.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_045_Ansi_Molina.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ansi Molina", "reference_ids": ["R1"]}, {"id": "O2", "name": "package scanner"}, {"id": "O3", "name": "parcel on the counter"}, {"id": "O4", "name": "sorting counter"}, {"id": "O5", "name": "mail slots"}, {"id": "O6", "name": "rolling cart"}, {"id": "O7", "name": "cart parcel"}, {"id": "O8", "name": "wall label"}], "constraints": [{"type": "relation", "text": "Ansi Molina is holding the package scanner.", "depends_on": ["O1", "O2"], "id": "C1"}, {"type": "relation", "text": "The package scanner is pointed toward the parcel on the counter.", "depends_on": ["O2", "O3"], "id": "C2"}, {"type": "relation", "text": "The parcel on the counter rests on the sorting counter.", "depends_on": ["O3", "O4"], "id": "C3"}, {"type": "relation", "text": "The mail slots are on the wall behind Ansi Molina.", "depends_on": ["O5", "O1"], "id": "C4"}, {"type": "attribute", "text": "Exactly three mail slots are visible on the wall behind Ansi Molina.", "depends_on": ["O5", "O1"], "id": "C5"}, {"type": "layout", "text": "The rolling cart is located in the lower foreground.", "depends_on": ["O6"], "id": "C6"}, {"type": "relation", "text": "The cart parcel sits on the rolling cart.", "depends_on": ["O7", "O6"], "id": "C7"}, {"type": "attribute", "text": "The cart parcel is open.", "depends_on": ["O7"], "id": "C8"}, {"type": "relation", "text": "The wall label is above the mail slots.", "depends_on": ["O8", "O5"], "id": "C9"}, {"type": "attribute", "text": "The wall label shows the word \"MAIL\".", "depends_on": ["O8"], "id": "C10"}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 6}} +{"id": "1-cartoon_046", "category": "1-cartoon", "prompt": "Create an image of Vendetta from Making Fiends standing at a potion workbench. She is holding a pencil over an open recipe card. A cauldron sits on the workbench beside three potion bottles. A shelf of jars is visible in the background. A hanging lamp is suspended above the cauldron, and a stool sits in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_046_Vendetta.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_046_Vendetta.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Vendetta", "reference_ids": ["R1"]}, {"id": "O2", "name": "potion workbench"}, {"id": "O3", "name": "recipe card"}, {"id": "O4", "name": "pencil"}, {"id": "O5", "name": "cauldron"}, {"id": "O6", "name": "potion bottles"}, {"id": "O7", "name": "shelf"}, {"id": "O8", "name": "jars"}, {"id": "O9", "name": "hanging lamp"}, {"id": "O10", "name": "stool"}], "constraints": [{"type": "relation", "text": "Vendetta is standing at the potion workbench.", "depends_on": ["O1", "O2"], "id": "C1"}, {"type": "relation", "text": "Vendetta is holding the pencil.", "depends_on": ["O1", "O4"], "id": "C2"}, {"type": "relation", "text": "The pencil is held over the recipe card.", "depends_on": ["O4", "O3"], "id": "C3"}, {"type": "attribute", "text": "The recipe card is open.", "depends_on": ["O3"], "id": "C4"}, {"type": "relation", "text": "The cauldron sits on the potion workbench.", "depends_on": ["O5", "O2"], "id": "C5"}, {"type": "relation", "text": "The potion bottles are beside the cauldron.", "depends_on": ["O6", "O5"], "id": "C6"}, {"type": "attribute", "text": "Exactly three potion bottles sit beside the cauldron.", "depends_on": ["O6", "O5"], "id": "C7"}, {"type": "layout", "text": "The shelf is in the background.", "depends_on": ["O7"], "id": "C8"}, {"type": "relation", "text": "The jars are on the shelf.", "depends_on": ["O8", "O7"], "id": "C9"}, {"type": "relation", "text": "The hanging lamp is suspended above the cauldron.", "depends_on": ["O9", "O5"], "id": "C10"}, {"type": "layout", "text": "The stool is located in the lower foreground.", "depends_on": ["O10"], "id": "C11"}], "num_entities": 10, "num_constraints": 11, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 7}} +{"id": "1-cartoon_047", "category": "1-cartoon", "prompt": "Create an image of Sanjay Patel from Sanjay and Craig standing at a neighborhood snack stall. He is holding an open backpack beside a counter tray. Three snack boxes are lined up on the tray. A hanging menu board in the background displays the word \"SNACK\". A cooler sits in the lower foreground next to the stall counter.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_047_Sanjay_Patel.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_047_Sanjay_Patel.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sanjay Patel", "reference_ids": ["R1"]}, {"id": "O2", "name": "snack stall"}, {"id": "O3", "name": "backpack"}, {"id": "O4", "name": "counter tray"}, {"id": "O5", "name": "snack boxes"}, {"id": "O6", "name": "menu board"}, {"id": "O7", "name": "cooler"}, {"id": "O8", "name": "stall counter"}], "constraints": [{"type": "relation", "text": "Sanjay Patel is standing at the snack stall.", "depends_on": ["O1", "O2"], "id": "C1"}, {"type": "relation", "text": "Sanjay Patel is holding the backpack.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "attribute", "text": "The backpack is open.", "depends_on": ["O3"], "id": "C3"}, {"type": "relation", "text": "The counter tray rests on the stall counter.", "depends_on": ["O4", "O8"], "id": "C4"}, {"type": "relation", "text": "The snack boxes are lined up on the counter tray.", "depends_on": ["O5", "O4"], "id": "C5"}, {"type": "attribute", "text": "Exactly three snack boxes are lined up on the counter tray.", "depends_on": ["O5", "O4"], "id": "C6"}, {"type": "layout", "text": "The menu board is positioned in the background.", "depends_on": ["O6"], "id": "C7"}, {"type": "attribute", "text": "The menu board shows the word \"SNACK\".", "depends_on": ["O6"], "id": "C8"}, {"type": "layout", "text": "The cooler is located in the lower foreground.", "depends_on": ["O7"], "id": "C9"}, {"type": "relation", "text": "The cooler is next to the stall counter.", "depends_on": ["O7", "O8"], "id": "C10"}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 5}} +{"id": "1-cartoon_048", "category": "1-cartoon", "prompt": "Create an image of Bunsen from Bunsen Is a Beast standing in a classroom. He is reaching out to place a large open book on a wooden desk in the midground. In the lower foreground, a tilted chair sits pushed away from the desk. Behind him, a wide chalkboard spans the background wall. A colorful poster hangs next to the chalkboard, displaying the word 'CLUB' in bold letters.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_048_Bunsen.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_048_Bunsen.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Bunsen", "reference_ids": ["R1"]}, {"id": "O2", "name": "book"}, {"id": "O3", "name": "desk"}, {"id": "O4", "name": "chair"}, {"id": "O5", "name": "chalkboard"}, {"id": "O6", "name": "poster"}], "constraints": [{"id": "C1", "type": "layout", "text": "Bunsen is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Bunsen is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Bunsen is reaching toward the book.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "The book is open.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The book rests on the desk.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "layout", "text": "The chair is located in the lower foreground.", "depends_on": ["O4"]}, {"id": "C7", "type": "attribute", "text": "The chair is tilted.", "depends_on": ["O4"]}, {"id": "C8", "type": "layout", "text": "The chalkboard is located in the background.", "depends_on": ["O5"]}, {"id": "C9", "type": "relation", "text": "The poster hangs next to the chalkboard.", "depends_on": ["O6", "O5"]}, {"id": "C10", "type": "attribute", "text": "The poster shows the word \"CLUB\".", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 4, "layout": 3, "relation": 3}} +{"id": "1-cartoon_049", "category": "1-cartoon", "prompt": "Create an image of Fangbone from Fangbone! standing behind a wooden booth counter on a raised platform. He holds a large wooden club raised in his right hand. A display board rests on the counter, featuring the short text \"QUEST\" in bold letters. The lower foreground shows dark audience silhouettes watching the platform. A heavy stage curtain hangs in the background, framing the scene.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_049_Fangbone.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_049_Fangbone.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Fangbone", "reference_ids": ["R1"]}, {"id": "O2", "name": "booth counter"}, {"id": "O3", "name": "wooden club"}, {"id": "O4", "name": "display board"}, {"id": "O5", "name": "audience silhouettes"}, {"id": "O6", "name": "stage curtain"}], "constraints": [{"id": "C1", "type": "relation", "text": "Fangbone stands behind the booth counter.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Fangbone is holding the wooden club.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The wooden club is raised.", "depends_on": ["O3"]}, {"id": "C4", "type": "relation", "text": "The display board rests on the booth counter.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "attribute", "text": "The display board shows the word \"QUEST\".", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The audience silhouettes are located in the lower foreground.", "depends_on": ["O5"]}, {"id": "C7", "type": "layout", "text": "The stage curtain hangs in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The stage curtain is behind the booth counter.", "depends_on": ["O6", "O2"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "1-cartoon_050", "category": "1-cartoon", "prompt": "Create an image of Rudy Tabootie from ChalkZone standing in a chalk art studio. Rudy is positioned in the midground, holding a chalk stick over a drawing board. A chalk tray filled with chalk sticks sits on the lower foreground edge of the board. A wall sketch behind him shows the word \"DRAW\". Three erasers are lined up on a shelf in the background.", "reference_images": [{"id": "R1", "path": "reference_images/1-cartoon/1-cartoon_050_Rudy_Tabootie.jpg"}], "reference_image_paths": ["reference_images/1-cartoon/1-cartoon_050_Rudy_Tabootie.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Rudy Tabootie", "reference_ids": ["R1"]}, {"id": "O2", "name": "chalk stick"}, {"id": "O3", "name": "drawing board"}, {"id": "O4", "name": "chalk tray"}, {"id": "O5", "name": "wall sketch"}, {"id": "O6", "name": "erasers"}, {"id": "O7", "name": "shelf"}], "constraints": [{"type": "layout", "text": "Rudy Tabootie is positioned in the midground.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Rudy Tabootie is holding the chalk stick.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The chalk stick is held over the drawing board.", "depends_on": ["O2", "O3"], "id": "C3"}, {"type": "relation", "text": "The chalk tray sits on the lower foreground edge of the drawing board.", "depends_on": ["O4", "O3"], "id": "C4"}, {"type": "relation", "text": "The wall sketch is positioned behind Rudy Tabootie.", "depends_on": ["O5", "O1"], "id": "C5"}, {"type": "attribute", "text": "The wall sketch shows the word \"DRAW\".", "depends_on": ["O5"], "id": "C6"}, {"type": "relation", "text": "The erasers are lined up on the shelf.", "depends_on": ["O6", "O7"], "id": "C7"}, {"type": "attribute", "text": "Exactly three erasers are lined up on the shelf.", "depends_on": ["O6", "O7"], "id": "C8"}, {"type": "layout", "text": "The shelf is in the background.", "depends_on": ["O7"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "2-game_001", "category": "2-game", "prompt": "Create an image of Curly Brace from Cave Story resting in a mechanical workshop. She is seated on a large metal crate in the foreground, holding a heavy rifle across her lap. Directly behind her in the midground is a sturdy workbench with a glowing monitor resting on top of it. A tall tool rack stands against the wall in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_001_Curly_Brace.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_001_Curly_Brace.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Curly Brace", "reference_ids": ["R1"]}, {"id": "O2", "name": "metal crate"}, {"id": "O3", "name": "rifle"}, {"id": "O4", "name": "workbench"}, {"id": "O5", "name": "monitor"}, {"id": "O6", "name": "tool rack"}], "constraints": [{"id": "C1", "type": "relation", "text": "Curly Brace is sitting on the metal crate.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "layout", "text": "Curly Brace is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "layout", "text": "The metal crate is positioned in the foreground.", "depends_on": ["O2"]}, {"id": "C4", "type": "relation", "text": "Curly Brace is holding the rifle across her lap.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The workbench is located in the midground, directly behind Curly Brace.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "relation", "text": "The monitor is resting on top of the workbench.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "layout", "text": "The tool rack is located in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly one featured character, Curly Brace.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "2-game_002", "category": "2-game", "prompt": "Create an image of Elster from SIGNALIS and Ariane Yeong from SIGNALIS inside a spacecraft cabin. Elster is standing in the foreground, facing a wide control console. Ariane Yeong is seated on a chair in the midground, looking toward Elster. A large screen is mounted on the wall directly behind the console, displaying a glowing red grid. A closed, heavy metal door is visible in the background on the right side of the room.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_002_Elster.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_002_Ariane_Yeong.png"}], "reference_image_paths": ["reference_images/2-game/2-game_002_Elster.jpg", "reference_images/2-game/2-game_002_Ariane_Yeong.png"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Elster", "reference_ids": ["R1"]}, {"id": "O2", "name": "Ariane Yeong", "reference_ids": ["R2"]}, {"id": "O3", "name": "control console"}, {"id": "O4", "name": "chair"}, {"id": "O5", "name": "screen"}, {"id": "O6", "name": "metal door"}], "constraints": [{"id": "C1", "type": "layout", "text": "Elster is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Elster is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Elster is facing the control console.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "Ariane Yeong is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Ariane Yeong is seated on the chair.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Ariane Yeong is looking toward Elster.", "depends_on": ["O1", "O2"]}, {"id": "C7", "type": "relation", "text": "The chair is located behind Elster.", "depends_on": ["O1", "O4"]}, {"id": "C8", "type": "relation", "text": "The screen is mounted behind the control console.", "depends_on": ["O3", "O5"]}, {"id": "C9", "type": "layout", "text": "The metal door is positioned in the background.", "depends_on": ["O6"]}, {"id": "C10", "type": "layout", "text": "The metal door is positioned on the right side of the room.", "depends_on": ["O6"]}, {"id": "C11", "type": "attribute", "text": "The metal door is closed.", "depends_on": ["O6"]}, {"id": "C12", "type": "attribute", "text": "The scene contains exactly two featured characters: Elster and Ariane Yeong.", "depends_on": ["O1", "O2"]}], "num_entities": 6, "num_constraints": 12, "constraint_type_counts": {"attribute": 3, "layout": 4, "relation": 5}} +{"id": "2-game_003", "category": "2-game", "prompt": "Create an image of Jill Stingray from VA-11 Hall-A and Dana Zane from VA-11 Hall-A in a bar setting. Jill Stingray is standing in the midground behind a sleek bar counter, holding a cocktail shaker in both hands. Dana Zane is seated on a tall stool in the foreground across the bar counter, leaning forward and looking directly at Jill. A bright neon sign hangs on the wall in the background, illuminating the space.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_003_Jill_Stingray.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_003_Dana_Zane.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_003_Jill_Stingray.jpg", "reference_images/2-game/2-game_003_Dana_Zane.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Jill Stingray", "reference_ids": ["R1"]}, {"id": "O2", "name": "Dana Zane", "reference_ids": ["R2"]}, {"id": "O3", "name": "bar counter"}, {"id": "O4", "name": "cocktail shaker"}, {"id": "O5", "name": "stool"}, {"id": "O6", "name": "neon sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Jill Stingray is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Dana Zane is positioned in the foreground.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Jill Stingray is standing behind the bar counter.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "Jill Stingray is holding the cocktail shaker.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "Dana Zane is seated on the stool.", "depends_on": ["O2", "O5"]}, {"id": "C6", "type": "relation", "text": "Dana Zane is positioned across the bar counter from Jill Stingray.", "depends_on": ["O1", "O2", "O3"]}, {"id": "C7", "type": "attribute", "text": "Dana Zane is leaning forward.", "depends_on": ["O2"]}, {"id": "C8", "type": "relation", "text": "Dana Zane is looking directly at Jill Stingray.", "depends_on": ["O1", "O2"]}, {"id": "C9", "type": "layout", "text": "The neon sign is located on the wall in the background.", "depends_on": ["O6"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly two featured characters: Jill Stingray and Dana Zane.", "depends_on": ["O1", "O2"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "2-game_004", "category": "2-game", "prompt": "Create an image of Nemesis from Hades II standing in a stone training arena. She is holding a large sword in her right hand and facing a wooden training dummy in the foreground. A weapon rack is positioned directly behind her in the midground. In the background, a tall stone pillar stands next to a hanging red banner.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_004_Nemesis.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_004_Nemesis.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Nemesis", "reference_ids": ["R1"]}, {"id": "O2", "name": "sword"}, {"id": "O3", "name": "wooden training dummy"}, {"id": "O4", "name": "weapon rack"}, {"id": "O5", "name": "stone pillar"}, {"id": "O6", "name": "red banner"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Nemesis is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Nemesis is holding the sword.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "layout", "text": "The wooden training dummy is located in the foreground.", "depends_on": ["O3"]}, {"id": "C4", "type": "relation", "text": "Nemesis is facing the wooden training dummy.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "layout", "text": "The weapon rack is positioned in the midground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The weapon rack is directly behind Nemesis.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "layout", "text": "The stone pillar is located in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The red banner is hanging next to the stone pillar.", "depends_on": ["O5", "O6"]}, {"id": "C9", "type": "attribute", "text": "The scene contains exactly one featured character, Nemesis.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "2-game_005", "category": "2-game", "prompt": "Create an image of Sumireko Usami from Touhou Project sitting on a wooden bench in the foreground. She is holding a smartphone in her hands and looking directly at the screen. A large backpack rests on the bench right next to her. In the background, a glowing street lamp illuminates a nearby street sign.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_005_Sumireko_Usami.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_005_Sumireko_Usami.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sumireko Usami", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden bench"}, {"id": "O3", "name": "smartphone"}, {"id": "O4", "name": "backpack"}, {"id": "O5", "name": "street lamp"}, {"id": "O6", "name": "street sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Sumireko Usami is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Sumireko Usami is sitting on the wooden bench.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Sumireko Usami is holding the smartphone.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "Sumireko Usami is looking directly at the smartphone.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The backpack is resting on the wooden bench.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "relation", "text": "The backpack is positioned next to Sumireko Usami.", "depends_on": ["O4", "O1"]}, {"id": "C7", "type": "layout", "text": "The street lamp is located in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The street sign is located near the street lamp.", "depends_on": ["O6", "O5"]}, {"id": "C9", "type": "attribute", "text": "The scene contains exactly one featured character, Sumireko Usami.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "2-game_006", "category": "2-game", "prompt": "Create an image of Shiki Tohno from Tsukihime sitting at a wooden desk in the foreground. A glowing lamp illuminates a small open notebook resting on the desk surface. To the right of the desk, a tall bookshelf stands against the wall in the midground. Shiki Tohno is facing toward a large window located in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_006_Shiki_Tohno.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_006_Shiki_Tohno.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Shiki Tohno", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden desk"}, {"id": "O3", "name": "lamp"}, {"id": "O4", "name": "notebook"}, {"id": "O5", "name": "bookshelf"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Shiki Tohno is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Shiki Tohno is sitting at the wooden desk.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The lamp is resting on the wooden desk.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The notebook is resting on the wooden desk.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "attribute", "text": "The notebook is open.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The bookshelf is located to the right of the wooden desk.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "layout", "text": "The bookshelf is in the midground.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "Shiki Tohno is facing toward the window.", "depends_on": ["O1", "O6"]}, {"id": "C9", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O6"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly one featured character, Shiki Tohno.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "2-game_007", "category": "2-game", "prompt": "Create an image of Sill Plain from Rance series standing in a quiet study room. She is positioned behind a large wooden desk in the foreground, looking down at an open book resting on the surface. A glowing lantern sits on the left side of the desk, illuminating her face. In the background, a tall bookshelf is filled with thick volumes, while a large window is visible on the right side of the room.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_007_Sill_Plain.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_007_Sill_Plain.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sill Plain", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden desk"}, {"id": "O3", "name": "book"}, {"id": "O4", "name": "lantern"}, {"id": "O5", "name": "bookshelf"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Sill Plain is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "The wooden desk is located in the foreground.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Sill Plain is positioned behind the wooden desk.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The book is resting on the wooden desk.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "relation", "text": "Sill Plain is looking down at the book.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "relation", "text": "The lantern is on the left side of the wooden desk.", "depends_on": ["O4", "O2"]}, {"id": "C7", "type": "layout", "text": "The bookshelf is located in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The window is positioned on the right side of the scene.", "depends_on": ["O6"]}, {"id": "C9", "type": "attribute", "text": "The book is open.", "depends_on": ["O3"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly one featured character, Sill Plain.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 4}} +{"id": "2-game_008", "category": "2-game", "prompt": "Create an image of Nayuki Minase from Kanon and Makoto Sawatari from Kanon in a snowy outdoor park. Nayuki Minase is positioned in the foreground, sitting on a wooden bench and holding a scarf in her hands. Makoto Sawatari is standing to the right of the wooden bench, pointing upwards toward a glowing street lamp. The street lamp is located in the background, and deep snow covers the background while the wooden bench rests on the snow.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_008_Nayuki_Minase.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_008_Makoto_Sawatari.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_008_Nayuki_Minase.jpg", "reference_images/2-game/2-game_008_Makoto_Sawatari.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Nayuki Minase", "reference_ids": ["R1"]}, {"id": "O2", "name": "Makoto Sawatari", "reference_ids": ["R2"]}, {"id": "O3", "name": "wooden bench"}, {"id": "O4", "name": "scarf"}, {"id": "O5", "name": "street lamp"}, {"id": "O6", "name": "snow"}], "constraints": [{"id": "C1", "type": "layout", "text": "Nayuki Minase is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Nayuki Minase is sitting on the wooden bench.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Nayuki Minase is holding the scarf.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Makoto Sawatari is standing to the right of the wooden bench.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "attribute", "text": "Makoto Sawatari is pointing upwards.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "Makoto Sawatari is pointing toward the street lamp.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "layout", "text": "The street lamp is located in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "Deep snow covers the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The wooden bench is resting on the snow.", "depends_on": ["O3", "O6"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly two featured characters: Nayuki Minase and Makoto Sawatari.", "depends_on": ["O1", "O2"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "2-game_009", "category": "2-game", "prompt": "Create an image of Minagi Tohno from AIR, Misuzu Kamio from AIR, and Kano Kirishima from AIR waiting at a train station platform. Misuzu Kamio is seated on a wooden bench in the foreground. Minagi Tohno is standing to the left of the bench, holding a large luggage bag. Kano Kirishima is standing to the right of the bench, facing a station sign. A tall vending machine is visible in the background behind the bench.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_009_Minagi_Tohno.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_009_Misuzu_Kamio.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_009_Kano_Kirishima.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_009_Minagi_Tohno.jpg", "reference_images/2-game/2-game_009_Misuzu_Kamio.jpg", "reference_images/2-game/2-game_009_Kano_Kirishima.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Minagi Tohno", "reference_ids": ["R1"]}, {"id": "O2", "name": "Misuzu Kamio", "reference_ids": ["R2"]}, {"id": "O3", "name": "Kano Kirishima", "reference_ids": ["R3"]}, {"id": "O4", "name": "wooden bench"}, {"id": "O5", "name": "luggage bag"}, {"id": "O6", "name": "station sign"}, {"id": "O7", "name": "vending machine"}], "constraints": [{"id": "C1", "type": "layout", "text": "Misuzu Kamio is positioned in the foreground.", "depends_on": ["O2"]}, {"id": "C2", "type": "relation", "text": "Misuzu Kamio is seated on the wooden bench.", "depends_on": ["O2", "O4"]}, {"id": "C3", "type": "relation", "text": "Minagi Tohno is positioned to the left of the wooden bench.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Minagi Tohno is holding the luggage bag.", "depends_on": ["O1", "O5"]}, {"id": "C5", "type": "relation", "text": "Kano Kirishima is positioned to the right of the wooden bench.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "Kano Kirishima is facing the station sign.", "depends_on": ["O3", "O6"]}, {"id": "C7", "type": "layout", "text": "The vending machine is located in the background.", "depends_on": ["O7"]}, {"id": "C8", "type": "relation", "text": "The vending machine is behind the wooden bench.", "depends_on": ["O4", "O7"]}, {"id": "C9", "type": "attribute", "text": "The scene contains exactly three featured characters: Minagi Tohno, Misuzu Kamio, and Kano Kirishima.", "depends_on": ["O1", "O2", "O3"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "2-game_010", "category": "2-game", "prompt": "Create an image of Suzuha Amane from Steins Gate standing in the foreground of a cluttered workshop. She is holding a wrench in one hand and resting her other hand on a bicycle. In the background, a glowing CRT monitor sits on a wooden workbench. At least two cardboard boxes are stacked on the floor to the left of the bicycle.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_010_Suzuha_Amane.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_010_Suzuha_Amane.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Suzuha Amane", "reference_ids": ["R1"]}, {"id": "O2", "name": "wrench"}, {"id": "O3", "name": "bicycle"}, {"id": "O4", "name": "CRT monitor"}, {"id": "O5", "name": "wooden workbench"}, {"id": "O6", "name": "cardboard boxes"}], "constraints": [{"id": "C1", "type": "layout", "text": "Suzuha Amane is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Suzuha Amane is holding a wrench.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Suzuha Amane is resting her hand on the bicycle.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "The CRT monitor is located in the background.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The CRT monitor sits on the wooden workbench.", "depends_on": ["O4", "O5"]}, {"id": "C6", "type": "relation", "text": "The cardboard boxes are positioned to the left of the bicycle.", "depends_on": ["O6", "O3"]}, {"id": "C7", "type": "attribute", "text": "At least two cardboard boxes are present.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "2-game_011", "category": "2-game", "prompt": "Create an image of Rimi Sakihata from Chaos Head Noah and Sena Aoi from Chaos Head Noah waiting at a train station. Rimi Sakihata is standing in the foreground, holding a smartphone in her right hand. Sena Aoi is sitting on a wooden bench in the midground, looking toward Rimi. A large ticket machine is visible to the left of the bench, and a train is arriving in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_011_Rimi_Sakihata.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_011_Sena_Aoi.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_011_Rimi_Sakihata.jpg", "reference_images/2-game/2-game_011_Sena_Aoi.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Rimi Sakihata", "reference_ids": ["R1"]}, {"id": "O2", "name": "Sena Aoi", "reference_ids": ["R2"]}, {"id": "O3", "name": "smartphone"}, {"id": "O4", "name": "wooden bench"}, {"id": "O5", "name": "ticket machine"}, {"id": "O6", "name": "train"}], "constraints": [{"id": "C1", "type": "layout", "text": "Rimi Sakihata is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Rimi Sakihata is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Rimi Sakihata is holding the smartphone in her right hand.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "Sena Aoi is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Sena Aoi is sitting on the wooden bench.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Sena Aoi is looking toward Rimi Sakihata.", "depends_on": ["O1", "O2"]}, {"id": "C7", "type": "relation", "text": "The ticket machine is located to the left of the wooden bench.", "depends_on": ["O4", "O5"]}, {"id": "C8", "type": "layout", "text": "The train is positioned in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The train is behind Sena Aoi.", "depends_on": ["O2", "O6"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly two featured characters: Rimi Sakihata and Sena Aoi.", "depends_on": ["O1", "O2"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "2-game_012", "category": "2-game", "prompt": "Create an image of Serika Onoe from Chaos Child and Hinae Arimura from Chaos Child in a school broadcasting room. Serika Onoe is standing in the foreground, leaning over a wooden desk. Hinae Arimura is seated in the midground, holding a silver microphone. A large computer monitor is resting on the desk between them, and a colorful poster hangs on the wall in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_012_Serika_Onoe.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_012_Hinae_Arimura.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_012_Serika_Onoe.jpg", "reference_images/2-game/2-game_012_Hinae_Arimura.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Serika Onoe", "reference_ids": ["R1"]}, {"id": "O2", "name": "Hinae Arimura", "reference_ids": ["R2"]}, {"id": "O3", "name": "wooden desk"}, {"id": "O4", "name": "silver microphone"}, {"id": "O5", "name": "monitor"}, {"id": "O6", "name": "poster"}], "constraints": [{"id": "C1", "type": "layout", "text": "Serika Onoe is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Serika Onoe is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Serika Onoe is leaning over the wooden desk.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "Hinae Arimura is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "attribute", "text": "Hinae Arimura is seated.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "Hinae Arimura is holding the silver microphone.", "depends_on": ["O2", "O4"]}, {"id": "C7", "type": "relation", "text": "The monitor is resting on the wooden desk.", "depends_on": ["O5", "O3"]}, {"id": "C8", "type": "relation", "text": "The monitor is located between Serika Onoe and Hinae Arimura.", "depends_on": ["O5", "O1", "O2"]}, {"id": "C9", "type": "layout", "text": "The poster is hanging on the wall in the background.", "depends_on": ["O6"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly two featured characters: Serika Onoe and Hinae Arimura.", "depends_on": ["O1", "O2"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 4}} +{"id": "2-game_013", "category": "2-game", "prompt": "Create an image of Konomi Yuzuhara from To Heart 2, Tamaki Kousaka from To Heart 2, and Manaka Komaki from To Heart 2 gathered in a library. Konomi Yuzuhara is seated on the left side of a large reading table, looking down at an open book. Tamaki Kousaka is standing directly behind Konomi Yuzuhara, resting one hand on her shoulder. Manaka Komaki is seated on the right side of the reading table, facing the other two girls. A tall bookshelf is visible in the background, and a large window is on the far right side of the room.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_013_Konomi_Yuzuhara.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_013_Tamaki_Kousaka.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_013_Manaka_Komaki.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_013_Konomi_Yuzuhara.jpg", "reference_images/2-game/2-game_013_Tamaki_Kousaka.jpg", "reference_images/2-game/2-game_013_Manaka_Komaki.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Konomi Yuzuhara", "reference_ids": ["R1"]}, {"id": "O2", "name": "Tamaki Kousaka", "reference_ids": ["R2"]}, {"id": "O3", "name": "Manaka Komaki", "reference_ids": ["R3"]}, {"id": "O4", "name": "reading table"}, {"id": "O5", "name": "book"}, {"id": "O6", "name": "bookshelf"}, {"id": "O7", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Konomi Yuzuhara is positioned on the left side of the image.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Konomi Yuzuhara is seated.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Tamaki Kousaka is standing directly behind Konomi Yuzuhara.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Tamaki Kousaka is resting a hand on Konomi Yuzuhara's shoulder.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "layout", "text": "Manaka Komaki is positioned on the right side of the image.", "depends_on": ["O3"]}, {"id": "C6", "type": "attribute", "text": "Manaka Komaki is seated.", "depends_on": ["O3"]}, {"id": "C7", "type": "relation", "text": "Manaka Komaki is facing Konomi Yuzuhara.", "depends_on": ["O1", "O2"]}, {"id": "C8", "type": "relation", "text": "Manaka Komaki is facing Tamaki Kousaka.", "depends_on": ["O1", "O3"]}, {"id": "C9", "type": "layout", "text": "The reading table is located in the foreground.", "depends_on": ["O4"]}, {"id": "C10", "type": "relation", "text": "The book is resting on the reading table.", "depends_on": ["O4", "O5"]}, {"id": "C11", "type": "relation", "text": "Konomi Yuzuhara is looking at the book.", "depends_on": ["O1", "O5"]}, {"id": "C12", "type": "layout", "text": "The tall bookshelf is positioned in the background.", "depends_on": ["O6"]}, {"id": "C13", "type": "layout", "text": "The window is located on the far right side of the background.", "depends_on": ["O7"]}, {"id": "C14", "type": "attribute", "text": "The book is open.", "depends_on": ["O5"]}, {"id": "C15", "type": "attribute", "text": "The scene contains exactly three featured characters: Konomi Yuzuhara, Tamaki Kousaka, and Manaka Komaki.", "depends_on": ["O1", "O2", "O3"]}], "num_entities": 7, "num_constraints": 15, "constraint_type_counts": {"attribute": 4, "layout": 5, "relation": 6}} +{"id": "2-game_014", "category": "2-game", "prompt": "Create an image of Erika Sendo from Fortune Arterial sitting in a quiet library. She is seated in the foreground at a wooden desk, holding an open book in her hands. A small teacup rests on the desk to her right. In the background, a tall bookshelf is visible, and a large arched window is positioned on the left side of the room.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_014_Erika_Sendo.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_014_Erika_Sendo.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Erika Sendo", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden desk"}, {"id": "O3", "name": "book"}, {"id": "O4", "name": "teacup"}, {"id": "O5", "name": "bookshelf"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Erika Sendo is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Erika Sendo is seated.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Erika Sendo is holding the book.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "The book is open.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The teacup is resting on the wooden desk.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "relation", "text": "The teacup is to the right of Erika Sendo.", "depends_on": ["O4", "O1"]}, {"id": "C7", "type": "layout", "text": "The bookshelf is located in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The window is on the left side of the image.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The bookshelf is behind the wooden desk.", "depends_on": ["O5", "O2"]}, {"id": "C10", "type": "attribute", "text": "The window is arched.", "depends_on": ["O6"]}, {"id": "C11", "type": "attribute", "text": "The scene contains exactly one featured character, Erika Sendo.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 11, "constraint_type_counts": {"attribute": 4, "layout": 3, "relation": 4}} +{"id": "2-game_015", "category": "2-game", "prompt": "Create an image of Eustia Astraea from Aiyoku no Eustia and Licia de novus Yurii from Aiyoku no Eustia in a quiet study room. Eustia Astraea is standing in the foreground, holding an open book in her hands. Licia de novus Yurii is seated on a wooden chair to the right, resting her arms on a large table. A tall bookshelf fills the background behind them, and a glowing lamp sits on the table between the two characters.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_015_Eustia_Astraea.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_015_Licia_de_novus_Yurii.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_015_Eustia_Astraea.jpg", "reference_images/2-game/2-game_015_Licia_de_novus_Yurii.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Eustia Astraea", "reference_ids": ["R1"]}, {"id": "O2", "name": "Licia de novus Yurii", "reference_ids": ["R2"]}, {"id": "O3", "name": "book"}, {"id": "O4", "name": "wooden chair"}, {"id": "O5", "name": "table"}, {"id": "O6", "name": "bookshelf"}, {"id": "O7", "name": "lamp"}], "constraints": [{"id": "C1", "type": "layout", "text": "Eustia Astraea is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Eustia Astraea is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Eustia Astraea is holding the book.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "The book is open.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "Licia de novus Yurii is positioned to the right of Eustia Astraea.", "depends_on": ["O1", "O2"]}, {"id": "C6", "type": "relation", "text": "Licia de novus Yurii is seated on the wooden chair.", "depends_on": ["O2", "O4"]}, {"id": "C7", "type": "relation", "text": "Licia de novus Yurii is resting her arms on the table.", "depends_on": ["O2", "O5"]}, {"id": "C8", "type": "layout", "text": "The bookshelf is located in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The bookshelf is directly behind Eustia Astraea.", "depends_on": ["O6", "O1"]}, {"id": "C10", "type": "relation", "text": "The bookshelf is directly behind Licia de novus Yurii.", "depends_on": ["O6", "O2"]}, {"id": "C11", "type": "relation", "text": "The lamp is resting on the table.", "depends_on": ["O5", "O7"]}, {"id": "C12", "type": "relation", "text": "The lamp is positioned between Eustia Astraea and Licia de novus Yurii.", "depends_on": ["O1", "O2", "O7"]}, {"id": "C13", "type": "attribute", "text": "The scene contains exactly two featured characters: Eustia Astraea and Licia de novus Yurii.", "depends_on": ["O1", "O2"]}], "num_entities": 7, "num_constraints": 13, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 8}} +{"id": "2-game_016", "category": "2-game", "prompt": "Create an image of Tsugumi Shirasaki from Daitoshokan no Hitsujikai and Tamamo Sakuraba from Daitoshokan no Hitsujikai in a reading room return area. Tsugumi Shirasaki stands in the foreground holding a library card. Tamamo Sakuraba sits at a wooden table beside a teacup. A book return cart filled with books stands between them, and a tall bookshelf fills the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_016_Tsugumi_Shirasaki.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_016_Tamamo_Sakuraba.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_016_Tsugumi_Shirasaki.jpg", "reference_images/2-game/2-game_016_Tamamo_Sakuraba.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Tsugumi Shirasaki", "reference_ids": ["R1"]}, {"id": "O2", "name": "Tamamo Sakuraba", "reference_ids": ["R2"]}, {"id": "O3", "name": "library card"}, {"id": "O4", "name": "wooden table"}, {"id": "O5", "name": "teacup"}, {"id": "O6", "name": "book return cart"}, {"id": "O7", "name": "books"}, {"id": "O8", "name": "bookshelf"}], "constraints": [{"id": "C1", "type": "layout", "text": "Tsugumi Shirasaki is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Tsugumi Shirasaki is holding the library card.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Tamamo Sakuraba is seated at the wooden table.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "relation", "text": "The teacup is beside Tamamo Sakuraba.", "depends_on": ["O5", "O2"]}, {"id": "C5", "type": "relation", "text": "The book return cart stands between Tsugumi Shirasaki and Tamamo Sakuraba.", "depends_on": ["O6", "O1", "O2"]}, {"id": "C6", "type": "relation", "text": "The books are inside the book return cart.", "depends_on": ["O7", "O6"]}, {"id": "C7", "type": "layout", "text": "The bookshelf fills the background.", "depends_on": ["O8"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly two featured characters: Tsugumi Shirasaki and Tamamo Sakuraba.", "depends_on": ["O1", "O2"]}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "2-game_017", "category": "2-game", "prompt": "Create an image of Nemu Asakura from Da Capo, Sakura Yoshino from Da Capo, and Kotori Shirakawa from Da Capo in a classroom. Nemu Asakura is standing in the foreground on the left, holding a notebook. Kotori Shirakawa is seated in the midground playing a piano, with sheet music resting on it. Sakura Yoshino is standing to the right of the piano, facing Kotori Shirakawa. A large green chalkboard is visible on the wall in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_017_Nemu_Asakura.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_017_Sakura_Yoshino.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_017_Kotori_Shirakawa.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_017_Nemu_Asakura.jpg", "reference_images/2-game/2-game_017_Sakura_Yoshino.jpg", "reference_images/2-game/2-game_017_Kotori_Shirakawa.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Nemu Asakura", "reference_ids": ["R1"]}, {"id": "O2", "name": "Sakura Yoshino", "reference_ids": ["R2"]}, {"id": "O3", "name": "Kotori Shirakawa", "reference_ids": ["R3"]}, {"id": "O4", "name": "piano"}, {"id": "O5", "name": "notebook"}, {"id": "O6", "name": "sheet music"}, {"id": "O7", "name": "green chalkboard"}], "constraints": [{"id": "C1", "type": "layout", "text": "Nemu Asakura is positioned in the foreground on the left.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Nemu Asakura is holding a notebook.", "depends_on": ["O1", "O5"]}, {"id": "C3", "type": "layout", "text": "Kotori Shirakawa is located in the midground.", "depends_on": ["O3"]}, {"id": "C4", "type": "relation", "text": "Kotori Shirakawa is seated at the piano.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "relation", "text": "The sheet music is resting on the piano.", "depends_on": ["O6", "O4"]}, {"id": "C6", "type": "relation", "text": "Sakura Yoshino is standing to the right of the piano.", "depends_on": ["O2", "O4"]}, {"id": "C7", "type": "relation", "text": "Sakura Yoshino is facing Kotori Shirakawa.", "depends_on": ["O2", "O3"]}, {"id": "C8", "type": "layout", "text": "The green chalkboard is positioned in the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "Nemu Asakura is standing further forward than Kotori Shirakawa.", "depends_on": ["O1", "O3"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly three featured characters: Nemu Asakura, Sakura Yoshino, and Kotori Shirakawa.", "depends_on": ["O1", "O2", "O3"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 6}} +{"id": "2-game_018", "category": "2-game", "prompt": "Create an image of Nerine from Shuffle and Lisianthus from Shuffle sitting together in a bright cafe. Nerine is seated on the left side of a round cafe table, holding a small teacup in her hands. Lisianthus is seated on the right side of the table, facing Nerine with a cheerful expression. In the background, a large window reveals a sunny day, and a tall potted plant stands in the corner behind Lisianthus.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_018_Nerine.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_018_Lisianthus.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_018_Nerine.jpg", "reference_images/2-game/2-game_018_Lisianthus.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Nerine", "reference_ids": ["R1"]}, {"id": "O2", "name": "Lisianthus", "reference_ids": ["R2"]}, {"id": "O3", "name": "cafe table"}, {"id": "O4", "name": "teacup"}, {"id": "O5", "name": "window"}, {"id": "O6", "name": "potted plant"}], "constraints": [{"id": "C1", "type": "layout", "text": "Nerine is positioned on the left side of the image.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Lisianthus is positioned on the right side of the image.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Nerine and Lisianthus are facing each other.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The cafe table is located between Nerine and Lisianthus.", "depends_on": ["O1", "O2", "O3"]}, {"id": "C5", "type": "relation", "text": "Nerine is holding the teacup.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "attribute", "text": "Nerine is seated.", "depends_on": ["O1"]}, {"id": "C7", "type": "attribute", "text": "Lisianthus is seated.", "depends_on": ["O2"]}, {"id": "C8", "type": "layout", "text": "The cafe table is in the foreground.", "depends_on": ["O3"]}, {"id": "C9", "type": "layout", "text": "The window is in the background.", "depends_on": ["O5"]}, {"id": "C10", "type": "relation", "text": "The potted plant is located behind Lisianthus.", "depends_on": ["O6", "O2"]}, {"id": "C11", "type": "attribute", "text": "The scene contains exactly two featured characters: Nerine and Lisianthus.", "depends_on": ["O1", "O2"]}], "num_entities": 6, "num_constraints": 11, "constraint_type_counts": {"attribute": 3, "layout": 4, "relation": 4}} +{"id": "2-game_019", "category": "2-game", "prompt": "Create an image of Michiru Matsushima from The Fruit of Grisaia, Makina Irisu from The Fruit of Grisaia, and Sachi Komine from The Fruit of Grisaia in a classroom. Michiru Matsushima is seated on a wooden desk in the foreground. Makina Irisu is standing directly beside the desk, pointing toward a large chalkboard on the left wall. In the background, Sachi Komine is standing upright while holding a broom, with a bright window visible behind her.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_shared_Michiru_Matsushima.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_019_Makina_Irisu.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_019_Sachi_Komine.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_shared_Michiru_Matsushima.jpg", "reference_images/2-game/2-game_019_Makina_Irisu.jpg", "reference_images/2-game/2-game_019_Sachi_Komine.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Michiru Matsushima", "reference_ids": ["R1"]}, {"id": "O2", "name": "Makina Irisu", "reference_ids": ["R2"]}, {"id": "O3", "name": "Sachi Komine", "reference_ids": ["R3"]}, {"id": "O4", "name": "wooden desk"}, {"id": "O5", "name": "chalkboard"}, {"id": "O6", "name": "broom"}, {"id": "O7", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Michiru Matsushima is located in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Michiru Matsushima is sitting on the wooden desk.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "Makina Irisu is standing beside the wooden desk.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "attribute", "text": "Makina Irisu is pointing.", "depends_on": ["O2"]}, {"id": "C5", "type": "layout", "text": "The chalkboard is located on the left side of the scene.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "Makina Irisu is pointing toward the chalkboard.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "layout", "text": "Sachi Komine is positioned in the background.", "depends_on": ["O3"]}, {"id": "C8", "type": "attribute", "text": "Sachi Komine is standing upright.", "depends_on": ["O3"]}, {"id": "C9", "type": "relation", "text": "Sachi Komine is holding the broom.", "depends_on": ["O3", "O6"]}, {"id": "C10", "type": "relation", "text": "The window is located directly behind Sachi Komine.", "depends_on": ["O7", "O3"]}, {"id": "C11", "type": "attribute", "text": "The scene contains exactly three featured characters: Michiru Matsushima, Makina Irisu, and Sachi Komine.", "depends_on": ["O1", "O2", "O3"]}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 5}} +{"id": "2-game_020", "category": "2-game", "prompt": "Create an image of Asuka Kurashina from Aokana Four Rhythms Across the Blue and Misaki Tobisawa from Aokana Four Rhythms Across the Blue in a classroom. Asuka Kurashina is standing in the foreground holding a gold trophy. Misaki Tobisawa is seated on a desk to the right of Asuka. A large chalkboard is visible on the wall directly behind them in the midground. A wide window is located in the background on the left side of the room.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_020_Asuka_Kurashina.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_020_Misaki_Tobisawa.webp"}], "reference_image_paths": ["reference_images/2-game/2-game_020_Asuka_Kurashina.jpg", "reference_images/2-game/2-game_020_Misaki_Tobisawa.webp"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Asuka Kurashina", "reference_ids": ["R1"]}, {"id": "O2", "name": "Misaki Tobisawa", "reference_ids": ["R2"]}, {"id": "O3", "name": "gold trophy"}, {"id": "O4", "name": "desk"}, {"id": "O5", "name": "chalkboard"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Asuka Kurashina is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Asuka Kurashina is holding the gold trophy.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Misaki Tobisawa is seated on the desk.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "relation", "text": "Misaki Tobisawa is positioned to the right of Asuka Kurashina.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "layout", "text": "The chalkboard is located in the midground.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The chalkboard is directly behind Asuka Kurashina.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "relation", "text": "The chalkboard is directly behind Misaki Tobisawa.", "depends_on": ["O5", "O2"]}, {"id": "C8", "type": "layout", "text": "The window is positioned in the background on the left side.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The desk is located next to Asuka Kurashina.", "depends_on": ["O1", "O4"]}, {"id": "C10", "type": "attribute", "text": "The chalkboard is mounted on the wall.", "depends_on": ["O5"]}, {"id": "C11", "type": "relation", "text": "Misaki Tobisawa is looking toward Asuka Kurashina.", "depends_on": ["O1", "O2"]}, {"id": "C12", "type": "attribute", "text": "The scene contains exactly two featured characters: Asuka Kurashina and Misaki Tobisawa.", "depends_on": ["O1", "O2"]}], "num_entities": 6, "num_constraints": 12, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 7}} +{"id": "2-game_021", "category": "2-game", "prompt": "Create an image of Mashiro Mito from Tayutama standing in the foreground of a traditional courtyard. She is holding a sweeping broom with both hands and looking directly at the viewer. A large red torii gate stands prominently in the midground behind her. To her left, a stone lantern rests on the ground surrounded by scattered fallen leaves. The wooden structure of a shrine building is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_021_Mashiro_Mito.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_021_Mashiro_Mito.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mashiro Mito", "reference_ids": ["R1"]}, {"id": "O2", "name": "red torii gate"}, {"id": "O3", "name": "stone lantern"}, {"id": "O4", "name": "sweeping broom"}, {"id": "O5", "name": "fallen leaves"}, {"id": "O6", "name": "shrine building"}], "constraints": [{"id": "C1", "type": "layout", "text": "Mashiro Mito is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Mashiro Mito is holding the sweeping broom with both hands.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "attribute", "text": "Mashiro Mito is looking directly at the viewer.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "The red torii gate is located in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The red torii gate is directly behind Mashiro Mito.", "depends_on": ["O1", "O2"]}, {"id": "C6", "type": "relation", "text": "The stone lantern is positioned to the left of Mashiro Mito.", "depends_on": ["O1", "O3"]}, {"id": "C7", "type": "attribute", "text": "The stone lantern is resting on the ground.", "depends_on": ["O3"]}, {"id": "C8", "type": "relation", "text": "Scattered fallen leaves surround the base of the stone lantern.", "depends_on": ["O3", "O5"]}, {"id": "C9", "type": "layout", "text": "The shrine building is positioned in the background.", "depends_on": ["O6"]}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly one featured character, Mashiro Mito.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 4}} +{"id": "2-game_022", "category": "2-game", "prompt": "Create an image of Mare S. Ephemeral from Hoshizora no Memoria standing on an observation deck in the foreground. She is looking through a large telescope that points upward toward a starry sky in the background. A glowing lantern rests on the deck beside her. She is holding an open notebook.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_022_Mare_S_Ephemeral.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_022_Mare_S_Ephemeral.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mare S. Ephemeral", "reference_ids": ["R1"]}, {"id": "O2", "name": "observation deck"}, {"id": "O3", "name": "telescope"}, {"id": "O4", "name": "starry sky"}, {"id": "O5", "name": "lantern"}, {"id": "O6", "name": "notebook"}], "constraints": [{"id": "C1", "type": "layout", "text": "Mare S. Ephemeral is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Mare S. Ephemeral is looking through the telescope.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "The telescope is pointing upward.", "depends_on": ["O3"]}, {"id": "C4", "type": "layout", "text": "The starry sky is positioned in the background.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The lantern is resting on the observation deck.", "depends_on": ["O5", "O2"]}, {"id": "C6", "type": "relation", "text": "The lantern is beside Mare S. Ephemeral.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "relation", "text": "Mare S. Ephemeral is holding the notebook.", "depends_on": ["O1", "O6"]}, {"id": "C8", "type": "attribute", "text": "The notebook is open.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "2-game_023", "category": "2-game", "prompt": "Create an image of Rin Natsume from Little Busters, Komari Kamikita from Little Busters, and Kudryavka Noumi from Little Busters in a bright clubroom. Rin Natsume is sitting on a wooden desk in the foreground. Komari Kamikita is standing directly beside the desk, holding an open book. In the midground, Kudryavka Noumi is standing and facing a large chalkboard, writing on it. A large window is visible in the background behind them.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_023_Rin_Natsume.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_023_Komari_Kamikita.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_023_Kudryavka_Noumi.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_023_Rin_Natsume.jpg", "reference_images/2-game/2-game_023_Komari_Kamikita.jpg", "reference_images/2-game/2-game_023_Kudryavka_Noumi.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Rin Natsume", "reference_ids": ["R1"]}, {"id": "O2", "name": "Komari Kamikita", "reference_ids": ["R2"]}, {"id": "O3", "name": "Kudryavka Noumi", "reference_ids": ["R3"]}, {"id": "O4", "name": "wooden desk"}, {"id": "O5", "name": "book"}, {"id": "O6", "name": "chalkboard"}, {"id": "O7", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Rin Natsume is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Rin Natsume is sitting on the wooden desk.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "Komari Kamikita is standing beside the wooden desk.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "relation", "text": "Komari Kamikita is holding the book.", "depends_on": ["O2", "O5"]}, {"id": "C5", "type": "attribute", "text": "The book is open.", "depends_on": ["O5"]}, {"id": "C6", "type": "layout", "text": "Kudryavka Noumi is positioned in the midground.", "depends_on": ["O3"]}, {"id": "C7", "type": "relation", "text": "Kudryavka Noumi is facing the chalkboard.", "depends_on": ["O3", "O6"]}, {"id": "C8", "type": "relation", "text": "Kudryavka Noumi is writing on the chalkboard.", "depends_on": ["O3", "O6"]}, {"id": "C9", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O7"]}, {"id": "C10", "type": "relation", "text": "The chalkboard is behind the wooden desk.", "depends_on": ["O4", "O6"]}, {"id": "C11", "type": "attribute", "text": "Kudryavka Noumi is standing.", "depends_on": ["O3"]}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 6}} +{"id": "2-game_024", "category": "2-game", "prompt": "Create an image of Kotori Kanbe from Rewrite, Chihaya Ohtori from Rewrite, and Akane Senri from Rewrite gathered in a room. Kotori Kanbe is seated at a large clubroom desk in the foreground. Chihaya Ohtori is standing directly beside Kotori, holding a tea set in her hands. In the midground, Akane Senri is leaning against a tall bookshelf. A large window is visible in the background, letting in natural light.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_024_Kotori_Kanbe.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_024_Chihaya_Ohtori.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_024_Akane_Senri.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_024_Kotori_Kanbe.jpg", "reference_images/2-game/2-game_024_Chihaya_Ohtori.jpg", "reference_images/2-game/2-game_024_Akane_Senri.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Kotori Kanbe", "reference_ids": ["R1"]}, {"id": "O2", "name": "Chihaya Ohtori", "reference_ids": ["R2"]}, {"id": "O3", "name": "Akane Senri", "reference_ids": ["R3"]}, {"id": "O4", "name": "clubroom desk"}, {"id": "O5", "name": "tea set"}, {"id": "O6", "name": "bookshelf"}, {"id": "O7", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Kotori Kanbe is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Kotori Kanbe is seated.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Kotori Kanbe is positioned at the clubroom desk.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Chihaya Ohtori is standing beside Kotori Kanbe.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "relation", "text": "Chihaya Ohtori is holding the tea set.", "depends_on": ["O2", "O5"]}, {"id": "C6", "type": "layout", "text": "Akane Senri is positioned in the midground.", "depends_on": ["O3"]}, {"id": "C7", "type": "relation", "text": "Akane Senri is leaning against the bookshelf.", "depends_on": ["O3", "O6"]}, {"id": "C8", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "The bookshelf is located behind the clubroom desk.", "depends_on": ["O4", "O6"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "2-game_025", "category": "2-game", "prompt": "Create an image of Frau Koujiro from Robotics Notes and Akiho Senomiya from Robotics Notes in a robotics workshop. Frau Koujiro is seated in the foreground at a desk, actively typing on a laptop. Akiho Senomiya is standing in the midground beside the desk, holding a metallic robotic arm. A large whiteboard covered in diagrams is mounted on the wall in the background behind Akiho Senomiya.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_025_Frau_Koujiro.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_025_Akiho_Senomiya.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_025_Frau_Koujiro.jpg", "reference_images/2-game/2-game_025_Akiho_Senomiya.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Frau Koujiro", "reference_ids": ["R1"]}, {"id": "O2", "name": "Akiho Senomiya", "reference_ids": ["R2"]}, {"id": "O3", "name": "desk"}, {"id": "O4", "name": "laptop"}, {"id": "O5", "name": "metallic robotic arm"}, {"id": "O6", "name": "whiteboard"}], "constraints": [{"id": "C1", "type": "layout", "text": "Frau Koujiro is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Frau Koujiro is seated.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Frau Koujiro is typing on the laptop.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The laptop is resting on the desk.", "depends_on": ["O4", "O3"]}, {"id": "C5", "type": "layout", "text": "Akiho Senomiya is standing in the midground.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "Akiho Senomiya is standing beside the desk.", "depends_on": ["O2", "O3"]}, {"id": "C7", "type": "relation", "text": "Akiho Senomiya is holding the metallic robotic arm.", "depends_on": ["O2", "O5"]}, {"id": "C8", "type": "layout", "text": "The whiteboard is located in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The whiteboard is behind Akiho Senomiya.", "depends_on": ["O6", "O2"]}, {"id": "C10", "type": "attribute", "text": "The whiteboard is covered in diagrams.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "2-game_026", "category": "2-game", "prompt": "Create an image of Setsuna Ogiso from White Album 2 performing on a stage. She is standing in the foreground, holding a microphone stand with both hands. A stage monitor rests on the floor directly in front of her. In the background, a heavy curtain is illuminated by a bright spotlight. A closed guitar case is visible to the left of the stage monitor.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_026_Setsuna_Ogiso.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_026_Setsuna_Ogiso.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Setsuna Ogiso", "reference_ids": ["R1"]}, {"id": "O2", "name": "microphone stand"}, {"id": "O3", "name": "stage monitor"}, {"id": "O4", "name": "curtain"}, {"id": "O5", "name": "spotlight"}, {"id": "O6", "name": "guitar case"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Setsuna Ogiso is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Setsuna Ogiso is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Setsuna Ogiso is holding the microphone stand.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The stage monitor is located directly in front of Setsuna Ogiso.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "layout", "text": "The curtain is located in the background.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The spotlight is illuminating the curtain.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "attribute", "text": "The guitar case is closed.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The guitar case is positioned to the left of the stage monitor.", "depends_on": ["O3", "O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "2-game_027", "category": "2-game", "prompt": "Create an image of Hiyori Izumi from Hamidashi Creative, Kano Tokiwa from Hamidashi Creative, and Asumi Nishiki from Hamidashi Creative inside an after-school project room. Hiyori Izumi is seated at a desk in the foreground, looking at a laptop resting on the desktop. Kano Tokiwa is standing beside the desk, pointing toward the laptop screen. In the back of the room, Asumi Nishiki is standing in front of a whiteboard, holding a marker. A window is located on the right side of the room.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_027_Hiyori_Izumi.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_027_Kano_Tokiwa.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_027_Asumi_Nishiki.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_027_Hiyori_Izumi.jpg", "reference_images/2-game/2-game_027_Kano_Tokiwa.jpg", "reference_images/2-game/2-game_027_Asumi_Nishiki.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Hiyori Izumi", "reference_ids": ["R1"]}, {"id": "O2", "name": "Kano Tokiwa", "reference_ids": ["R2"]}, {"id": "O3", "name": "Asumi Nishiki", "reference_ids": ["R3"]}, {"id": "O4", "name": "desk"}, {"id": "O5", "name": "laptop"}, {"id": "O6", "name": "whiteboard"}, {"id": "O7", "name": "window"}, {"id": "O8", "name": "marker"}], "constraints": [{"id": "C1", "type": "layout", "text": "Hiyori Izumi is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Hiyori Izumi is seated.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Hiyori Izumi is positioned at the desk.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The laptop is resting on the desk.", "depends_on": ["O5", "O4"]}, {"id": "C5", "type": "relation", "text": "Kano Tokiwa is standing beside the desk.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Kano Tokiwa is pointing toward the laptop.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "layout", "text": "Asumi Nishiki is located in the background.", "depends_on": ["O3"]}, {"id": "C8", "type": "relation", "text": "Asumi Nishiki is standing in front of the whiteboard.", "depends_on": ["O3", "O6"]}, {"id": "C9", "type": "relation", "text": "Asumi Nishiki is holding the marker.", "depends_on": ["O3", "O8"]}, {"id": "C10", "type": "layout", "text": "The window is located on the right side of the room.", "depends_on": ["O7"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 6}} +{"id": "2-game_028", "category": "2-game", "prompt": "Create an image of Yoruko Yuugyouji from Kami no Ue no Mahoutsukai, Kisaki Tsukiyashiro from Kami no Ue no Mahoutsukai, and Rio Fushimi from Kami no Ue no Mahoutsukai inside a lamplit archive office. Yoruko Yuugyouji sits on a rolling stool sorting index cards. Kisaki Tsukiyashiro holds a file box beside a rolling ladder. Rio Fushimi holds a glowing lamp near a tall bookshelf, and a stack of archive folders sits in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_028_Yoruko_Yuugyouji.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_028_Kisaki_Tsukiyashiro.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_028_Rio_Fushimi.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_028_Yoruko_Yuugyouji.jpg", "reference_images/2-game/2-game_028_Kisaki_Tsukiyashiro.jpg", "reference_images/2-game/2-game_028_Rio_Fushimi.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Yoruko Yuugyouji", "reference_ids": ["R1"]}, {"id": "O2", "name": "Kisaki Tsukiyashiro", "reference_ids": ["R2"]}, {"id": "O3", "name": "Rio Fushimi", "reference_ids": ["R3"]}, {"id": "O4", "name": "rolling stool"}, {"id": "O5", "name": "index cards"}, {"id": "O6", "name": "file box"}, {"id": "O7", "name": "rolling ladder"}, {"id": "O8", "name": "lamp"}, {"id": "O9", "name": "bookshelf"}, {"id": "O10", "name": "archive folders"}], "constraints": [{"id": "C1", "type": "relation", "text": "Yoruko Yuugyouji is sitting on the rolling stool.", "depends_on": ["O1", "O4"]}, {"id": "C2", "type": "relation", "text": "Yoruko Yuugyouji is sorting the index cards.", "depends_on": ["O1", "O5"]}, {"id": "C3", "type": "relation", "text": "Kisaki Tsukiyashiro is holding the file box.", "depends_on": ["O2", "O6"]}, {"id": "C4", "type": "relation", "text": "Kisaki Tsukiyashiro stands beside the rolling ladder.", "depends_on": ["O2", "O7"]}, {"id": "C5", "type": "relation", "text": "Rio Fushimi is holding the lamp.", "depends_on": ["O3", "O8"]}, {"id": "C6", "type": "relation", "text": "Rio Fushimi stands near the bookshelf.", "depends_on": ["O3", "O9"]}, {"id": "C7", "type": "attribute", "text": "The lamp is glowing.", "depends_on": ["O8"]}, {"id": "C8", "type": "layout", "text": "The archive folders are in the lower foreground.", "depends_on": ["O10"]}], "num_entities": 10, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "2-game_029", "category": "2-game", "prompt": "Create an image of Ayase Mitsukasa from Riddle Joker, Nanami Arihara from Riddle Joker, and Hazuki Nijouin from Riddle Joker studying together in a library. Ayase Mitsukasa is sitting at a large wooden table in the foreground, looking down at an open book. Nanami Arihara is standing directly behind Ayase, pointing at the open book. Hazuki Nijouin is standing in the midground to the right, leaning against a tall bookshelf. A large window is visible in the background, letting in bright daylight.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_029_Ayase_Mitsukasa.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_029_Nanami_Arihara.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_029_Hazuki_Nijouin.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_029_Ayase_Mitsukasa.jpg", "reference_images/2-game/2-game_029_Nanami_Arihara.jpg", "reference_images/2-game/2-game_029_Hazuki_Nijouin.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Ayase Mitsukasa", "reference_ids": ["R1"]}, {"id": "O2", "name": "Nanami Arihara", "reference_ids": ["R2"]}, {"id": "O3", "name": "Hazuki Nijouin", "reference_ids": ["R3"]}, {"id": "O4", "name": "wooden table"}, {"id": "O5", "name": "book"}, {"id": "O6", "name": "bookshelf"}, {"id": "O7", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Ayase Mitsukasa is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Ayase Mitsukasa is sitting at the wooden table.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "The book is resting on the wooden table.", "depends_on": ["O4", "O5"]}, {"id": "C4", "type": "relation", "text": "Ayase Mitsukasa is looking at the book.", "depends_on": ["O1", "O5"]}, {"id": "C5", "type": "relation", "text": "Nanami Arihara is standing directly behind Ayase Mitsukasa.", "depends_on": ["O1", "O2"]}, {"id": "C6", "type": "relation", "text": "Nanami Arihara is pointing at the book.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "layout", "text": "Hazuki Nijouin is positioned in the midground to the right.", "depends_on": ["O3"]}, {"id": "C8", "type": "relation", "text": "Hazuki Nijouin is leaning against the bookshelf.", "depends_on": ["O3", "O6"]}, {"id": "C9", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O7"]}, {"id": "C10", "type": "layout", "text": "The bookshelf is located in the midground.", "depends_on": ["O6"]}, {"id": "C11", "type": "attribute", "text": "The book is open.", "depends_on": ["O5"]}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 1, "layout": 4, "relation": 6}} +{"id": "2-game_030", "category": "2-game", "prompt": "Create an image of Miyako Kujou from 9-nine-, Sora Niimi from 9-nine-, and Haruka Kousaka from 9-nine- in a cafe window nook. Miyako Kujou is seated at a round table on the left side, holding an open menu. Sora Niimi is standing near the center of the scene, leaning forward over the tabletop. Haruka Kousaka is seated on the right side, looking directly at Sora Niimi. A large window is visible in the background, with a tall potted plant placed beside it.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_030_Miyako_Kujou.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_030_Sora_Niimi.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_030_Haruka_Kousaka.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_030_Miyako_Kujou.jpg", "reference_images/2-game/2-game_030_Sora_Niimi.jpg", "reference_images/2-game/2-game_030_Haruka_Kousaka.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Miyako Kujou", "reference_ids": ["R1"]}, {"id": "O2", "name": "Sora Niimi", "reference_ids": ["R2"]}, {"id": "O3", "name": "Haruka Kousaka", "reference_ids": ["R3"]}, {"id": "O4", "name": "table"}, {"id": "O5", "name": "menu"}, {"id": "O6", "name": "window"}, {"id": "O7", "name": "potted plant"}], "constraints": [{"id": "C1", "type": "layout", "text": "Miyako Kujou is positioned on the left side of the image.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Haruka Kousaka is positioned on the right side of the image.", "depends_on": ["O3"]}, {"id": "C3", "type": "layout", "text": "Sora Niimi is positioned in the center midground.", "depends_on": ["O2"]}, {"id": "C4", "type": "relation", "text": "Miyako Kujou is positioned around the table.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "Sora Niimi is positioned around the table.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Haruka Kousaka is positioned around the table.", "depends_on": ["O3", "O4"]}, {"id": "C7", "type": "attribute", "text": "Miyako Kujou is seated.", "depends_on": ["O1"]}, {"id": "C8", "type": "relation", "text": "Miyako Kujou is holding the menu.", "depends_on": ["O1", "O5"]}, {"id": "C9", "type": "attribute", "text": "The menu is open.", "depends_on": ["O5"]}, {"id": "C10", "type": "attribute", "text": "Sora Niimi is standing.", "depends_on": ["O2"]}, {"id": "C11", "type": "relation", "text": "Haruka Kousaka is looking toward Sora Niimi.", "depends_on": ["O3", "O2"]}, {"id": "C12", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O6"]}, {"id": "C13", "type": "relation", "text": "The potted plant is placed next to the window.", "depends_on": ["O7", "O6"]}, {"id": "C14", "type": "layout", "text": "The table is located in the foreground.", "depends_on": ["O4"]}, {"id": "C15", "type": "attribute", "text": "Sora Niimi is leaning forward.", "depends_on": ["O2"]}], "num_entities": 7, "num_constraints": 15, "constraint_type_counts": {"attribute": 4, "layout": 5, "relation": 6}} +{"id": "2-game_031", "category": "2-game", "prompt": "Create an image of ATRI from ATRI - My Dear Moments standing on a seaside observation deck. She is resting her hands on a metal railing in the foreground while looking through a large brass telescope. A wooden bench sits directly behind her in the midground, with a red lifebuoy hanging on its side. The ocean horizon stretches across the background under a clear sky.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_031_ATRI.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_031_ATRI.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "ATRI", "reference_ids": ["R1"]}, {"id": "O2", "name": "metal railing"}, {"id": "O3", "name": "brass telescope"}, {"id": "O4", "name": "wooden bench"}, {"id": "O5", "name": "red lifebuoy"}, {"id": "O6", "name": "ocean horizon"}], "constraints": [{"id": "C1", "type": "layout", "text": "ATRI is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "ATRI is resting her hands on the metal railing.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "ATRI is looking through the brass telescope.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "The wooden bench is located in the midground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The wooden bench is directly behind ATRI.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "relation", "text": "The red lifebuoy is hanging on the wooden bench.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "layout", "text": "The ocean horizon is positioned in the background.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"layout": 3, "relation": 4}} +{"id": "2-game_032", "category": "2-game", "prompt": "Create an image of Goldenglow from Arknights standing behind a wooden counter in a brightly lit cafe. She is resting both hands on the counter, looking directly forward. A modern cash register sits on the counter to her right, while a glass display case is positioned in the foreground. In the background, a large menu board hangs on the wall next to a tall potted plant.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_032_Goldenglow.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_032_Goldenglow.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Goldenglow", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden counter"}, {"id": "O3", "name": "cash register"}, {"id": "O4", "name": "glass display case"}, {"id": "O5", "name": "potted plant"}, {"id": "O6", "name": "menu board"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Goldenglow is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Goldenglow has her hands resting on the wooden counter.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "layout", "text": "Goldenglow is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "The glass display case is located in the foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The cash register sits on top of the wooden counter.", "depends_on": ["O3", "O2"]}, {"id": "C6", "type": "relation", "text": "The cash register is positioned to the right of Goldenglow.", "depends_on": ["O3", "O1"]}, {"id": "C7", "type": "layout", "text": "The menu board is mounted on the wall in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The potted plant is placed next to the menu board.", "depends_on": ["O5", "O6"]}, {"id": "C9", "type": "attribute", "text": "The menu board shows menu text.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "2-game_033", "category": "2-game", "prompt": "Create an image of Nene Ayachi from Sabbat of the Witch, Touko Hiiragi from Sabbat of the Witch, and Meguru Inaba from Sabbat of the Witch gathered around a round wooden table. Nene Ayachi is seated in the foreground, holding a small white teacup. Touko Hiiragi is standing to the left of the table, leaning forward. Meguru Inaba is seated on the right side of the table, facing Touko Hiiragi. A large window is visible in the background, and a tall bookshelf stands in the midground behind Meguru Inaba.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_033_Nene_Ayachi.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_033_Touko_Hiiragi.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_033_Meguru_Inaba.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_033_Nene_Ayachi.jpg", "reference_images/2-game/2-game_033_Touko_Hiiragi.jpg", "reference_images/2-game/2-game_033_Meguru_Inaba.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Nene Ayachi", "reference_ids": ["R1"]}, {"id": "O2", "name": "Touko Hiiragi", "reference_ids": ["R2"]}, {"id": "O3", "name": "Meguru Inaba", "reference_ids": ["R3"]}, {"id": "O4", "name": "wooden table"}, {"id": "O5", "name": "white teacup"}, {"id": "O6", "name": "window"}, {"id": "O7", "name": "bookshelf"}], "constraints": [{"id": "C1", "type": "layout", "text": "Nene Ayachi is located in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Nene Ayachi is seated.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Nene Ayachi is holding the white teacup.", "depends_on": ["O1", "O5"]}, {"id": "C4", "type": "relation", "text": "Nene Ayachi is gathered around the wooden table.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "Touko Hiiragi is gathered around the wooden table.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Meguru Inaba is gathered around the wooden table.", "depends_on": ["O3", "O4"]}, {"id": "C7", "type": "relation", "text": "Touko Hiiragi is positioned to the left of the wooden table.", "depends_on": ["O2", "O4"]}, {"id": "C8", "type": "attribute", "text": "Touko Hiiragi is standing.", "depends_on": ["O2"]}, {"id": "C9", "type": "relation", "text": "Meguru Inaba is positioned on the right side of the wooden table.", "depends_on": ["O3", "O4"]}, {"id": "C10", "type": "relation", "text": "Meguru Inaba is facing Touko Hiiragi.", "depends_on": ["O3", "O2"]}, {"id": "C11", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O6"]}, {"id": "C12", "type": "layout", "text": "The bookshelf is located in the midground.", "depends_on": ["O7"]}, {"id": "C13", "type": "relation", "text": "The bookshelf is directly behind Meguru Inaba.", "depends_on": ["O7", "O3"]}, {"id": "C14", "type": "attribute", "text": "Touko Hiiragi is leaning forward.", "depends_on": ["O2"]}], "num_entities": 7, "num_constraints": 14, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 8}} +{"id": "2-game_034", "category": "2-game", "prompt": "Create an image of Murasame from Senren Banka, Yoshino Tomotake from Senren Banka, and Mako Hitachi from Senren Banka relaxing together. Murasame is sitting on a wooden porch in the foreground, holding a small teapot. Yoshino Tomotake is standing in the midground behind the wooden porch, looking toward Murasame. Mako Hitachi is seated to the right of Murasame, resting her hands on a low tea table that sits on the porch. A glowing paper lantern hangs in the upper background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_034_Murasame.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_034_Yoshino_Tomotake.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_034_Mako_Hitachi.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_034_Murasame.jpg", "reference_images/2-game/2-game_034_Yoshino_Tomotake.jpg", "reference_images/2-game/2-game_034_Mako_Hitachi.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Murasame", "reference_ids": ["R1"]}, {"id": "O2", "name": "Yoshino Tomotake", "reference_ids": ["R2"]}, {"id": "O3", "name": "Mako Hitachi", "reference_ids": ["R3"]}, {"id": "O4", "name": "wooden porch"}, {"id": "O5", "name": "teapot"}, {"id": "O6", "name": "tea table"}, {"id": "O7", "name": "paper lantern"}], "constraints": [{"id": "C1", "type": "layout", "text": "Murasame is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Murasame is sitting down.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Murasame is holding the teapot.", "depends_on": ["O1", "O5"]}, {"id": "C4", "type": "layout", "text": "Yoshino Tomotake is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Yoshino Tomotake is standing behind the wooden porch.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Yoshino Tomotake is looking toward Murasame.", "depends_on": ["O2", "O1"]}, {"id": "C7", "type": "relation", "text": "Mako Hitachi is located to the right of Murasame.", "depends_on": ["O3", "O1"]}, {"id": "C8", "type": "relation", "text": "Mako Hitachi is resting her hands on the tea table.", "depends_on": ["O3", "O6"]}, {"id": "C9", "type": "layout", "text": "The paper lantern is hanging in the upper background.", "depends_on": ["O7"]}, {"id": "C10", "type": "relation", "text": "The tea table is placed on the wooden porch.", "depends_on": ["O6", "O4"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 6}} +{"id": "2-game_035", "category": "2-game", "prompt": "Create an image of Kanna Akizuki from Cafe Stella and the Reaper's Butterflies, Natsume Shiki from Cafe Stella and the Reaper's Butterflies, and Nozomi Sumizome from Cafe Stella and the Reaper's Butterflies gathered in a cafe interior. Kanna Akizuki is standing in the foreground, holding a serving tray. Natsume Shiki and Nozomi Sumizome are seated at a round cafe table in the midground. A coffee cup rests on the table between them, while a large window in the background reveals the street outside.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_035_Kanna_Akizuki.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_035_Natsume_Shiki.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_035_Nozomi_Sumizome.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_035_Kanna_Akizuki.jpg", "reference_images/2-game/2-game_035_Natsume_Shiki.jpg", "reference_images/2-game/2-game_035_Nozomi_Sumizome.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Kanna Akizuki", "reference_ids": ["R1"]}, {"id": "O2", "name": "Natsume Shiki", "reference_ids": ["R2"]}, {"id": "O3", "name": "Nozomi Sumizome", "reference_ids": ["R3"]}, {"id": "O4", "name": "serving tray"}, {"id": "O5", "name": "cafe table"}, {"id": "O6", "name": "coffee cup"}, {"id": "O7", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Kanna Akizuki is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Kanna Akizuki is holding the serving tray.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "layout", "text": "Natsume Shiki is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C4", "type": "layout", "text": "Nozomi Sumizome is positioned in the midground.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "Natsume Shiki is seated at the cafe table.", "depends_on": ["O2", "O5"]}, {"id": "C6", "type": "relation", "text": "Nozomi Sumizome is seated at the cafe table.", "depends_on": ["O3", "O5"]}, {"id": "C7", "type": "relation", "text": "The coffee cup is resting on the cafe table.", "depends_on": ["O5", "O6"]}, {"id": "C8", "type": "relation", "text": "The coffee cup is located between Natsume Shiki and Nozomi Sumizome.", "depends_on": ["O2", "O3", "O6"]}, {"id": "C9", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O7"]}, {"id": "C10", "type": "attribute", "text": "The window reveals the street outside.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 4, "relation": 5}} +{"id": "2-game_036", "category": "2-game", "prompt": "Create an image of Shiroha Naruse from Summer Pockets, Ao Sorakado from Summer Pockets, and Kamome Kushima from Summer Pockets hanging out by the water. Shiroha Naruse is seated on a large cooler in the foreground. Ao Sorakado is standing to the left of the large cooler, holding an open beach umbrella. Kamome Kushima is standing on the right side of a wooden pier in the midground, pointing toward an upright sign in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_036_Shiroha_Naruse.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_036_Ao_Sorakado.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_036_Kamome_Kushima.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_036_Shiroha_Naruse.jpg", "reference_images/2-game/2-game_036_Ao_Sorakado.jpg", "reference_images/2-game/2-game_036_Kamome_Kushima.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Shiroha Naruse", "reference_ids": ["R1"]}, {"id": "O2", "name": "Ao Sorakado", "reference_ids": ["R2"]}, {"id": "O3", "name": "Kamome Kushima", "reference_ids": ["R3"]}, {"id": "O4", "name": "cooler"}, {"id": "O5", "name": "beach umbrella"}, {"id": "O6", "name": "wooden pier"}, {"id": "O7", "name": "sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Shiroha Naruse is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Shiroha Naruse is sitting on the cooler.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "Ao Sorakado is positioned to the left of the cooler.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "relation", "text": "Ao Sorakado is holding the beach umbrella.", "depends_on": ["O2", "O5"]}, {"id": "C5", "type": "attribute", "text": "The beach umbrella is open.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "Kamome Kushima is standing on the right side of the wooden pier.", "depends_on": ["O3", "O6"]}, {"id": "C7", "type": "layout", "text": "The wooden pier is located in the midground.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "Kamome Kushima is pointing toward the sign.", "depends_on": ["O3", "O7"]}, {"id": "C9", "type": "layout", "text": "The sign is located in the background.", "depends_on": ["O7"]}, {"id": "C10", "type": "attribute", "text": "The sign is standing upright.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 5}} +{"id": "2-game_037", "category": "2-game", "prompt": "Create an image of Amane Suou from The Fruit of Grisaia and Michiru Matsushima from The Fruit of Grisaia in a kitchen. Amane Suou is standing in the foreground, holding a frying pan over a kitchen counter. Michiru Matsushima is standing to the right of Amane Suou, looking directly at a plate resting on the counter. A large window is visible in the background behind the two characters.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_037_Amane_Suou.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_shared_Michiru_Matsushima.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_037_Amane_Suou.jpg", "reference_images/2-game/2-game_shared_Michiru_Matsushima.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Amane Suou", "reference_ids": ["R1"]}, {"id": "O2", "name": "Michiru Matsushima", "reference_ids": ["R2"]}, {"id": "O3", "name": "kitchen counter"}, {"id": "O4", "name": "frying pan"}, {"id": "O5", "name": "plate"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Amane Suou is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Michiru Matsushima is standing to the right of Amane Suou.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Amane Suou is holding the frying pan.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The frying pan is positioned over the kitchen counter.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "relation", "text": "Michiru Matsushima is looking toward the plate.", "depends_on": ["O2", "O5"]}, {"id": "C6", "type": "relation", "text": "The plate is resting on the kitchen counter.", "depends_on": ["O3", "O5"]}, {"id": "C7", "type": "layout", "text": "The window is located in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The window is directly behind Amane Suou.", "depends_on": ["O6", "O1"]}, {"id": "C9", "type": "relation", "text": "The window is directly behind Michiru Matsushima.", "depends_on": ["O6", "O2"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"layout": 2, "relation": 7}} +{"id": "2-game_038", "category": "2-game", "prompt": "Create an image of Rinne Ohara from ISLAND standing on a wooden pier in the foreground. She is holding a straw hat in her hands. A bicycle is parked on the pier directly behind her. In the background, a tall lighthouse stands against the sky, and a seagull is flying near it.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_038_Rinne_Ohara.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_038_Rinne_Ohara.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Rinne Ohara", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden pier"}, {"id": "O3", "name": "straw hat"}, {"id": "O4", "name": "bicycle"}, {"id": "O5", "name": "lighthouse"}, {"id": "O6", "name": "seagull"}], "constraints": [{"id": "C1", "type": "layout", "text": "Rinne Ohara is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Rinne Ohara is standing on the wooden pier.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Rinne Ohara is holding the straw hat.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The bicycle is located directly behind Rinne Ohara.", "depends_on": ["O4", "O1"]}, {"id": "C5", "type": "relation", "text": "The bicycle is resting on the wooden pier.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "layout", "text": "The lighthouse is located in the background.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The seagull is flying near the lighthouse.", "depends_on": ["O6", "O5"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"layout": 2, "relation": 5}} +{"id": "2-game_039", "category": "2-game", "prompt": "Create an image of Megumi Yakushiji from 13 Sentinels: Aegis Rim, Iori Fuyusaka from 13 Sentinels: Aegis Rim, and Natsuno Minami from 13 Sentinels: Aegis Rim gathered in a classroom. Megumi Yakushiji is standing in the foreground, holding a school bag in her hands. Iori Fuyusaka is seated at a wooden desk in the midground, facing toward Megumi. Natsuno Minami is standing in the background, leaning against a large window. A wide green chalkboard is mounted on the wall behind the desk.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_039_Megumi_Yakushiji.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_039_Iori_Fuyusaka.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_039_Natsuno_Minami.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_039_Megumi_Yakushiji.jpg", "reference_images/2-game/2-game_039_Iori_Fuyusaka.jpg", "reference_images/2-game/2-game_039_Natsuno_Minami.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Megumi Yakushiji", "reference_ids": ["R1"]}, {"id": "O2", "name": "Iori Fuyusaka", "reference_ids": ["R2"]}, {"id": "O3", "name": "Natsuno Minami", "reference_ids": ["R3"]}, {"id": "O4", "name": "school bag"}, {"id": "O5", "name": "wooden desk"}, {"id": "O6", "name": "window"}, {"id": "O7", "name": "chalkboard"}], "constraints": [{"id": "C1", "type": "layout", "text": "Megumi Yakushiji is located in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Megumi Yakushiji is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Megumi Yakushiji is holding the school bag.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "layout", "text": "Iori Fuyusaka is located in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "attribute", "text": "Iori Fuyusaka is seated.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "Iori Fuyusaka is positioned at the wooden desk.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "relation", "text": "Iori Fuyusaka is facing Megumi Yakushiji.", "depends_on": ["O1", "O2"]}, {"id": "C8", "type": "layout", "text": "Natsuno Minami is located in the background.", "depends_on": ["O3"]}, {"id": "C9", "type": "attribute", "text": "Natsuno Minami is standing.", "depends_on": ["O3"]}, {"id": "C10", "type": "relation", "text": "Natsuno Minami is leaning against the window.", "depends_on": ["O3", "O6"]}, {"id": "C11", "type": "layout", "text": "The chalkboard is located on the wall in the background.", "depends_on": ["O7"]}, {"id": "C12", "type": "relation", "text": "The chalkboard is behind the wooden desk.", "depends_on": ["O5", "O7"]}], "num_entities": 7, "num_constraints": 12, "constraint_type_counts": {"attribute": 3, "layout": 4, "relation": 5}} +{"id": "2-game_040", "category": "2-game", "prompt": "Create an image of Meiya Mitsurugi from Muv-Luv, Sumika Kagami from Muv-Luv, and Chizuru Sakaki from Muv-Luv in a classroom equipment corner after lessons. Sumika Kagami is seated at a desk with a small model robot on it. Meiya Mitsurugi stands beside the desk holding a marker. Chizuru Sakaki points toward a wall map mounted next to a projector screen, while a cable coil lies on the floor in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_040_Meiya_Mitsurugi.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_040_Sumika_Kagami.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_040_Chizuru_Sakaki.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_040_Meiya_Mitsurugi.jpg", "reference_images/2-game/2-game_040_Sumika_Kagami.jpg", "reference_images/2-game/2-game_040_Chizuru_Sakaki.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Meiya Mitsurugi", "reference_ids": ["R1"]}, {"id": "O2", "name": "Sumika Kagami", "reference_ids": ["R2"]}, {"id": "O3", "name": "Chizuru Sakaki", "reference_ids": ["R3"]}, {"id": "O4", "name": "desk"}, {"id": "O5", "name": "model robot"}, {"id": "O6", "name": "marker"}, {"id": "O7", "name": "wall map"}, {"id": "O8", "name": "projector screen"}, {"id": "O9", "name": "cable coil"}], "constraints": [{"id": "C1", "type": "relation", "text": "Sumika Kagami is seated at the desk.", "depends_on": ["O2", "O4"]}, {"id": "C2", "type": "relation", "text": "The model robot is on the desk.", "depends_on": ["O5", "O4"]}, {"id": "C3", "type": "relation", "text": "Meiya Mitsurugi stands beside the desk.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Meiya Mitsurugi is holding the marker.", "depends_on": ["O1", "O6"]}, {"id": "C5", "type": "relation", "text": "Chizuru Sakaki points toward the wall map.", "depends_on": ["O3", "O7"]}, {"id": "C6", "type": "relation", "text": "The wall map is mounted next to the projector screen.", "depends_on": ["O7", "O8"]}, {"id": "C7", "type": "layout", "text": "The cable coil lies on the floor in the lower foreground.", "depends_on": ["O9"]}], "num_entities": 9, "num_constraints": 7, "constraint_type_counts": {"layout": 1, "relation": 6}} +{"id": "2-game_041", "category": "2-game", "prompt": "Create an image of Noa Shirayuki from Angelic Chaos RE-BOOT!, Amane Tanikaze from Angelic Chaos RE-BOOT!, and Kurumi Kohibari from Angelic Chaos RE-BOOT! inside a bright bakery. Noa Shirayuki is standing behind a wooden counter in the midground, holding a silver tray. Amane Tanikaze is positioned to the left of Noa Shirayuki, leaning against a glass display case. Kurumi Kohibari is sitting on a stool in the foreground, facing the counter. A large chalkboard sign hangs on the wall in the background behind the group.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_041_Noa_Shirayuki.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_041_Amane_Tanikaze.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_041_Kurumi_Kohibari.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_041_Noa_Shirayuki.jpg", "reference_images/2-game/2-game_041_Amane_Tanikaze.jpg", "reference_images/2-game/2-game_041_Kurumi_Kohibari.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Noa Shirayuki", "reference_ids": ["R1"]}, {"id": "O2", "name": "Amane Tanikaze", "reference_ids": ["R2"]}, {"id": "O3", "name": "Kurumi Kohibari", "reference_ids": ["R3"]}, {"id": "O4", "name": "wooden counter"}, {"id": "O5", "name": "silver tray"}, {"id": "O6", "name": "glass display case"}, {"id": "O7", "name": "stool"}, {"id": "O8", "name": "chalkboard sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Noa Shirayuki is located in the midground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Noa Shirayuki is standing behind the wooden counter.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "Noa Shirayuki is holding the silver tray.", "depends_on": ["O1", "O5"]}, {"id": "C4", "type": "relation", "text": "Amane Tanikaze is positioned to the left of Noa Shirayuki.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "relation", "text": "Amane Tanikaze is leaning against the glass display case.", "depends_on": ["O2", "O6"]}, {"id": "C6", "type": "layout", "text": "Kurumi Kohibari is located in the foreground.", "depends_on": ["O3"]}, {"id": "C7", "type": "relation", "text": "Kurumi Kohibari is sitting on the stool.", "depends_on": ["O3", "O7"]}, {"id": "C8", "type": "relation", "text": "Kurumi Kohibari is facing the wooden counter.", "depends_on": ["O3", "O4"]}, {"id": "C9", "type": "layout", "text": "The chalkboard sign is mounted on the wall in the background.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"layout": 3, "relation": 6}} +{"id": "2-game_042", "category": "2-game", "prompt": "Create an image of Momoi Saiba from Blue Archive, Midori Saiba from Blue Archive, and Yuzu Hanaoka from Blue Archive in an indoor room. Momoi Saiba and Midori Saiba are sitting together on a large sofa in the foreground, each holding a game controller. A glowing television screen is positioned directly in front of the sofa. Yuzu Hanaoka is standing in the midground, peeking out from behind a tall metal locker. A poster is hanging on the wall in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_042_Momoi_Saiba.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_042_Midori_Saiba.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_042_Yuzu_Hanaoka.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_042_Momoi_Saiba.jpg", "reference_images/2-game/2-game_042_Midori_Saiba.jpg", "reference_images/2-game/2-game_042_Yuzu_Hanaoka.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Momoi Saiba", "reference_ids": ["R1"]}, {"id": "O2", "name": "Midori Saiba", "reference_ids": ["R2"]}, {"id": "O3", "name": "Yuzu Hanaoka", "reference_ids": ["R3"]}, {"id": "O4", "name": "sofa"}, {"id": "O5", "name": "game controller"}, {"id": "O6", "name": "television screen"}, {"id": "O7", "name": "metal locker"}, {"id": "O8", "name": "poster"}], "constraints": [{"id": "C1", "type": "layout", "text": "Momoi Saiba is located in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Midori Saiba is located in the foreground.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Momoi Saiba is sitting on the sofa.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Midori Saiba is sitting on the sofa.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Momoi Saiba is holding a game controller.", "depends_on": ["O1", "O5"]}, {"id": "C6", "type": "relation", "text": "Midori Saiba is holding a game controller.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "attribute", "text": "At least two game controllers are present.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The television screen is positioned in front of the sofa.", "depends_on": ["O6", "O4"]}, {"id": "C9", "type": "layout", "text": "Yuzu Hanaoka is located in the midground.", "depends_on": ["O3"]}, {"id": "C10", "type": "relation", "text": "Yuzu Hanaoka is standing behind the metal locker.", "depends_on": ["O3", "O7"]}, {"id": "C11", "type": "attribute", "text": "Yuzu Hanaoka is peeking out.", "depends_on": ["O3"]}, {"id": "C12", "type": "layout", "text": "The metal locker is standing vertically in the midground.", "depends_on": ["O7"]}, {"id": "C13", "type": "layout", "text": "The poster is hanging in the background.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 13, "constraint_type_counts": {"attribute": 2, "layout": 5, "relation": 6}} +{"id": "2-game_043", "category": "2-game", "prompt": "Create an image of Anzu Takakura from Clover Day's, Anri Takakura from Clover Day's, and Tsubame Rindou from Clover Day's in a classroom craft setup. Anzu Takakura is seated beside a poster board on a worktable. Anri Takakura stands next to her holding a tape roll. Tsubame Rindou leans against the window while pointing at a corkboard with pinned notes. A pair of scissors rests on the worktable in the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_043_Anzu_Takakura.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_043_Anri_Takakura.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_043_Tsubame_Rindou.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_043_Anzu_Takakura.jpg", "reference_images/2-game/2-game_043_Anri_Takakura.jpg", "reference_images/2-game/2-game_043_Tsubame_Rindou.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Anzu Takakura", "reference_ids": ["R1"]}, {"id": "O2", "name": "Anri Takakura", "reference_ids": ["R2"]}, {"id": "O3", "name": "Tsubame Rindou", "reference_ids": ["R3"]}, {"id": "O4", "name": "poster board"}, {"id": "O5", "name": "worktable"}, {"id": "O6", "name": "tape roll"}, {"id": "O7", "name": "window"}, {"id": "O8", "name": "corkboard"}, {"id": "O9", "name": "notes"}, {"id": "O10", "name": "scissors"}], "constraints": [{"id": "C1", "type": "relation", "text": "Anzu Takakura is seated beside the poster board.", "depends_on": ["O1", "O4"]}, {"id": "C2", "type": "relation", "text": "The poster board is on the worktable.", "depends_on": ["O4", "O5"]}, {"id": "C3", "type": "relation", "text": "Anri Takakura is holding the tape roll.", "depends_on": ["O2", "O6"]}, {"id": "C4", "type": "relation", "text": "Anri Takakura stands next to Anzu Takakura.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "relation", "text": "Tsubame Rindou is leaning against the window.", "depends_on": ["O3", "O7"]}, {"id": "C6", "type": "relation", "text": "Tsubame Rindou is pointing at the corkboard.", "depends_on": ["O3", "O8"]}, {"id": "C7", "type": "relation", "text": "The notes are pinned to the corkboard.", "depends_on": ["O9", "O8"]}, {"id": "C8", "type": "relation", "text": "The scissors rest on the worktable.", "depends_on": ["O10", "O5"]}, {"id": "C9", "type": "layout", "text": "The scissors are in the foreground.", "depends_on": ["O10"]}], "num_entities": 10, "num_constraints": 9, "constraint_type_counts": {"layout": 1, "relation": 8}} +{"id": "2-game_044", "category": "2-game", "prompt": "Create an image of Sylvia le Cruzcrown Sortilege Sisua from Kinkoi: Golden Loveriche, Reina Kisaki from Kinkoi: Golden Loveriche, and Heroina di Caballero Istaa from Kinkoi: Golden Loveriche gathered in an elegant garden gazebo. Sylvia le Cruzcrown Sortilege Sisua is seated at a round tea table in the foreground, holding a delicate teacup. Reina Kisaki is standing to the left of the table, looking toward her. Heroina di Caballero Istaa is standing on the right side of the gazebo, resting her hand on the table. A large blooming rose bush is visible in the background behind the gazebo.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_044_Sylvia_le_Cruzcrown_Sortil_ge_Sisua.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_044_Reina_Kisaki.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_044_Heroina_di_Caballero_Istaa.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_044_Sylvia_le_Cruzcrown_Sortil_ge_Sisua.jpg", "reference_images/2-game/2-game_044_Reina_Kisaki.jpg", "reference_images/2-game/2-game_044_Heroina_di_Caballero_Istaa.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Sylvia le Cruzcrown Sortilege Sisua", "reference_ids": ["R1"]}, {"id": "O2", "name": "Reina Kisaki", "reference_ids": ["R2"]}, {"id": "O3", "name": "Heroina di Caballero Istaa", "reference_ids": ["R3"]}, {"id": "O4", "name": "gazebo"}, {"id": "O5", "name": "tea table"}, {"id": "O6", "name": "teacup"}, {"id": "O7", "name": "rose bush"}], "constraints": [{"id": "C1", "type": "layout", "text": "Sylvia le Cruzcrown Sortilege Sisua is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Sylvia le Cruzcrown Sortilege Sisua is holding the teacup.", "depends_on": ["O1", "O6"]}, {"id": "C3", "type": "relation", "text": "Sylvia le Cruzcrown Sortilege Sisua is seated at the tea table.", "depends_on": ["O1", "O5"]}, {"id": "C4", "type": "relation", "text": "Reina Kisaki is positioned to the left of the tea table.", "depends_on": ["O2", "O5"]}, {"id": "C5", "type": "attribute", "text": "Reina Kisaki is standing.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "Reina Kisaki is looking toward Sylvia le Cruzcrown Sortilege Sisua.", "depends_on": ["O2", "O1"]}, {"id": "C7", "type": "relation", "text": "Heroina di Caballero Istaa is positioned on the right side of the gazebo.", "depends_on": ["O3", "O4"]}, {"id": "C8", "type": "relation", "text": "Heroina di Caballero Istaa is resting her hand on the tea table.", "depends_on": ["O3", "O5"]}, {"id": "C9", "type": "relation", "text": "The tea table is located inside the gazebo.", "depends_on": ["O5", "O4"]}, {"id": "C10", "type": "layout", "text": "The rose bush is located in the background.", "depends_on": ["O7"]}, {"id": "C11", "type": "relation", "text": "The rose bush is positioned behind the gazebo.", "depends_on": ["O7", "O4"]}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 8}} +{"id": "2-game_045", "category": "2-game", "prompt": "Create an image of Ginka from GINKA sitting on a wooden bench in a train station waiting area. She is resting her hands on a large suitcase positioned directly in front of her. In the background, a large circular clock hangs on the wall above a ticket machine. A wide window is visible on the right side of the scene, showing a bright outdoor environment.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_045_Ginka.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_045_Ginka.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ginka", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden bench"}, {"id": "O3", "name": "suitcase"}, {"id": "O4", "name": "clock"}, {"id": "O5", "name": "ticket machine"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Ginka is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Ginka is sitting on the wooden bench.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Ginka is resting her hands on the suitcase.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The suitcase is directly in front of Ginka.", "depends_on": ["O3", "O1"]}, {"id": "C5", "type": "layout", "text": "The clock is located in the background.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The clock is positioned above the ticket machine.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "layout", "text": "The window is located on the right side of the scene.", "depends_on": ["O6"]}, {"id": "C8", "type": "attribute", "text": "The clock is circular.", "depends_on": ["O4"]}, {"id": "C9", "type": "attribute", "text": "The window reveals an outdoor environment.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "2-game_046", "category": "2-game", "prompt": "Create an image of Luna Sakurakouji from Tsuki ni Yorisou Otome no Sahou sitting at a wooden drafting desk in the foreground. She is holding an open sketchpad in her hands while looking thoughtfully at it. Directly behind her in the midground, a tall dressmaker's mannequin stands next to a leaning fabric roll. A large window occupies the background, letting in bright daylight to illuminate the studio.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_046_Luna_Sakurakouji.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_046_Luna_Sakurakouji.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Luna Sakurakouji", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden drafting desk"}, {"id": "O3", "name": "sketchpad"}, {"id": "O4", "name": "dressmaker's mannequin"}, {"id": "O5", "name": "fabric roll"}, {"id": "O6", "name": "window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Luna Sakurakouji is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Luna Sakurakouji is sitting at the wooden drafting desk.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Luna Sakurakouji is holding the sketchpad.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "The sketchpad is open.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The dressmaker's mannequin is located in the midground, directly behind the wooden drafting desk.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "relation", "text": "The fabric roll is leaning next to the dressmaker's mannequin.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "layout", "text": "The window is in the background.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "2-game_047", "category": "2-game", "prompt": "Create an image of Risono Ohkura from Otome Riron to Sono Shuuhen and Bluette Nicolette Planquette from Otome Riron to Sono Shuuhen in an elegant dressing room. Risono Ohkura is seated on a plush sofa in the foreground, holding a dress up for inspection. Bluette Nicolette Planquette is standing directly behind the sofa, looking toward the dress. A large ornate mirror is visible in the background, and a glowing chandelier hangs from the ceiling above them.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_047_Risono_Ohkura.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_047_Bluette_Nicolette_Planquette.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_047_Risono_Ohkura.jpg", "reference_images/2-game/2-game_047_Bluette_Nicolette_Planquette.jpg"], "num_reference_images": 2, "entities": [{"id": "O1", "name": "Risono Ohkura", "reference_ids": ["R1"]}, {"id": "O2", "name": "Bluette Nicolette Planquette", "reference_ids": ["R2"]}, {"id": "O3", "name": "plush sofa"}, {"id": "O4", "name": "dress"}, {"id": "O5", "name": "ornate mirror"}, {"id": "O6", "name": "chandelier"}], "constraints": [{"id": "C1", "type": "layout", "text": "Risono Ohkura is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Risono Ohkura is seated on the plush sofa.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Risono Ohkura is holding the dress.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "Bluette Nicolette Planquette is standing directly behind the plush sofa.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "relation", "text": "Bluette Nicolette Planquette is standing behind Risono Ohkura.", "depends_on": ["O2", "O1"]}, {"id": "C6", "type": "relation", "text": "Bluette Nicolette Planquette is looking toward the dress.", "depends_on": ["O2", "O4"]}, {"id": "C7", "type": "layout", "text": "The ornate mirror is located in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The chandelier is located above Risono Ohkura.", "depends_on": ["O6", "O1"]}, {"id": "C9", "type": "relation", "text": "The chandelier is located above Bluette Nicolette Planquette.", "depends_on": ["O6", "O2"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"layout": 2, "relation": 7}} +{"id": "2-game_048", "category": "2-game", "prompt": "Create an image of Hikari from Arcaea standing on a transparent glass platform in the foreground. She is reaching her hand toward a large floating crystal positioned in the midground. Behind her, a glowing archway frames the scene. A white staircase descends into the lower background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_048_Hikari.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_048_Hikari.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Hikari", "reference_ids": ["R1"]}, {"id": "O2", "name": "glass platform"}, {"id": "O3", "name": "floating crystal"}, {"id": "O4", "name": "archway"}, {"id": "O5", "name": "white staircase"}], "constraints": [{"id": "C1", "type": "layout", "text": "Hikari is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Hikari is reaching her hand outward.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Hikari is standing on the glass platform.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The floating crystal is located in the midground.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The archway is directly behind Hikari.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "layout", "text": "The white staircase is located in the lower background.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 2}} +{"id": "2-game_049", "category": "2-game", "prompt": "Create an image of Rin from Muse Dash, Buro from Muse Dash, and Marija from Muse Dash performing on a brightly lit concert stage. Rin is standing in the foreground holding a microphone. Buro is positioned in the midground, standing behind a large DJ deck. Marija is sitting on one of the massive speakers in the background. A glowing neon sign hangs directly above the DJ deck.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_049_Rin.jpg"}, {"id": "R2", "path": "reference_images/2-game/2-game_049_Buro.jpg"}, {"id": "R3", "path": "reference_images/2-game/2-game_049_Marija.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_049_Rin.jpg", "reference_images/2-game/2-game_049_Buro.jpg", "reference_images/2-game/2-game_049_Marija.jpg"], "num_reference_images": 3, "entities": [{"id": "O1", "name": "Rin", "reference_ids": ["R1"]}, {"id": "O2", "name": "Buro", "reference_ids": ["R2"]}, {"id": "O3", "name": "Marija", "reference_ids": ["R3"]}, {"id": "O4", "name": "microphone"}, {"id": "O5", "name": "DJ deck"}, {"id": "O6", "name": "speakers"}, {"id": "O7", "name": "neon sign"}], "constraints": [{"id": "C1", "type": "layout", "text": "Rin is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Rin is holding the microphone.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "layout", "text": "Buro is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C4", "type": "relation", "text": "Buro is standing behind the DJ deck.", "depends_on": ["O2", "O5"]}, {"id": "C5", "type": "layout", "text": "Marija is located in the background.", "depends_on": ["O3"]}, {"id": "C6", "type": "relation", "text": "Marija is sitting on the speakers.", "depends_on": ["O3", "O6"]}, {"id": "C7", "type": "attribute", "text": "At least two speakers are present.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The neon sign is hanging directly above the DJ deck.", "depends_on": ["O7", "O5"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "2-game_050", "category": "2-game", "prompt": "Create an image of Groal the Great from Hollow Knight: Silksong working in a dimly lit blacksmith workshop. Groal the Great is standing in the foreground, holding a large hammer. Directly in front of him rests a heavy iron anvil. In the midground, a bright forge fire is burning inside a stone pillar. A large metal shield is leaning against the stone pillar in the background.", "reference_images": [{"id": "R1", "path": "reference_images/2-game/2-game_050_Groal_the_Great.jpg"}], "reference_image_paths": ["reference_images/2-game/2-game_050_Groal_the_Great.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Groal the Great", "reference_ids": ["R1"]}, {"id": "O2", "name": "hammer"}, {"id": "O3", "name": "iron anvil"}, {"id": "O4", "name": "forge fire"}, {"id": "O5", "name": "stone pillar"}, {"id": "O6", "name": "metal shield"}], "constraints": [{"id": "C1", "type": "layout", "text": "Groal the Great is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Groal the Great is standing.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Groal the Great is holding the hammer.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The iron anvil is located directly in front of Groal the Great.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "layout", "text": "The forge fire is located in the midground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The forge fire is burning inside the stone pillar.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "layout", "text": "The stone pillar is positioned in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The metal shield is leaning against the stone pillar.", "depends_on": ["O5", "O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "3-sports_001", "category": "3-sports", "prompt": "Create an image of Natalia Grossman centered high on an indoor sport climbing wall. Her right arm reaches toward a high climbing hold while her left hand grips a lower hold. A chalk bag is attached to the back of her harness. A safety rope drops from the harness toward the floor. At least three colored climbing holds are attached to the textured wall around her.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_001_Natalia_Grossman.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_001_Natalia_Grossman.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Natalia Grossman", "reference_ids": ["R1"]}, {"id": "O2", "name": "climbing wall"}, {"id": "O3", "name": "climbing holds"}, {"id": "O4", "name": "chalk bag"}, {"id": "O5", "name": "safety rope"}, {"id": "O6", "name": "harness"}], "constraints": [{"id": "C1", "type": "layout", "text": "Natalia Grossman is positioned in the center of the image.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Natalia Grossman is reaching upward with one arm.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Natalia Grossman is gripping one of the climbing holds.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "Natalia Grossman is wearing the harness.", "depends_on": ["O1", "O6"]}, {"id": "C5", "type": "relation", "text": "The chalk bag is attached to the harness.", "depends_on": ["O4", "O6"]}, {"id": "C6", "type": "relation", "text": "The safety rope extends downward from the harness.", "depends_on": ["O5", "O6"]}, {"id": "C7", "type": "relation", "text": "The climbing holds are attached to the climbing wall.", "depends_on": ["O3", "O2"]}, {"id": "C8", "type": "attribute", "text": "At least three climbing holds are present.", "depends_on": ["O3"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "3-sports_002", "category": "3-sports", "prompt": "Create an image of Toby Roberts on a steep indoor climbing wall near the center of the frame. He grips two climbing holds while a safety rope is attached to him and runs toward the lower edge of the image. A chalk bag rests against his lower back. A clipped quickdraw is attached to the wall panel just below his position. At least three colored climbing holds are visible on the wall.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_002_Toby_Roberts.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_002_Toby_Roberts.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Toby Roberts", "reference_ids": ["R1"]}, {"id": "O2", "name": "climbing wall"}, {"id": "O3", "name": "climbing holds"}, {"id": "O4", "name": "safety rope"}, {"id": "O5", "name": "chalk bag"}, {"id": "O6", "name": "quickdraw"}], "constraints": [{"id": "C1", "type": "layout", "text": "Toby Roberts is positioned in the center of the image.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Toby Roberts is gripping the climbing holds.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Toby Roberts is positioned on the climbing wall.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The safety rope is attached to Toby Roberts.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "The chalk bag is resting against Toby Roberts.", "depends_on": ["O1", "O5"]}, {"id": "C6", "type": "relation", "text": "The quickdraw is attached to the climbing wall.", "depends_on": ["O6", "O2"]}, {"id": "C7", "type": "attribute", "text": "Toby Roberts is reaching upward.", "depends_on": ["O1"]}, {"id": "C8", "type": "attribute", "text": "At least three climbing holds are present.", "depends_on": ["O3"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "3-sports_003", "category": "3-sports", "prompt": "Create an image of Sorato Anraku clipping a safety rope into a quickdraw on an overhanging indoor climbing wall. A belayer silhouette stands on a crash mat below while holding the rope. A route tag is fixed near the base of the wall, and a large volume hold protrudes in the lower foreground. The climbing wall fills the background behind the rope path.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_003_Sorato_Anraku.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_003_Sorato_Anraku.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sorato Anraku", "reference_ids": ["R1"]}, {"id": "O2", "name": "climbing wall"}, {"id": "O3", "name": "safety rope"}, {"id": "O4", "name": "quickdraw"}, {"id": "O5", "name": "belayer silhouette"}, {"id": "O6", "name": "crash mat"}, {"id": "O7", "name": "route tag"}, {"id": "O8", "name": "volume hold"}], "constraints": [{"id": "C1", "type": "relation", "text": "Sorato Anraku is clipping the safety rope into the quickdraw.", "depends_on": ["O1", "O3", "O4"]}, {"id": "C2", "type": "relation", "text": "The quickdraw is attached to the climbing wall.", "depends_on": ["O4", "O2"]}, {"id": "C3", "type": "relation", "text": "The belayer silhouette is standing on the crash mat.", "depends_on": ["O5", "O6"]}, {"id": "C4", "type": "relation", "text": "The belayer silhouette is holding the safety rope.", "depends_on": ["O5", "O3"]}, {"id": "C5", "type": "relation", "text": "The route tag is fixed near the base of the climbing wall.", "depends_on": ["O7", "O2"]}, {"id": "C6", "type": "layout", "text": "The volume hold is located in the lower foreground.", "depends_on": ["O8"]}, {"id": "C7", "type": "layout", "text": "The climbing wall fills the background.", "depends_on": ["O2"]}, {"id": "C8", "type": "relation", "text": "The safety rope follows a visible path down the climbing wall.", "depends_on": ["O3", "O2"]}, {"id": "C9", "type": "attribute", "text": "The scene contains exactly one featured athlete, Sorato Anraku.", "depends_on": ["O1"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "3-sports_004", "category": "3-sports", "prompt": "Create an image of Brooke Raboutou practicing on an indoor bouldering wall. She is crouched on a large volume hold while reaching toward a route tag above it. A crash pad covers the lower foreground below the wall. A chalk bucket sits beside the crash pad, and a climbing brush rests on the pad.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_004_Brooke_Raboutou.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_004_Brooke_Raboutou.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Brooke Raboutou", "reference_ids": ["R1"]}, {"id": "O2", "name": "bouldering wall"}, {"id": "O3", "name": "volume hold"}, {"id": "O4", "name": "route tag"}, {"id": "O5", "name": "crash pad"}, {"id": "O6", "name": "chalk bucket"}, {"id": "O7", "name": "climbing brush"}], "constraints": [{"type": "attribute", "text": "Brooke Raboutou is crouched.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Brooke Raboutou is positioned on the volume hold.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "relation", "text": "The volume hold is attached to the bouldering wall.", "depends_on": ["O3", "O2"], "id": "C3"}, {"type": "relation", "text": "Brooke Raboutou is reaching toward the route tag.", "depends_on": ["O1", "O4"], "id": "C4"}, {"type": "relation", "text": "The route tag is above the volume hold.", "depends_on": ["O4", "O3"], "id": "C5"}, {"type": "relation", "text": "The crash pad is below the bouldering wall.", "depends_on": ["O5", "O2"], "id": "C6"}, {"type": "layout", "text": "The crash pad covers the lower foreground.", "depends_on": ["O5"], "id": "C7"}, {"type": "relation", "text": "The chalk bucket sits beside the crash pad.", "depends_on": ["O6", "O5"], "id": "C8"}, {"type": "relation", "text": "The climbing brush rests on the crash pad.", "depends_on": ["O7", "O5"], "id": "C9"}, {"id": "C10", "type": "attribute", "text": "The scene contains exactly one featured athlete, Brooke Raboutou.", "depends_on": ["O1"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 7}} +{"id": "3-sports_005", "category": "3-sports", "prompt": "Create an image of Ai Mori working a bouldering problem on an indoor climbing wall. She is crouched on a crash mat in the lower foreground while using a wall brush on a climbing hold. An open chalk bucket sits beside the crash mat. A route tag is fixed below a cluster of at least three climbing holds, and angled wall panels fill the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_005_Ai_Mori.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_005_Ai_Mori.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ai Mori", "reference_ids": ["R1"]}, {"id": "O2", "name": "climbing wall"}, {"id": "O3", "name": "climbing holds"}, {"id": "O4", "name": "crash mat"}, {"id": "O5", "name": "wall brush"}, {"id": "O6", "name": "chalk bucket"}, {"id": "O7", "name": "route tag"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Ai Mori is crouched.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Ai Mori is positioned on the crash mat.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "Ai Mori is using the wall brush on a climbing hold.", "depends_on": ["O1", "O5", "O3"]}, {"id": "C4", "type": "attribute", "text": "The chalk bucket is open.", "depends_on": ["O6"]}, {"id": "C5", "type": "relation", "text": "The chalk bucket sits beside the crash mat.", "depends_on": ["O6", "O4"]}, {"id": "C6", "type": "relation", "text": "The route tag is fixed below the climbing holds.", "depends_on": ["O7", "O3"]}, {"id": "C7", "type": "attribute", "text": "At least three climbing holds are present.", "depends_on": ["O3"]}, {"id": "C8", "type": "layout", "text": "The climbing wall fills the background.", "depends_on": ["O2"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 4}} +{"id": "3-sports_006", "category": "3-sports", "prompt": "Create an image of Paul Coll lunging across the foreground of a wooden squash court. He extends a squash racket toward a squash ball hovering just above the court floor. The large front wall stands in the background with a horizontal tin line near its base. The court floor stretches from Paul Coll toward the front wall.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_006_Paul_Coll.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_006_Paul_Coll.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Paul Coll", "reference_ids": ["R1"]}, {"id": "O2", "name": "squash racket"}, {"id": "O3", "name": "squash ball"}, {"id": "O4", "name": "front wall"}, {"id": "O5", "name": "court floor"}, {"id": "O6", "name": "tin line"}], "constraints": [{"id": "C1", "type": "layout", "text": "Paul Coll is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Paul Coll is lunging.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Paul Coll is holding the squash racket.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Paul Coll is positioned on the court floor.", "depends_on": ["O1", "O5"]}, {"id": "C5", "type": "relation", "text": "The squash ball is positioned near the squash racket.", "depends_on": ["O3", "O2"]}, {"id": "C6", "type": "relation", "text": "The tin line is located on the front wall.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "layout", "text": "The front wall is positioned in the background.", "depends_on": ["O4"]}, {"id": "C8", "type": "relation", "text": "The squash ball is above the court floor.", "depends_on": ["O3", "O5"]}, {"id": "C9", "type": "attribute", "text": "The scene contains exactly one featured athlete, Paul Coll.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "3-sports_007", "category": "3-sports", "prompt": "Create an image of Diego Elias waiting at the service box on a squash court before a point. He holds a squash racket upright beside his shoulder while a squash ball rests in his other hand. A service box line is marked beneath his feet. A glass court door stands in the background, and a folded towel lies near the side wall in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_007_Diego_Elias.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_007_Diego_Elias.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Diego Elias", "reference_ids": ["R1"]}, {"id": "O2", "name": "squash racket"}, {"id": "O3", "name": "squash ball"}, {"id": "O4", "name": "service box line"}, {"id": "O5", "name": "glass court door"}, {"id": "O6", "name": "towel"}, {"id": "O7", "name": "side wall"}], "constraints": [{"id": "C1", "type": "relation", "text": "Diego Elias is holding the squash racket.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "The squash racket is upright beside Diego Elias.", "depends_on": ["O2", "O1"]}, {"id": "C3", "type": "relation", "text": "The squash ball rests in Diego Elias's other hand.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "relation", "text": "The service box line is marked beneath Diego Elias.", "depends_on": ["O4", "O1"]}, {"id": "C5", "type": "layout", "text": "The glass court door stands in the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The towel lies near the side wall.", "depends_on": ["O6", "O7"]}, {"id": "C7", "type": "layout", "text": "The towel is located in the lower foreground.", "depends_on": ["O6"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly one featured athlete, Diego Elias.", "depends_on": ["O1"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "3-sports_008", "category": "3-sports", "prompt": "Create an image of Hania El Hammamy reaching low across a squash court with her squash racket extended. A squash ball sits just above the court floor near the racket. A side wall runs along one edge of the scene, while the front wall stands in the background. The racket and ball occupy the foreground, and the front wall creates the rear layer.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_008_Hania_El_Hammamy.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_008_Hania_El_Hammamy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Hania El Hammamy", "reference_ids": ["R1"]}, {"id": "O2", "name": "squash racket"}, {"id": "O3", "name": "squash ball"}, {"id": "O4", "name": "court floor"}, {"id": "O5", "name": "side wall"}, {"id": "O6", "name": "front wall"}], "constraints": [{"id": "C1", "type": "layout", "text": "Hania El Hammamy is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Hania El Hammamy is lunging low.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Hania El Hammamy is holding the squash racket.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The squash racket is extended toward the squash ball.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "relation", "text": "The squash ball is positioned above the court floor.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "Hania El Hammamy is standing on the court floor.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "The side wall is adjacent to the court floor.", "depends_on": ["O5", "O4"]}, {"id": "C8", "type": "layout", "text": "The front wall is in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "attribute", "text": "The scene contains exactly one featured athlete, Hania El Hammamy.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "3-sports_009", "category": "3-sports", "prompt": "Create an image of Nouran Gohar swinging during a squash practice session. She lunges low toward the court floor with her squash racket extended forward. A squash ball hangs in the air just above the racket head. The glass back wall sits in the background, while the front wall defines the forward boundary of the court. The service box line is marked on the wooden floor beneath her feet.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_009_Nouran_Gohar.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_009_Nouran_Gohar.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Nouran Gohar", "reference_ids": ["R1"]}, {"id": "O2", "name": "squash racket"}, {"id": "O3", "name": "squash ball"}, {"id": "O4", "name": "court floor"}, {"id": "O5", "name": "glass back wall"}, {"id": "O6", "name": "front wall"}, {"id": "O7", "name": "service box line"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Nouran Gohar is lunging low.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Nouran Gohar is holding the squash racket.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The squash ball is in the air near the squash racket.", "depends_on": ["O3", "O2"]}, {"id": "C4", "type": "relation", "text": "Nouran Gohar is positioned on the court floor.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "layout", "text": "The glass back wall is located in the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The service box line is marked on the court floor.", "depends_on": ["O7", "O4"]}, {"id": "C7", "type": "relation", "text": "The front wall connects to the court floor.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly one featured athlete, Nouran Gohar.", "depends_on": ["O1"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "3-sports_010", "category": "3-sports", "prompt": "Create an image of Amanda Sobhy preparing to serve inside a squash service box. She holds a squash racket lowered behind her while a squash ball rests on her open palm. The service box line is marked on the wooden court floor. A glass back wall fills the background, and a small ball tin sits near the lower foreground edge of the court.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_010_Amanda_Sobhy.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_010_Amanda_Sobhy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Amanda Sobhy", "reference_ids": ["R1"]}, {"id": "O2", "name": "squash racket"}, {"id": "O3", "name": "squash ball"}, {"id": "O4", "name": "service box line"}, {"id": "O5", "name": "court floor"}, {"id": "O6", "name": "glass back wall"}, {"id": "O7", "name": "ball tin"}], "constraints": [{"id": "C1", "type": "relation", "text": "Amanda Sobhy is holding the squash racket.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "The squash racket is lowered behind Amanda Sobhy.", "depends_on": ["O2", "O1"]}, {"id": "C3", "type": "relation", "text": "The squash ball rests on Amanda Sobhy's open palm.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "relation", "text": "The service box line is marked on the court floor.", "depends_on": ["O4", "O5"]}, {"id": "C5", "type": "relation", "text": "Amanda Sobhy is positioned inside the service box line.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "layout", "text": "The glass back wall fills the background.", "depends_on": ["O6"]}, {"id": "C7", "type": "layout", "text": "The ball tin sits near the lower foreground edge.", "depends_on": ["O7"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly one featured athlete, Amanda Sobhy.", "depends_on": ["O1"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "3-sports_011", "category": "3-sports", "prompt": "Create an image of Anders Antonsen rising behind a badminton net during a rally. He holds a badminton racket high while reaching toward a shuttlecock above the net. Court boundary lines run beneath him. A generic opponent silhouette stands in the background on the far side of the net. The net separates the athlete from the opponent.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_011_Anders_Antonsen.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_011_Anders_Antonsen.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Anders Antonsen", "reference_ids": ["R1"]}, {"id": "O2", "name": "badminton racket"}, {"id": "O3", "name": "shuttlecock"}, {"id": "O4", "name": "badminton net"}, {"id": "O5", "name": "court boundary lines"}, {"id": "O6", "name": "generic opponent silhouette"}], "constraints": [{"id": "C1", "type": "relation", "text": "Anders Antonsen is holding the badminton racket.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "Anders Antonsen is jumping mid-air.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The badminton racket is raised toward the shuttlecock.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The badminton net is positioned between Anders Antonsen and the generic opponent silhouette.", "depends_on": ["O1", "O4", "O6"]}, {"id": "C5", "type": "relation", "text": "The court boundary lines run beneath Anders Antonsen.", "depends_on": ["O1", "O5"]}, {"id": "C6", "type": "layout", "text": "The generic opponent silhouette is positioned in the background.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The shuttlecock is positioned higher than the badminton net.", "depends_on": ["O3", "O4"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly one featured athlete, Anders Antonsen.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "3-sports_012", "category": "3-sports", "prompt": "Create an image of Kim Astrup at the peak of a badminton jump smash. He grips a badminton racket above his head, and a shuttlecock is positioned near the racket strings. A net separates him from a generic opponent in the background. A court boundary line runs beneath the players. The shuttlecock is higher than the net.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_012_Kim_Astrup.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_012_Kim_Astrup.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Kim Astrup", "reference_ids": ["R1"]}, {"id": "O2", "name": "badminton racket"}, {"id": "O3", "name": "shuttlecock"}, {"id": "O4", "name": "net"}, {"id": "O5", "name": "generic opponent"}, {"id": "O6", "name": "court boundary line"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Kim Astrup is suspended mid-air.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Kim Astrup is gripping the badminton racket.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The shuttlecock is positioned near the badminton racket.", "depends_on": ["O3", "O2"]}, {"id": "C4", "type": "relation", "text": "The net separates Kim Astrup from the generic opponent.", "depends_on": ["O4", "O1", "O5"]}, {"id": "C5", "type": "layout", "text": "The generic opponent is located in the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The shuttlecock is located higher than the net.", "depends_on": ["O3", "O4"]}, {"id": "C7", "type": "relation", "text": "The court boundary line runs beneath Kim Astrup and the generic opponent.", "depends_on": ["O6", "O1", "O5"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly one featured athlete, Kim Astrup.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "3-sports_013", "category": "3-sports", "prompt": "Create an image of Anders Skaarup Rasmussen suspended above the badminton court during a jump smash. He holds a badminton racket high and reaches toward a shuttlecock above the racket. A taut net stretches across the midground. A generic opponent stands on the far side of the net. A court boundary line is visible below the airborne player.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_013_Anders_Skaarup_Rasmussen.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_013_Anders_Skaarup_Rasmussen.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Anders Skaarup Rasmussen", "reference_ids": ["R1"]}, {"id": "O2", "name": "badminton racket"}, {"id": "O3", "name": "shuttlecock"}, {"id": "O4", "name": "net"}, {"id": "O5", "name": "court boundary line"}, {"id": "O6", "name": "generic opponent"}], "constraints": [{"id": "C1", "type": "relation", "text": "Anders Skaarup Rasmussen is holding the badminton racket.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Anders Skaarup Rasmussen is suspended in the air above the court boundary line.", "depends_on": ["O1", "O5"]}, {"id": "C3", "type": "relation", "text": "The shuttlecock is located higher than the badminton racket.", "depends_on": ["O3", "O2"]}, {"id": "C4", "type": "relation", "text": "The net is positioned between Anders Skaarup Rasmussen and the generic opponent.", "depends_on": ["O4", "O1", "O6"]}, {"id": "C5", "type": "layout", "text": "The net stretches horizontally across the midground of the image.", "depends_on": ["O4"]}, {"id": "C6", "type": "attribute", "text": "The generic opponent is standing.", "depends_on": ["O6"]}, {"id": "C7", "type": "layout", "text": "The generic opponent is positioned in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "attribute", "text": "The scene contains exactly one featured athlete, Anders Skaarup Rasmussen.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "3-sports_014", "category": "3-sports", "prompt": "Create an image of Seo Seung-jae jumping in the foreground during a badminton rally. He holds a badminton racket above his head, with a shuttlecock near the top edge of the image. A badminton net stretches across the midground. A generic opponent stands on the far side of the net, and court boundary lines run across the floor.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_014_Seo_Seung_jae.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_014_Seo_Seung_jae.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Seo Seung-jae", "reference_ids": ["R1"]}, {"id": "O2", "name": "badminton racket"}, {"id": "O3", "name": "shuttlecock"}, {"id": "O4", "name": "badminton net"}, {"id": "O5", "name": "court boundary lines"}, {"id": "O6", "name": "generic opponent"}], "constraints": [{"id": "C1", "type": "layout", "text": "Seo Seung-jae is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Seo Seung-jae is jumping in the air.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Seo Seung-jae is holding the badminton racket.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The badminton net is located in the midground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The badminton net separates Seo Seung-jae from the generic opponent.", "depends_on": ["O1", "O4", "O6"]}, {"id": "C6", "type": "layout", "text": "The court boundary lines run across the floor.", "depends_on": ["O5"]}, {"id": "C7", "type": "layout", "text": "The shuttlecock is located near the top edge of the image.", "depends_on": ["O3"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 4, "relation": 2}} +{"id": "3-sports_015", "category": "3-sports", "prompt": "Create an image of Beiwen Zhang jumping behind a foreground badminton net. She holds a badminton racket above her head while tracking a shuttlecock above the racket. A generic opponent stands beyond the net in the background. A court boundary line runs beneath Beiwen Zhang. The net is positioned between her and the opponent.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_015_Beiwen_Zhang.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_015_Beiwen_Zhang.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Beiwen Zhang", "reference_ids": ["R1"]}, {"id": "O2", "name": "badminton racket"}, {"id": "O3", "name": "shuttlecock"}, {"id": "O4", "name": "badminton net"}, {"id": "O5", "name": "generic opponent"}, {"id": "O6", "name": "court boundary line"}], "constraints": [{"id": "C1", "type": "relation", "text": "Beiwen Zhang is holding the badminton racket.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "Beiwen Zhang is jumping mid-air.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The shuttlecock is located higher than the badminton racket.", "depends_on": ["O3", "O2"]}, {"id": "C4", "type": "layout", "text": "The badminton net is positioned in the foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The badminton net is located between Beiwen Zhang and the generic opponent.", "depends_on": ["O4", "O1", "O5"]}, {"id": "C6", "type": "relation", "text": "The court boundary line runs below Beiwen Zhang.", "depends_on": ["O6", "O1"]}], "num_entities": 6, "num_constraints": 6, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 4}} +{"id": "3-sports_016", "category": "3-sports", "prompt": "Create an image of Adriana Diaz beside a table tennis robot during practice. She holds a table tennis paddle while facing the robot launcher at the far end of the table tennis table. A ball bucket filled with practice balls sits beside the table tennis table. A control panel is attached to the robot stand, and a side barrier lines the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_016_Adriana_Diaz.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_016_Adriana_Diaz.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Adriana Diaz", "reference_ids": ["R1"]}, {"id": "O2", "name": "table tennis paddle"}, {"id": "O3", "name": "table tennis robot"}, {"id": "O4", "name": "table tennis table"}, {"id": "O5", "name": "ball bucket"}, {"id": "O6", "name": "practice balls"}, {"id": "O7", "name": "control panel"}, {"id": "O8", "name": "robot stand"}, {"id": "O9", "name": "side barrier"}], "constraints": [{"id": "C1", "type": "relation", "text": "Adriana Diaz is holding the table tennis paddle.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Adriana Diaz is facing the table tennis robot.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The table tennis robot is at the far end of the table tennis table.", "depends_on": ["O3", "O4"]}, {"id": "C4", "type": "relation", "text": "The ball bucket sits beside the table tennis table.", "depends_on": ["O5", "O4"]}, {"id": "C5", "type": "relation", "text": "The practice balls are inside the ball bucket.", "depends_on": ["O6", "O5"]}, {"id": "C6", "type": "relation", "text": "The control panel is attached to the robot stand.", "depends_on": ["O7", "O8"]}, {"id": "C7", "type": "relation", "text": "The robot stand supports the table tennis robot.", "depends_on": ["O8", "O3"]}, {"id": "C8", "type": "layout", "text": "The side barrier lines the background.", "depends_on": ["O9"]}], "num_entities": 9, "num_constraints": 8, "constraint_type_counts": {"layout": 1, "relation": 7}} +{"id": "3-sports_017", "category": "3-sports", "prompt": "Create an image of Hugo Calderano preparing a table tennis serve at the near end of the table tennis table. He holds a table tennis paddle low in one hand while a table tennis ball rises above his open palm. The table tennis net crosses the midground. A small towel lies on one table tennis table corner, and a ball basket sits beside the table tennis table in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_017_Hugo_Calderano.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_017_Hugo_Calderano.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Hugo Calderano", "reference_ids": ["R1"]}, {"id": "O2", "name": "table tennis paddle"}, {"id": "O3", "name": "table tennis ball"}, {"id": "O4", "name": "table tennis table"}, {"id": "O5", "name": "table tennis net"}, {"id": "O6", "name": "towel"}, {"id": "O7", "name": "ball basket"}], "constraints": [{"id": "C1", "type": "relation", "text": "Hugo Calderano is holding the table tennis paddle.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "The table tennis paddle is held low.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "The table tennis ball is above Hugo Calderano's open palm.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "relation", "text": "The table tennis net crosses the table tennis table.", "depends_on": ["O5", "O4"]}, {"id": "C5", "type": "relation", "text": "The towel lies on one table corner.", "depends_on": ["O6", "O4"]}, {"id": "C6", "type": "relation", "text": "The ball basket sits beside the table tennis table.", "depends_on": ["O7", "O4"]}, {"id": "C7", "type": "layout", "text": "The ball basket is located in the lower foreground.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "3-sports_018", "category": "3-sports", "prompt": "Create an image of Shin Yubin leaning over the near edge of a table tennis table. She grips a table tennis paddle during a backhand stroke, and a table tennis ball hovers above the paddle surface. A taut net divides the table across the midground. A low side barrier encloses the background. The table tennis table occupies the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_018_Shin_Yubin.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_018_Shin_Yubin.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Shin Yubin", "reference_ids": ["R1"]}, {"id": "O2", "name": "table tennis paddle"}, {"id": "O3", "name": "table tennis table"}, {"id": "O4", "name": "net"}, {"id": "O5", "name": "table tennis ball"}, {"id": "O6", "name": "side barrier"}], "constraints": [{"id": "C1", "type": "relation", "text": "Shin Yubin is leaning over the table tennis table.", "depends_on": ["O1", "O3"]}, {"id": "C2", "type": "relation", "text": "Shin Yubin is holding the table tennis paddle.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The table tennis ball is positioned above the table tennis paddle.", "depends_on": ["O5", "O2"]}, {"id": "C4", "type": "relation", "text": "The net stretches across the table tennis table.", "depends_on": ["O4", "O3"]}, {"id": "C5", "type": "layout", "text": "The side barrier is located in the background.", "depends_on": ["O6"]}, {"id": "C6", "type": "attribute", "text": "Shin Yubin has her arm extended.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 6, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 4}} +{"id": "3-sports_019", "category": "3-sports", "prompt": "Create an image of Bernadette Szocs between table tennis points at the side of a practice area. She holds a table tennis paddle while wiping it with a towel. A water bottle stands on a side bench beside her. Score flip cards rest on a small table in the midground, and the table tennis table is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_019_Bernadette_Szocs.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_019_Bernadette_Szocs.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Bernadette Szocs", "reference_ids": ["R1"]}, {"id": "O2", "name": "table tennis paddle"}, {"id": "O3", "name": "towel"}, {"id": "O4", "name": "water bottle"}, {"id": "O5", "name": "side bench"}, {"id": "O6", "name": "score flip cards"}, {"id": "O7", "name": "small table"}, {"id": "O8", "name": "table tennis table"}], "constraints": [{"id": "C1", "type": "relation", "text": "Bernadette Szocs is holding the table tennis paddle.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Bernadette Szocs is wiping the table tennis paddle with the towel.", "depends_on": ["O1", "O2", "O3"]}, {"id": "C3", "type": "relation", "text": "The water bottle stands on the side bench.", "depends_on": ["O4", "O5"]}, {"id": "C4", "type": "relation", "text": "The side bench is beside Bernadette Szocs.", "depends_on": ["O5", "O1"]}, {"id": "C5", "type": "relation", "text": "The score flip cards rest on the small table.", "depends_on": ["O6", "O7"]}, {"id": "C6", "type": "layout", "text": "The small table is positioned in the midground.", "depends_on": ["O7"]}, {"id": "C7", "type": "layout", "text": "The table tennis table is visible in the background.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 7, "constraint_type_counts": {"layout": 2, "relation": 5}} +{"id": "3-sports_020", "category": "3-sports", "prompt": "Create an image of Truls Moregardh during a table tennis multiball drill. He stands beside the table tennis table with a raised table tennis paddle aimed toward a table tennis ball above the net. A generic coach silhouette stands on the opposite side of the table tennis table beside a ball basket. A towel hangs over a side barrier in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_020_Truls_Moregardh.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_020_Truls_Moregardh.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Truls Moregardh", "reference_ids": ["R1"]}, {"id": "O2", "name": "table tennis paddle"}, {"id": "O3", "name": "table tennis ball"}, {"id": "O4", "name": "table tennis table"}, {"id": "O5", "name": "net"}, {"id": "O6", "name": "coach silhouette"}, {"id": "O7", "name": "ball basket"}, {"id": "O8", "name": "towel"}, {"id": "O9", "name": "side barrier"}], "constraints": [{"id": "C1", "type": "relation", "text": "Truls Moregardh is gripping the table tennis paddle.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "The table tennis paddle is raised.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "Truls Moregardh stands beside the table tennis table.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The table tennis ball is above the net.", "depends_on": ["O3", "O5"]}, {"id": "C5", "type": "relation", "text": "The coach silhouette stands on the opposite side of the table tennis table.", "depends_on": ["O6", "O4"]}, {"id": "C6", "type": "relation", "text": "The ball basket is beside the coach silhouette.", "depends_on": ["O7", "O6"]}, {"id": "C7", "type": "relation", "text": "The towel hangs over the side barrier.", "depends_on": ["O8", "O9"]}, {"id": "C8", "type": "layout", "text": "The side barrier is located in the background.", "depends_on": ["O9"]}], "num_entities": 9, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "3-sports_021", "category": "3-sports", "prompt": "Create an image of Koki Kano on a fencing piste between practice points. He holds a fencing mask under one arm and grips a fencing weapon in the other hand. The weapon points toward a masked opponent standing opposite him. A scoring box rests on the piste in the background. A straight boundary line runs across the bottom foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_021_Koki_Kano.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_021_Koki_Kano.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Koki Kano", "reference_ids": ["R1"]}, {"id": "O2", "name": "fencing piste"}, {"id": "O3", "name": "fencing mask"}, {"id": "O4", "name": "fencing weapon"}, {"id": "O5", "name": "masked opponent"}, {"id": "O6", "name": "scoring box"}, {"id": "O7", "name": "boundary line"}], "constraints": [{"id": "C1", "type": "layout", "text": "Koki Kano is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Koki Kano is standing on the fencing piste.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Koki Kano is holding the fencing mask.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "Koki Kano is gripping the fencing weapon.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "Koki Kano is facing the masked opponent.", "depends_on": ["O1", "O5"]}, {"id": "C6", "type": "relation", "text": "The scoring box is resting on the fencing piste.", "depends_on": ["O6", "O2"]}, {"id": "C7", "type": "layout", "text": "The scoring box is located in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "layout", "text": "The boundary line runs across the foreground.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "The fencing weapon points toward the masked opponent.", "depends_on": ["O4", "O5"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"layout": 3, "relation": 6}} +{"id": "3-sports_022", "category": "3-sports", "prompt": "Create an image of Sara Balzer lunging forward on a long fencing piste. She extends a fencing weapon toward a masked opponent in an en garde position. The opponent holds an opponent fencing weapon. A scoring box sits near the edge of the piste in the background. A boundary line marks the combat area on the piste surface.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_022_Sara_Balzer.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_022_Sara_Balzer.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sara Balzer", "reference_ids": ["R1"]}, {"id": "O2", "name": "fencing weapon"}, {"id": "O3", "name": "masked opponent"}, {"id": "O4", "name": "fencing piste"}, {"id": "O5", "name": "scoring box"}, {"id": "O6", "name": "boundary line"}, {"id": "O7", "name": "opponent fencing weapon"}], "constraints": [{"id": "C1", "type": "relation", "text": "Sara Balzer is holding the fencing weapon.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "Sara Balzer is in a lunging posture.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The fencing weapon is extended toward the masked opponent.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "Sara Balzer is positioned on the fencing piste.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "The masked opponent is holding the opponent fencing weapon.", "depends_on": ["O3", "O7"]}, {"id": "C6", "type": "layout", "text": "The scoring box is located in the background.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The boundary line is marked on the surface of the fencing piste.", "depends_on": ["O6", "O4"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "3-sports_023", "category": "3-sports", "prompt": "Create an image of Tommaso Marini paused between fencing actions on a long fencing piste. He holds a fencing mask under one arm while gripping a fencing weapon with the blade tip pointed down toward the fencing piste. A masked opponent waits at the opposite end in the background. The fencing piste stretches across the foreground. A scoring box rests near the edge of the fencing piste.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_023_Tommaso_Marini.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_023_Tommaso_Marini.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Tommaso Marini", "reference_ids": ["R1"]}, {"id": "O2", "name": "fencing mask"}, {"id": "O3", "name": "fencing weapon"}, {"id": "O4", "name": "fencing piste"}, {"id": "O5", "name": "masked opponent"}, {"id": "O6", "name": "scoring box"}], "constraints": [{"id": "C1", "type": "relation", "text": "Tommaso Marini is holding the fencing mask.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Tommaso Marini is gripping the fencing weapon.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The fencing weapon points toward the fencing piste.", "depends_on": ["O3", "O4"]}, {"id": "C4", "type": "layout", "text": "The masked opponent is positioned in the background.", "depends_on": ["O5"]}, {"id": "C5", "type": "relation", "text": "The masked opponent is standing on the fencing piste.", "depends_on": ["O5", "O4"]}, {"id": "C6", "type": "layout", "text": "The fencing piste stretches across the foreground.", "depends_on": ["O4"]}, {"id": "C7", "type": "relation", "text": "The scoring box is located near the edge of the fencing piste.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "attribute", "text": "The fencing weapon points toward the floor.", "depends_on": ["O3"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "3-sports_024", "category": "3-sports", "prompt": "Create an image of Lee Kiefer at the side of a fencing piste after an exchange. She holds a fencing mask in one hand while her fencing weapon points down toward the piste. A scoring light box glows beside the piste, and a coiled body cord lies near her feet. A masked opponent waits beyond the center line in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_024_Lee_Kiefer.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_024_Lee_Kiefer.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Lee Kiefer", "reference_ids": ["R1"]}, {"id": "O2", "name": "fencing piste"}, {"id": "O3", "name": "fencing mask"}, {"id": "O4", "name": "fencing weapon"}, {"id": "O5", "name": "scoring light box"}, {"id": "O6", "name": "body cord"}, {"id": "O7", "name": "masked opponent"}, {"id": "O8", "name": "center line"}], "constraints": [{"id": "C1", "type": "relation", "text": "Lee Kiefer is positioned at the side of the fencing piste.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Lee Kiefer is holding the fencing mask.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The fencing weapon points down toward the fencing piste.", "depends_on": ["O4", "O2"]}, {"id": "C4", "type": "attribute", "text": "The scoring light box is glowing.", "depends_on": ["O5"]}, {"id": "C5", "type": "relation", "text": "The scoring light box is beside the fencing piste.", "depends_on": ["O5", "O2"]}, {"id": "C6", "type": "relation", "text": "The body cord lies near Lee Kiefer's feet.", "depends_on": ["O6", "O1"]}, {"id": "C7", "type": "relation", "text": "The masked opponent waits beyond the center line.", "depends_on": ["O7", "O8"]}, {"id": "C8", "type": "relation", "text": "The center line is marked on the fencing piste.", "depends_on": ["O8", "O2"]}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "relation": 7}} +{"id": "3-sports_025", "category": "3-sports", "prompt": "Create an image of Vivian Kong kneeling beside a fencing piste while adjusting a body cord on her fencing jacket. A fencing mask rests on a folding chair next to her. A fencing weapon lies parallel to the piste boundary line. A referee silhouette stands at the far end of the piste, and a colored floor strip crosses the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_025_Vivian_Kong.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_025_Vivian_Kong.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Vivian Kong", "reference_ids": ["R1"]}, {"id": "O2", "name": "fencing piste"}, {"id": "O3", "name": "body cord"}, {"id": "O4", "name": "fencing jacket"}, {"id": "O5", "name": "fencing mask"}, {"id": "O6", "name": "folding chair"}, {"id": "O7", "name": "fencing weapon"}, {"id": "O8", "name": "piste boundary line"}, {"id": "O9", "name": "referee silhouette"}, {"id": "O10", "name": "floor strip"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Vivian Kong is kneeling.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Vivian Kong is beside the fencing piste.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Vivian Kong is adjusting the body cord on the fencing jacket.", "depends_on": ["O1", "O3", "O4"]}, {"id": "C4", "type": "relation", "text": "The fencing mask rests on the folding chair.", "depends_on": ["O5", "O6"]}, {"id": "C5", "type": "relation", "text": "The fencing weapon lies parallel to the piste boundary line.", "depends_on": ["O7", "O8"]}, {"id": "C6", "type": "relation", "text": "The referee silhouette stands at the far end of the fencing piste.", "depends_on": ["O9", "O2"]}, {"id": "C7", "type": "layout", "text": "The floor strip crosses the lower foreground.", "depends_on": ["O10"]}], "num_entities": 10, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "3-sports_026", "category": "3-sports", "prompt": "Create an image of Matthias Casse in a close judo grip exchange on a textured judo mat. He grips the collar area of a training partner gi while stepping into a low stance. The training partner wears the gi and stands on the mat. A belt is tied around Matthias Casse. A mat boundary line runs across the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_026_Matthias_Casse.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_026_Matthias_Casse.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Matthias Casse", "reference_ids": ["R1"]}, {"id": "O2", "name": "training partner"}, {"id": "O3", "name": "training partner gi"}, {"id": "O4", "name": "judo mat"}, {"id": "O5", "name": "mat boundary line"}, {"id": "O6", "name": "belt"}], "constraints": [{"id": "C1", "type": "relation", "text": "Matthias Casse is gripping the training partner gi.", "depends_on": ["O1", "O3"]}, {"id": "C2", "type": "relation", "text": "Matthias Casse is standing on the judo mat.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "The training partner is wearing the training partner gi.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The belt is tied around Matthias Casse.", "depends_on": ["O1", "O6"]}, {"id": "C5", "type": "layout", "text": "The mat boundary line runs across the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "attribute", "text": "Matthias Casse is in a low stance.", "depends_on": ["O1"]}, {"id": "C7", "type": "relation", "text": "The training partner is standing on the judo mat.", "depends_on": ["O2", "O4"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "3-sports_027", "category": "3-sports", "prompt": "Create an image of Christa Deguchi kneeling at the edge of a judo mat before a drill. She is tying the belt around her waist. A pair of sandals rests beside the mat edge in the lower foreground. A training partner stretches on the mat in the midground, and a wall timer hangs in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_027_Christa_Deguchi.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_027_Christa_Deguchi.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Christa Deguchi", "reference_ids": ["R1"]}, {"id": "O2", "name": "judo mat"}, {"id": "O3", "name": "belt"}, {"id": "O4", "name": "sandals"}, {"id": "O5", "name": "mat edge"}, {"id": "O6", "name": "training partner"}, {"id": "O7", "name": "wall timer"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Christa Deguchi is kneeling.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Christa Deguchi is positioned at the edge of the judo mat.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Christa Deguchi is tying the belt around her waist.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The sandals rest beside the mat edge.", "depends_on": ["O4", "O5"]}, {"id": "C5", "type": "layout", "text": "The sandals are located in the lower foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The training partner is stretching on the judo mat.", "depends_on": ["O6", "O2"]}, {"id": "C7", "type": "layout", "text": "The training partner is positioned in the midground.", "depends_on": ["O6"]}, {"id": "C8", "type": "layout", "text": "The wall timer hangs in the background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "3-sports_028", "category": "3-sports", "prompt": "Create an image of Barbara Matic stepping forward on a textured judo mat to initiate a throw. She wears a gi secured by a belt around her waist. Her hands grip the thick fabric of a training partner gi. The training partner is positioned off-balance in the foreground. The wide judo mat stretches into the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_028_Barbara_Matic.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_028_Barbara_Matic.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Barbara Matic", "reference_ids": ["R1"]}, {"id": "O2", "name": "judo mat"}, {"id": "O3", "name": "belt"}, {"id": "O4", "name": "training partner"}, {"id": "O5", "name": "training partner gi"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Barbara Matic is wearing a gi.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Barbara Matic is stepping forward.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The belt is tied around Barbara Matic.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "relation", "text": "Barbara Matic is gripping the training partner gi.", "depends_on": ["O1", "O5"]}, {"id": "C5", "type": "layout", "text": "The training partner is positioned in the foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "Barbara Matic and the training partner are standing on the judo mat.", "depends_on": ["O1", "O4", "O2"]}, {"id": "C7", "type": "attribute", "text": "The training partner is leaning off-balance.", "depends_on": ["O4"]}, {"id": "C8", "type": "layout", "text": "The judo mat extends into the background.", "depends_on": ["O2"]}], "num_entities": 5, "num_constraints": 8, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 3}} +{"id": "3-sports_029", "category": "3-sports", "prompt": "Create an image of Tato Grigalashvili setting up a judo throw on a large judo mat. He grips the gi worn by a training partner. The training partner is positioned in the foreground, partly blocking the mat. A belt is visible around Tato Grigalashvili. The mat boundary forms a line across the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_029_Tato_Grigalashvili.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_029_Tato_Grigalashvili.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Tato Grigalashvili", "reference_ids": ["R1"]}, {"id": "O2", "name": "training partner"}, {"id": "O3", "name": "judo mat"}, {"id": "O4", "name": "gi"}, {"id": "O5", "name": "belt"}, {"id": "O6", "name": "mat boundary"}], "constraints": [{"id": "C1", "type": "relation", "text": "Tato Grigalashvili is standing on the judo mat.", "depends_on": ["O1", "O3"]}, {"id": "C2", "type": "relation", "text": "Tato Grigalashvili is wearing the belt.", "depends_on": ["O1", "O5"]}, {"id": "C3", "type": "relation", "text": "The training partner is wearing the gi.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "layout", "text": "The mat boundary is located in the background.", "depends_on": ["O6"]}, {"id": "C5", "type": "attribute", "text": "Tato Grigalashvili is stepping forward.", "depends_on": ["O1"]}, {"id": "C6", "type": "relation", "text": "Tato Grigalashvili is gripping the gi.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "layout", "text": "The training partner is positioned in the foreground.", "depends_on": ["O2"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "3-sports_030", "category": "3-sports", "prompt": "Create an image of Distria Krasniqi practicing a ground-control drill on a judo mat. She kneels beside a training partner lying on the mat while gripping the partner's sleeve. A timer board sits at the mat edge. A folded towel lies in the lower foreground, and a mat boundary stripe runs across the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_030_Distria_Krasniqi.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_030_Distria_Krasniqi.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Distria Krasniqi", "reference_ids": ["R1"]}, {"id": "O2", "name": "training partner"}, {"id": "O3", "name": "judo mat"}, {"id": "O4", "name": "timer board"}, {"id": "O5", "name": "mat edge"}, {"id": "O6", "name": "towel"}, {"id": "O7", "name": "mat boundary stripe"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Distria Krasniqi is kneeling.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Distria Krasniqi is beside the training partner.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The training partner is lying on the judo mat.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "Distria Krasniqi is gripping the training partner's sleeve.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "relation", "text": "The timer board sits at the mat edge.", "depends_on": ["O4", "O5"]}, {"id": "C6", "type": "layout", "text": "The towel lies in the lower foreground.", "depends_on": ["O6"]}, {"id": "C7", "type": "layout", "text": "The mat boundary stripe runs across the background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "3-sports_031", "category": "3-sports", "prompt": "Create an image of Sarah Hildebrandt working a hand-fighting drill on a wrestling mat. She is in a low stance in the foreground, reaching toward a generic training partner. The center circle is painted beneath the two wrestlers. An ankle band wraps around her lower leg. A mat boundary line stretches across the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_031_Sarah_Hildebrandt.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_031_Sarah_Hildebrandt.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sarah Hildebrandt", "reference_ids": ["R1"]}, {"id": "O2", "name": "training partner"}, {"id": "O3", "name": "wrestling mat"}, {"id": "O4", "name": "center circle"}, {"id": "O5", "name": "ankle band"}, {"id": "O6", "name": "mat boundary line"}], "constraints": [{"id": "C1", "type": "layout", "text": "Sarah Hildebrandt is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Sarah Hildebrandt is in a low stance.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Sarah Hildebrandt is reaching toward the training partner.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Sarah Hildebrandt and the training partner are on the wrestling mat.", "depends_on": ["O1", "O2", "O3"]}, {"id": "C5", "type": "relation", "text": "The center circle is painted on the wrestling mat.", "depends_on": ["O4", "O3"]}, {"id": "C6", "type": "relation", "text": "The ankle band is on Sarah Hildebrandt's lower leg.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "layout", "text": "The mat boundary line stretches across the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The center circle is positioned beneath Sarah Hildebrandt and the training partner.", "depends_on": ["O4", "O1", "O2"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "3-sports_032", "category": "3-sports", "prompt": "Create an image of Kyle Dake doing a resistance-band wrestling drill on a wrestling mat. A resistance band is looped around his waist while a generic training partner holds the other end behind him. Kyle Dake reaches toward a center circle marker on the mat. A stopwatch lies near the mat edge in the lower foreground, and a mat boundary stripe runs across the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_032_Kyle_Dake.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_032_Kyle_Dake.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Kyle Dake", "reference_ids": ["R1"]}, {"id": "O2", "name": "wrestling mat"}, {"id": "O3", "name": "resistance band"}, {"id": "O4", "name": "training partner"}, {"id": "O5", "name": "center circle marker"}, {"id": "O6", "name": "stopwatch"}, {"id": "O7", "name": "mat edge"}, {"id": "O8", "name": "mat boundary stripe"}], "constraints": [{"id": "C1", "type": "relation", "text": "Kyle Dake is positioned on the wrestling mat.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "The resistance band is looped around Kyle Dake's waist.", "depends_on": ["O3", "O1"]}, {"id": "C3", "type": "relation", "text": "The training partner holds the other end of the resistance band.", "depends_on": ["O4", "O3"]}, {"id": "C4", "type": "relation", "text": "Kyle Dake is reaching toward the center circle marker.", "depends_on": ["O1", "O5"]}, {"id": "C5", "type": "relation", "text": "The center circle marker is on the wrestling mat.", "depends_on": ["O5", "O2"]}, {"id": "C6", "type": "relation", "text": "The stopwatch lies near the mat edge.", "depends_on": ["O6", "O7"]}, {"id": "C7", "type": "layout", "text": "The stopwatch is located in the lower foreground.", "depends_on": ["O6"]}, {"id": "C8", "type": "layout", "text": "The mat boundary stripe runs across the background.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"layout": 2, "relation": 6}} +{"id": "3-sports_033", "category": "3-sports", "prompt": "Create an image of Helen Maroulis practicing a wrestling takedown setup on a large wrestling mat. She grips a generic training partner while staying in a low, crouched stance. The center circle lies beneath her position. A towel rests on the mat boundary line in the background. The training partner faces Helen Maroulis.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_033_Helen_Maroulis.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_033_Helen_Maroulis.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Helen Maroulis", "reference_ids": ["R1"]}, {"id": "O2", "name": "wrestling mat"}, {"id": "O3", "name": "training partner"}, {"id": "O4", "name": "center circle"}, {"id": "O5", "name": "towel"}, {"id": "O6", "name": "mat boundary line"}], "constraints": [{"id": "C1", "type": "relation", "text": "Helen Maroulis is standing on the wrestling mat.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Helen Maroulis is gripping the training partner.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "attribute", "text": "Helen Maroulis is in a low, crouched stance.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Helen Maroulis is standing over the center circle.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "The towel is resting on the mat boundary line.", "depends_on": ["O5", "O6"]}, {"id": "C6", "type": "layout", "text": "The mat boundary line is located in the background.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The training partner is facing Helen Maroulis.", "depends_on": ["O1", "O3"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "3-sports_034", "category": "3-sports", "prompt": "Create an image of Buse Tosun Cavusoglu hand-fighting with a generic training partner on a wrestling mat. She stands near the center circle in a low stance with bent knees. An ankle band is attached to her lower leg. The training partner extends one arm toward her shoulder. The mat boundary line is positioned in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_034_Buse_Tosun_Cavusoglu.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_034_Buse_Tosun_Cavusoglu.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Buse Tosun Cavusoglu", "reference_ids": ["R1"]}, {"id": "O2", "name": "wrestling mat"}, {"id": "O3", "name": "center circle"}, {"id": "O4", "name": "training partner"}, {"id": "O5", "name": "ankle band"}, {"id": "O6", "name": "mat boundary line"}], "constraints": [{"id": "C1", "type": "relation", "text": "Buse Tosun Cavusoglu is standing on the wrestling mat.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "The training partner is standing on the wrestling mat.", "depends_on": ["O4", "O2"]}, {"id": "C3", "type": "relation", "text": "Buse Tosun Cavusoglu is facing the training partner.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The ankle band is attached to Buse Tosun Cavusoglu's lower leg.", "depends_on": ["O5", "O1"]}, {"id": "C5", "type": "relation", "text": "The center circle is located on the wrestling mat.", "depends_on": ["O3", "O2"]}, {"id": "C6", "type": "layout", "text": "The mat boundary line is positioned in the background.", "depends_on": ["O6"]}, {"id": "C7", "type": "attribute", "text": "Buse Tosun Cavusoglu is in a low stance with bent knees.", "depends_on": ["O1"]}, {"id": "C8", "type": "attribute", "text": "The training partner has one arm extended.", "depends_on": ["O4"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "3-sports_035", "category": "3-sports", "prompt": "Create an image of Vinesh Phogat practicing a collar-tie wrestling drill on a wrestling mat. She stays in a low stance while gripping a generic training partner. A coach chair stands near the mat edge in the foreground, with a stopwatch placed on the chair. A towel lies on the mat beside the chair, and a wall timer hangs in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_035_Vinesh_Phogat.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_035_Vinesh_Phogat.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Vinesh Phogat", "reference_ids": ["R1"]}, {"id": "O2", "name": "wrestling mat"}, {"id": "O3", "name": "training partner"}, {"id": "O4", "name": "coach chair"}, {"id": "O5", "name": "stopwatch"}, {"id": "O6", "name": "towel"}, {"id": "O7", "name": "wall timer"}], "constraints": [{"type": "attribute", "text": "Vinesh Phogat is in a low stance.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "Vinesh Phogat is on the wrestling mat.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "Vinesh Phogat is gripping the training partner.", "depends_on": ["O1", "O3"], "id": "C3"}, {"type": "relation", "text": "The training partner is on the wrestling mat.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The coach chair stands near the mat edge in the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The stopwatch is placed on the coach chair.", "depends_on": ["O5", "O4"], "id": "C6"}, {"type": "relation", "text": "The towel lies on the wrestling mat beside the coach chair.", "depends_on": ["O6", "O2", "O4"], "id": "C7"}, {"type": "layout", "text": "The wall timer hangs in the background.", "depends_on": ["O7"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "3-sports_036", "category": "3-sports", "prompt": "Create an image of Ricarda Funk in a slalom kayak on a turbulent water channel. She leans to one side while gripping a paddle, with the paddle touching the water. Water spray splashes around the kayak. Two gate poles hang above the water channel in the midground. The athlete and kayak occupy the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_036_Ricarda_Funk.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_036_Ricarda_Funk.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ricarda Funk", "reference_ids": ["R1"]}, {"id": "O2", "name": "slalom kayak"}, {"id": "O3", "name": "paddle"}, {"id": "O4", "name": "gate poles"}, {"id": "O5", "name": "water channel"}, {"id": "O6", "name": "water spray"}], "constraints": [{"id": "C1", "type": "layout", "text": "Ricarda Funk is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Ricarda Funk is seated inside the slalom kayak.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Ricarda Funk is gripping the paddle.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The paddle is touching the water channel.", "depends_on": ["O3", "O5"]}, {"id": "C5", "type": "relation", "text": "The water spray is splashing around the slalom kayak.", "depends_on": ["O6", "O2"]}, {"id": "C6", "type": "attribute", "text": "Exactly two gate poles hang above the water channel.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "layout", "text": "The gate poles are suspended in the midground.", "depends_on": ["O4"]}, {"id": "C8", "type": "relation", "text": "The gate poles are positioned above the water channel.", "depends_on": ["O4", "O5"]}, {"id": "C9", "type": "attribute", "text": "Ricarda Funk is leaning to one side.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "3-sports_037", "category": "3-sports", "prompt": "Create an image of Joe Clarke driving a slalom canoe through a staggered gate section on a churning water channel. He grips a paddle with the blade planted in the water. A red gate pole hangs to the left of the canoe, and a green gate pole hangs to the right. Water spray rises beside the bow, while a numbered course sign is mounted on a concrete channel wall in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_037_Joe_Clarke.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_037_Joe_Clarke.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Joe Clarke", "reference_ids": ["R1"]}, {"id": "O2", "name": "slalom canoe"}, {"id": "O3", "name": "paddle"}, {"id": "O4", "name": "water channel"}, {"id": "O5", "name": "red gate pole"}, {"id": "O6", "name": "green gate pole"}, {"id": "O7", "name": "water spray"}, {"id": "O8", "name": "course sign"}, {"id": "O9", "name": "concrete channel wall"}], "constraints": [{"id": "C1", "type": "relation", "text": "Joe Clarke is inside the slalom canoe.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Joe Clarke is gripping the paddle.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The paddle blade is planted in the water channel.", "depends_on": ["O3", "O4"]}, {"id": "C4", "type": "relation", "text": "The red gate pole hangs to the left of the slalom canoe.", "depends_on": ["O5", "O2"]}, {"id": "C5", "type": "relation", "text": "The green gate pole hangs to the right of the slalom canoe.", "depends_on": ["O6", "O2"]}, {"id": "C6", "type": "relation", "text": "Water spray rises beside the slalom canoe.", "depends_on": ["O7", "O2"]}, {"id": "C7", "type": "relation", "text": "The course sign is mounted on the concrete channel wall.", "depends_on": ["O8", "O9"]}, {"id": "C8", "type": "layout", "text": "The concrete channel wall is located in the background.", "depends_on": ["O9"]}], "num_entities": 9, "num_constraints": 8, "constraint_type_counts": {"layout": 1, "relation": 7}} +{"id": "3-sports_038", "category": "3-sports", "prompt": "Create an image of Mallory Franklin seated in a slalom canoe beside a concrete bank on an artificial water channel. She grips a paddle while the canoe points toward a hanging gate number panel. A pair of gate poles hangs over the channel near the panel. A floating marker sits beside the canoe, and the concrete bank runs along the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_038_Mallory_Franklin.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_038_Mallory_Franklin.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mallory Franklin", "reference_ids": ["R1"]}, {"id": "O2", "name": "slalom canoe"}, {"id": "O3", "name": "paddle"}, {"id": "O4", "name": "water channel"}, {"id": "O5", "name": "gate number panel"}, {"id": "O6", "name": "gate poles"}, {"id": "O7", "name": "floating marker"}, {"id": "O8", "name": "concrete bank"}], "constraints": [{"type": "relation", "text": "Mallory Franklin is seated in the slalom canoe.", "depends_on": ["O1", "O2"], "id": "C1"}, {"type": "relation", "text": "Mallory Franklin is gripping the paddle.", "depends_on": ["O1", "O3"], "id": "C2"}, {"type": "relation", "text": "The slalom canoe is on the water channel.", "depends_on": ["O2", "O4"], "id": "C3"}, {"type": "relation", "text": "The slalom canoe points toward the gate number panel.", "depends_on": ["O2", "O5"], "id": "C4"}, {"type": "attribute", "text": "Exactly two gate poles hang over the water channel near the gate number panel.", "depends_on": ["O6", "O4", "O5"], "id": "C5"}, {"type": "relation", "text": "The gate poles hang over the water channel near the gate number panel.", "depends_on": ["O6", "O4", "O5"], "id": "C6"}, {"type": "relation", "text": "The floating marker sits beside the slalom canoe.", "depends_on": ["O7", "O2"], "id": "C7"}, {"type": "layout", "text": "The concrete bank runs along the background.", "depends_on": ["O8"], "id": "C8"}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "3-sports_039", "category": "3-sports", "prompt": "Create an image of Nevin Harrison paddling a sprint canoe on a flat water surface. She kneels in the sprint canoe and drives her paddle into the water. Lane markers stretch out in parallel lines behind the boat. A single floating buoy rests near the edge of the frame in the foreground. Small water splashes trail off the paddle blade as it breaks the surface.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_039_Nevin_Harrison.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_039_Nevin_Harrison.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Nevin Harrison", "reference_ids": ["R1"]}, {"id": "O2", "name": "sprint canoe"}, {"id": "O3", "name": "paddle"}, {"id": "O4", "name": "water surface"}, {"id": "O5", "name": "lane markers"}, {"id": "O6", "name": "buoy"}, {"id": "O7", "name": "water splashes"}], "constraints": [{"id": "C1", "type": "relation", "text": "Nevin Harrison is kneeling in the sprint canoe.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Nevin Harrison is holding the paddle.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The paddle is touching the water surface.", "depends_on": ["O3", "O4"]}, {"id": "C4", "type": "relation", "text": "The sprint canoe is resting on the water surface.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "layout", "text": "The buoy is positioned in the foreground.", "depends_on": ["O6"]}, {"id": "C6", "type": "relation", "text": "The water splashes are trailing off the paddle.", "depends_on": ["O7", "O3"]}, {"id": "C7", "type": "attribute", "text": "Nevin Harrison is captured mid-stroke.", "depends_on": ["O1"]}, {"id": "C8", "type": "relation", "text": "The lane markers stretch behind the sprint canoe.", "depends_on": ["O5", "O2"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "3-sports_040", "category": "3-sports", "prompt": "Create an image of Fernando Pimenta paddling a sprint canoe on a flat water surface. He sits in the canoe, leaning forward with his arms extended to drive the boat. One paddle blade slices into the water surface and creates a splash. A line of floating lane markers stretches across the background. The sprint canoe sits in the foreground with lane markers behind it.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_040_Fernando_Pimenta.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_040_Fernando_Pimenta.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Fernando Pimenta", "reference_ids": ["R1"]}, {"id": "O2", "name": "sprint canoe"}, {"id": "O3", "name": "paddle"}, {"id": "O4", "name": "water surface"}, {"id": "O5", "name": "splash"}, {"id": "O6", "name": "lane markers"}], "constraints": [{"id": "C1", "type": "relation", "text": "Fernando Pimenta is seated in the sprint canoe.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Fernando Pimenta is holding the paddle.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The sprint canoe is on the water surface.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "relation", "text": "The paddle is touching the water surface.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "relation", "text": "The splash is located at the paddle.", "depends_on": ["O5", "O3"]}, {"id": "C6", "type": "relation", "text": "The lane markers are floating on the water surface.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "layout", "text": "The lane markers are positioned in the background.", "depends_on": ["O6"]}, {"id": "C8", "type": "attribute", "text": "Fernando Pimenta is leaning forward.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "3-sports_041", "category": "3-sports", "prompt": "Create an image of Oliver Zeidler in a narrow rowing shell on calm water. He grips a pair of oars during a rowing stroke. The paddle blades touch the water surface. A line of lane buoys stretches into the background. The oars extend outward from both sides of the shell.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_041_Oliver_Zeidler.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_041_Oliver_Zeidler.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Oliver Zeidler", "reference_ids": ["R1"]}, {"id": "O2", "name": "rowing shell"}, {"id": "O3", "name": "water surface"}, {"id": "O4", "name": "oars"}, {"id": "O5", "name": "lane buoys"}], "constraints": [{"id": "C1", "type": "relation", "text": "Oliver Zeidler is seated inside the rowing shell.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Oliver Zeidler is gripping the oars with his hands.", "depends_on": ["O1", "O4"]}, {"id": "C3", "type": "relation", "text": "The rowing shell is resting on the water surface.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The oars are touching the water surface.", "depends_on": ["O4", "O3"]}, {"id": "C5", "type": "layout", "text": "The lane buoys are positioned in the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "attribute", "text": "Oliver Zeidler grips exactly two oars.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "The oars extend outward from the sides of the rowing shell.", "depends_on": ["O4", "O2"]}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "3-sports_042", "category": "3-sports", "prompt": "Create an image of Karolien Florijn training on an indoor rowing ergometer. She sits on the sliding seat while gripping the handle with both hands. A digital monitor is mounted in front of the ergometer. A water bottle stands beside the ergometer rail in the lower foreground, and a wall mirror reflects the ergometer frame in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_042_Karolien_Florijn.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_042_Karolien_Florijn.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Karolien Florijn", "reference_ids": ["R1"]}, {"id": "O2", "name": "rowing ergometer"}, {"id": "O3", "name": "sliding seat"}, {"id": "O4", "name": "handle"}, {"id": "O5", "name": "digital monitor"}, {"id": "O6", "name": "water bottle"}, {"id": "O7", "name": "ergometer rail"}, {"id": "O8", "name": "wall mirror"}, {"id": "O9", "name": "ergometer frame"}], "constraints": [{"id": "C1", "type": "relation", "text": "Karolien Florijn is seated on the sliding seat.", "depends_on": ["O1", "O3"]}, {"id": "C2", "type": "relation", "text": "The sliding seat is part of the rowing ergometer.", "depends_on": ["O3", "O2"]}, {"id": "C3", "type": "relation", "text": "Karolien Florijn is gripping the handle with both hands.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The digital monitor is mounted in front of the rowing ergometer.", "depends_on": ["O5", "O2"]}, {"id": "C5", "type": "relation", "text": "The water bottle stands beside the ergometer rail.", "depends_on": ["O6", "O7"]}, {"id": "C6", "type": "layout", "text": "The water bottle is located in the lower foreground.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The wall mirror reflects the ergometer frame.", "depends_on": ["O8", "O9"]}, {"id": "C8", "type": "layout", "text": "The wall mirror is positioned in the background.", "depends_on": ["O8"]}], "num_entities": 9, "num_constraints": 8, "constraint_type_counts": {"layout": 2, "relation": 6}} +{"id": "3-sports_043", "category": "3-sports", "prompt": "Create an image of Emma Twigg in a side-on rowing shell on a flat water surface. She grips a pair of oars extending from the sides of the boat. The blades of the oars hover above the water surface. A line of lane buoys sits in the background. Emma Twigg faces forward inside the shell.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_043_Emma_Twigg.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_043_Emma_Twigg.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Emma Twigg", "reference_ids": ["R1"]}, {"id": "O2", "name": "rowing shell"}, {"id": "O3", "name": "oars"}, {"id": "O4", "name": "water surface"}, {"id": "O5", "name": "lane buoys"}], "constraints": [{"id": "C1", "type": "relation", "text": "Emma Twigg is seated inside the rowing shell.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Emma Twigg is gripping the oars.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The oars extend outward from the rowing shell.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The rowing shell is on the water surface.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "layout", "text": "The lane buoys are located in the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The blades of the oars are above the water surface.", "depends_on": ["O3", "O4"]}, {"id": "C7", "type": "attribute", "text": "Emma Twigg grips exactly two oars.", "depends_on": ["O1", "O3"]}, {"id": "C8", "type": "attribute", "text": "Emma Twigg is facing forward.", "depends_on": ["O1"]}], "num_entities": 5, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "3-sports_044", "category": "3-sports", "prompt": "Create an image of Sverri Nielsen paused beside a floating dock with a rowing shell on calm water. He sits on the rowing seat inside the shell while two oars lie across the outriggers. One oar blade rests on the floating dock. A coiled rope lies on the dock in the lower foreground, and the water surface fills the background around the shell.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_044_Sverri_Nielsen.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_044_Sverri_Nielsen.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sverri Nielsen", "reference_ids": ["R1"]}, {"id": "O2", "name": "rowing shell"}, {"id": "O3", "name": "oars"}, {"id": "O4", "name": "floating dock"}, {"id": "O5", "name": "rowing seat"}, {"id": "O6", "name": "coiled rope"}, {"id": "O7", "name": "water surface"}], "constraints": [{"id": "C1", "type": "relation", "text": "Sverri Nielsen is seated on the rowing seat.", "depends_on": ["O1", "O5"]}, {"id": "C2", "type": "relation", "text": "The rowing seat is inside the rowing shell.", "depends_on": ["O5", "O2"]}, {"id": "C3", "type": "relation", "text": "The oars lie across the rowing shell.", "depends_on": ["O3", "O2"]}, {"id": "C4", "type": "relation", "text": "One oar rests on the floating dock.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "relation", "text": "The floating dock is beside the rowing shell.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "relation", "text": "The coiled rope lies on the floating dock.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "layout", "text": "The coiled rope is located in the lower foreground.", "depends_on": ["O6"]}, {"id": "C8", "type": "relation", "text": "The rowing shell is on the water surface.", "depends_on": ["O2", "O7"]}, {"id": "C9", "type": "attribute", "text": "Exactly two oars lie across the rowing shell.", "depends_on": ["O3", "O2"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 7}} +{"id": "3-sports_045", "category": "3-sports", "prompt": "Create an image of Grace Prendergast seated on a rowing seat inside a narrow rowing shell. She grips a pair of oars with her arms extended forward. The blades of the oars touch the water surface. A lane buoy floats in the background. The rowing shell rests on the calm water surface.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_045_Grace_Prendergast.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_045_Grace_Prendergast.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Grace Prendergast", "reference_ids": ["R1"]}, {"id": "O2", "name": "rowing shell"}, {"id": "O3", "name": "oars"}, {"id": "O4", "name": "water surface"}, {"id": "O5", "name": "lane buoy"}, {"id": "O6", "name": "rowing seat"}], "constraints": [{"id": "C1", "type": "layout", "text": "Grace Prendergast is positioned in the center foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Grace Prendergast is seated on the rowing seat.", "depends_on": ["O1", "O6"]}, {"id": "C3", "type": "relation", "text": "Grace Prendergast is gripping the oars with her hands.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "Grace Prendergast has her arms extended forward.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "The rowing seat is located inside the rowing shell.", "depends_on": ["O6", "O2"]}, {"id": "C6", "type": "relation", "text": "The rowing shell is resting on the water surface.", "depends_on": ["O2", "O4"]}, {"id": "C7", "type": "relation", "text": "The blades of the oars are touching the water surface.", "depends_on": ["O3", "O4"]}, {"id": "C8", "type": "layout", "text": "The lane buoy is located in the background.", "depends_on": ["O5"]}, {"id": "C9", "type": "relation", "text": "The lane buoy is floating on the water surface.", "depends_on": ["O5", "O4"]}, {"id": "C10", "type": "attribute", "text": "Grace Prendergast grips exactly two oars.", "depends_on": ["O1", "O3"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 6}} +{"id": "3-sports_046", "category": "3-sports", "prompt": "Create an image of Henny Reistad jumping just outside the goal area line during a handball play. She holds a handball raised high in her hand, preparing to throw. A generic defender stands on the court floor in front of her with raised arms. The goal net is in the background behind the defender. The polished court floor extends across the foreground beneath the play.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_046_Henny_Reistad.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_046_Henny_Reistad.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Henny Reistad", "reference_ids": ["R1"]}, {"id": "O2", "name": "handball"}, {"id": "O3", "name": "goal area line"}, {"id": "O4", "name": "generic defender"}, {"id": "O5", "name": "goal net"}, {"id": "O6", "name": "court floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "Henny Reistad is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Henny Reistad is jumping mid-air.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Henny Reistad is holding the handball in her hand.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Henny Reistad is positioned outside the goal area line.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The generic defender is standing on the court floor.", "depends_on": ["O4", "O6"]}, {"id": "C6", "type": "relation", "text": "The generic defender is positioned between Henny Reistad and the goal net.", "depends_on": ["O1", "O4", "O5"]}, {"id": "C7", "type": "layout", "text": "The goal net is located in the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "attribute", "text": "The generic defender has raised arms.", "depends_on": ["O4"]}, {"id": "C9", "type": "relation", "text": "The goal area line is marked on the court floor.", "depends_on": ["O3", "O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "3-sports_047", "category": "3-sports", "prompt": "Create an image of Mathias Gidsel planting one foot near the sideline during a handball passing play. He holds the handball out toward a teammate silhouette on the right side of the court floor. A generic defender stands between him and the teammate with one arm raised. The sideline runs along the lower foreground, and the goal net is visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_047_Mathias_Gidsel.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_047_Mathias_Gidsel.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mathias Gidsel", "reference_ids": ["R1"]}, {"id": "O2", "name": "handball"}, {"id": "O3", "name": "sideline"}, {"id": "O4", "name": "teammate silhouette"}, {"id": "O5", "name": "generic defender"}, {"id": "O6", "name": "court floor"}, {"id": "O7", "name": "goal net"}], "constraints": [{"id": "C1", "type": "relation", "text": "Mathias Gidsel is holding the handball.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Mathias Gidsel is planting one foot near the sideline.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Mathias Gidsel holds the handball toward the teammate silhouette.", "depends_on": ["O1", "O2", "O4"]}, {"id": "C4", "type": "relation", "text": "The generic defender stands between Mathias Gidsel and the teammate silhouette.", "depends_on": ["O5", "O1", "O4"]}, {"id": "C5", "type": "attribute", "text": "The generic defender has one arm raised.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The sideline is marked on the court floor.", "depends_on": ["O3", "O6"]}, {"id": "C7", "type": "layout", "text": "The sideline runs along the lower foreground.", "depends_on": ["O3"]}, {"id": "C8", "type": "layout", "text": "The goal net is visible in the background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "3-sports_048", "category": "3-sports", "prompt": "Create an image of Sandra Toft standing on the court floor just inside the goal area line during a handball sequence. She raises both arms while facing forward to block an incoming shot. A generic attacker is suspended in a jump in the midground while gripping a handball. Behind Sandra Toft, a large goal net spans the background. The polished court floor extends across the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_048_Sandra_Toft.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_048_Sandra_Toft.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sandra Toft", "reference_ids": ["R1"]}, {"id": "O2", "name": "court floor"}, {"id": "O3", "name": "goal area line"}, {"id": "O4", "name": "generic attacker"}, {"id": "O5", "name": "handball"}, {"id": "O6", "name": "goal net"}], "constraints": [{"id": "C1", "type": "layout", "text": "Sandra Toft is positioned in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Sandra Toft has her arms raised high.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Sandra Toft is standing on the court floor.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Sandra Toft is positioned near the goal area line.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The generic attacker is holding the handball.", "depends_on": ["O4", "O5"]}, {"id": "C6", "type": "layout", "text": "The goal net is located in the background.", "depends_on": ["O6"]}, {"id": "C7", "type": "relation", "text": "The generic attacker is facing Sandra Toft.", "depends_on": ["O4", "O1"]}, {"id": "C8", "type": "relation", "text": "The goal net is positioned behind Sandra Toft.", "depends_on": ["O6", "O1"]}, {"id": "C9", "type": "attribute", "text": "The generic attacker is suspended in the air.", "depends_on": ["O4"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "3-sports_049", "category": "3-sports", "prompt": "Create an image of Bruce Mouat sliding in a low lunge on a curling ice sheet. He touches a curling stone with one hand while holding a curling broom in the other. A hog line is marked on the ice sheet in front of him. Painted house circles are positioned in the background. A teammate silhouette stands near the house circles.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_049_Bruce_Mouat.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_049_Bruce_Mouat.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Bruce Mouat", "reference_ids": ["R1"]}, {"id": "O2", "name": "curling stone"}, {"id": "O3", "name": "curling broom"}, {"id": "O4", "name": "ice sheet"}, {"id": "O5", "name": "house circles"}, {"id": "O6", "name": "hog line"}, {"id": "O7", "name": "teammate silhouette"}], "constraints": [{"id": "C1", "type": "relation", "text": "Bruce Mouat is touching the curling stone.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Bruce Mouat is holding the curling broom.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "Bruce Mouat is sliding on the ice sheet.", "depends_on": ["O1", "O4"]}, {"id": "C4", "type": "relation", "text": "The curling stone is on the ice sheet.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "layout", "text": "The house circles are positioned in the background.", "depends_on": ["O5"]}, {"id": "C6", "type": "relation", "text": "The hog line is located on the ice sheet.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "relation", "text": "The teammate silhouette is standing near the house circles.", "depends_on": ["O7", "O5"]}, {"id": "C8", "type": "attribute", "text": "Bruce Mouat is in a low lunge position.", "depends_on": ["O1"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "3-sports_050", "category": "3-sports", "prompt": "Create an image of Silvana Tirinzoni standing upright on a curling ice sheet while directing the path of a curling stone. She points a curling broom toward the stone ahead of her. The curling stone is between the hog line and the house circles. A teammate silhouette sweeps in front of the stone with a teammate broom, while the house circles fill the background and the hog line crosses the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/3-sports/3-sports_050_Silvana_Tirinzoni.jpg"}], "reference_image_paths": ["reference_images/3-sports/3-sports_050_Silvana_Tirinzoni.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Silvana Tirinzoni", "reference_ids": ["R1"]}, {"id": "O2", "name": "curling stone"}, {"id": "O3", "name": "curling broom"}, {"id": "O4", "name": "ice sheet"}, {"id": "O5", "name": "house circles"}, {"id": "O6", "name": "hog line"}, {"id": "O7", "name": "teammate silhouette"}, {"id": "O8", "name": "teammate broom"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Silvana Tirinzoni is standing upright.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Silvana Tirinzoni points the curling broom toward the curling stone.", "depends_on": ["O1", "O3", "O2"]}, {"id": "C3", "type": "relation", "text": "The curling stone is on the ice sheet.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "relation", "text": "The curling stone is between the hog line and the house circles.", "depends_on": ["O2", "O6", "O5"]}, {"id": "C5", "type": "relation", "text": "The teammate silhouette is sweeping in front of the curling stone.", "depends_on": ["O7", "O2"]}, {"id": "C6", "type": "relation", "text": "The teammate silhouette is holding the teammate broom.", "depends_on": ["O7", "O8"]}, {"id": "C7", "type": "layout", "text": "The house circles fill the background.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The hog line crosses the lower foreground.", "depends_on": ["O6"]}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "4-entertainment_001", "category": "4-entertainment", "prompt": "Create an image of actor Tom Blyth standing upright in the foreground on a premiere red carpet. He is facing the camera line and wears a dark suit. Directly behind him is a step-and-repeat backdrop. At least three photographers holding cameras are visible near the edge of the scene.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_001_Tom_Blyth.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_001_Tom_Blyth.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Tom Blyth", "reference_ids": ["R1"]}, {"id": "O2", "name": "red carpet"}, {"id": "O3", "name": "photographers"}, {"id": "O4", "name": "step-and-repeat backdrop"}, {"id": "O5", "name": "cameras"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Tom Blyth is standing upright.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Tom Blyth is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Tom Blyth is on the red carpet.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Tom Blyth is oriented toward the cameras.", "depends_on": ["O1", "O5"]}, {"id": "C5", "type": "attribute", "text": "Tom Blyth wears a dark suit.", "depends_on": ["O1"]}, {"id": "C6", "type": "relation", "text": "The step-and-repeat backdrop is directly behind Tom Blyth.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "layout", "text": "The photographers are visible near the edge of the scene.", "depends_on": ["O3"]}, {"id": "C8", "type": "attribute", "text": "At least three photographers are present.", "depends_on": ["O3"]}, {"id": "C9", "type": "relation", "text": "The photographers hold cameras.", "depends_on": ["O3", "O5"]}], "num_entities": 5, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 4}} +{"id": "4-entertainment_002", "category": "4-entertainment", "prompt": "Create an image of singer PinkPantheress during a concert soundcheck on a small stage. She stands in the foreground singing into a handheld microphone held in one hand. A microphone stand is positioned to her left. A vertical LED screen is directly behind her, a setlist sheet is taped to the stage floor near her feet, and a wedge monitor sits in the lower background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_002_PinkPantheress.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_002_PinkPantheress.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "PinkPantheress", "reference_ids": ["R1"]}, {"id": "O2", "name": "small stage"}, {"id": "O3", "name": "handheld microphone"}, {"id": "O4", "name": "microphone stand"}, {"id": "O5", "name": "vertical LED screen"}, {"id": "O6", "name": "setlist sheet"}, {"id": "O7", "name": "wedge monitor"}], "constraints": [{"id": "C1", "type": "layout", "text": "PinkPantheress is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "PinkPantheress is on the small stage.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "PinkPantheress is singing into the handheld microphone.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "PinkPantheress is holding the handheld microphone in one hand.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The microphone stand is positioned to the left of PinkPantheress.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "attribute", "text": "The vertical LED screen is vertical.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The vertical LED screen is directly behind PinkPantheress.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "relation", "text": "The setlist sheet is taped to the small stage floor near PinkPantheress.", "depends_on": ["O6", "O2", "O1"]}, {"id": "C9", "type": "layout", "text": "The wedge monitor sits in the lower background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "4-entertainment_003", "category": "4-entertainment", "prompt": "Create an image of Xyla Foxlin standing in the foreground at a workbench. She is assembling a small mechanical device with both hands. On the workbench there are scattered tools, small parts, a soldering iron, and a partially completed project beside the tools. Behind her are shelves filled with equipment and storage bins.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_003_Xyla_Foxlin.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_003_Xyla_Foxlin.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Xyla Foxlin", "reference_ids": ["R1"]}, {"id": "O2", "name": "workbench"}, {"id": "O3", "name": "mechanical device"}, {"id": "O4", "name": "tools"}, {"id": "O5", "name": "parts"}, {"id": "O6", "name": "soldering iron"}, {"id": "O7", "name": "partially completed project"}, {"id": "O8", "name": "shelves"}, {"id": "O9", "name": "equipment"}, {"id": "O10", "name": "storage bins"}], "constraints": [{"id": "C1", "type": "layout", "text": "Xyla Foxlin is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Xyla Foxlin is at the workbench.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Xyla Foxlin is assembling the mechanical device with both hands.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The tools are on the workbench.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "relation", "text": "The parts are on the workbench.", "depends_on": ["O5", "O2"]}, {"id": "C6", "type": "relation", "text": "The soldering iron is on the workbench.", "depends_on": ["O6", "O2"]}, {"id": "C7", "type": "relation", "text": "The partially completed project is on the workbench.", "depends_on": ["O7", "O2"]}, {"id": "C8", "type": "attribute", "text": "The tools are scattered.", "depends_on": ["O4"]}, {"id": "C9", "type": "relation", "text": "The partially completed project is beside the tools.", "depends_on": ["O4", "O7"]}, {"id": "C10", "type": "relation", "text": "The shelves are behind Xyla Foxlin.", "depends_on": ["O1", "O8"]}, {"id": "C11", "type": "relation", "text": "The shelves contain equipment.", "depends_on": ["O8", "O9"]}, {"id": "C12", "type": "relation", "text": "The shelves contain storage bins.", "depends_on": ["O8", "O10"]}], "num_entities": 10, "num_constraints": 12, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 10}} +{"id": "4-entertainment_004", "category": "4-entertainment", "prompt": "Create an image of Joe Mele standing in the foreground on a city sidewalk. He is wearing casual clothes, holding a takeaway coffee cup in one hand, and gesturing with the other. A compact camera set on a waist-high stand is positioned to one side of him. Behind him are storefronts and a row of buildings.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_004_Joe_Mele.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_004_Joe_Mele.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Joe Mele", "reference_ids": ["R1"]}, {"id": "O2", "name": "city sidewalk"}, {"id": "O3", "name": "takeaway coffee cup"}, {"id": "O4", "name": "compact camera"}, {"id": "O5", "name": "stand"}, {"id": "O6", "name": "storefronts"}, {"id": "O7", "name": "row of buildings"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Joe Mele is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Joe Mele is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Joe Mele is on the city sidewalk.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "Joe Mele is wearing casual clothes.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "Joe Mele is holding the takeaway coffee cup in one hand.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "attribute", "text": "Joe Mele is gesturing with his other hand.", "depends_on": ["O1"]}, {"id": "C7", "type": "relation", "text": "The compact camera is set on the stand.", "depends_on": ["O4", "O5"]}, {"id": "C8", "type": "attribute", "text": "The stand is waist-high.", "depends_on": ["O5"]}, {"id": "C9", "type": "relation", "text": "The compact camera is positioned to one side of Joe Mele.", "depends_on": ["O1", "O4"]}, {"id": "C10", "type": "relation", "text": "The stand is positioned to one side of Joe Mele.", "depends_on": ["O1", "O5"]}, {"id": "C11", "type": "relation", "text": "The storefronts are behind Joe Mele.", "depends_on": ["O1", "O6"]}, {"id": "C12", "type": "relation", "text": "The row of buildings is behind Joe Mele.", "depends_on": ["O1", "O7"]}], "num_entities": 7, "num_constraints": 12, "constraint_type_counts": {"attribute": 4, "layout": 1, "relation": 7}} +{"id": "4-entertainment_005", "category": "4-entertainment", "prompt": "Create an image of Monica Ravichandran centered in the foreground during a creator conference demo. She stands on a stage holding a wireless microphone in one hand and speaking with her mouth open. A presentation screen with a slide layout is directly behind her. A confidence monitor sits on the floor to one side of her, and a small clicker rests on a podium beside her.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_005_Monica_Ravichandran.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_005_Monica_Ravichandran.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Monica Ravichandran", "reference_ids": ["R1"]}, {"id": "O2", "name": "stage"}, {"id": "O3", "name": "wireless microphone"}, {"id": "O4", "name": "presentation screen"}, {"id": "O5", "name": "confidence monitor"}, {"id": "O6", "name": "clicker"}, {"id": "O7", "name": "podium"}], "constraints": [{"id": "C1", "type": "layout", "text": "Monica Ravichandran is centered in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Monica Ravichandran is standing on the stage.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Monica Ravichandran is holding the wireless microphone in one hand.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "Monica Ravichandran is speaking with her mouth open.", "depends_on": ["O1"]}, {"id": "C5", "type": "attribute", "text": "The presentation screen displays a slide layout.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The presentation screen is directly behind Monica Ravichandran.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "The confidence monitor sits on the floor to one side of Monica Ravichandran.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "relation", "text": "The clicker rests on the podium.", "depends_on": ["O6", "O7"]}, {"id": "C9", "type": "relation", "text": "The podium is beside Monica Ravichandran.", "depends_on": ["O7", "O1"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 6}} +{"id": "4-entertainment_006", "category": "4-entertainment", "prompt": "Create an image of Aaron Parnas seated at a desk in the foreground and facing directly toward the camera. A desk microphone is placed in front of him, and an open laptop is beside it with one of his hands resting on the keyboard. A wall-mounted monitor with visible news graphics is behind him.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_006_Aaron_Parnas.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_006_Aaron_Parnas.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Aaron Parnas", "reference_ids": ["R1"]}, {"id": "O2", "name": "desk"}, {"id": "O3", "name": "desk microphone"}, {"id": "O4", "name": "laptop"}, {"id": "O5", "name": "keyboard"}, {"id": "O6", "name": "monitor"}, {"id": "O7", "name": "news graphics"}], "constraints": [{"id": "C1", "type": "relation", "text": "Aaron Parnas is seated at the desk.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "layout", "text": "Aaron Parnas is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "attribute", "text": "Aaron Parnas is facing directly toward the camera.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "The desk microphone is placed in front of Aaron Parnas.", "depends_on": ["O3", "O1"]}, {"id": "C5", "type": "attribute", "text": "The laptop is open.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The laptop is beside the desk microphone.", "depends_on": ["O4", "O3"]}, {"id": "C7", "type": "relation", "text": "One of Aaron Parnas's hands is resting on the keyboard.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "attribute", "text": "The monitor is wall-mounted.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The monitor is behind Aaron Parnas.", "depends_on": ["O6", "O1"]}, {"id": "C10", "type": "relation", "text": "The news graphics are displayed on the monitor.", "depends_on": ["O7", "O6"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 6}} +{"id": "4-entertainment_007", "category": "4-entertainment", "prompt": "Create an image of Achieng Agutu at a fashion event check-in area. She stands in the midground beside a check-in table, with one hand resting near a tablet on the tabletop. A branded backdrop is behind her, and two photographers with cameras are positioned beyond a rope barrier. A floor marker is visible in the lower foreground to anchor the event layout.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_007_Achieng_Agutu.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_007_Achieng_Agutu.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Achieng Agutu", "reference_ids": ["R1"]}, {"id": "O2", "name": "check-in table"}, {"id": "O3", "name": "tablet"}, {"id": "O4", "name": "backdrop"}, {"id": "O5", "name": "photographers"}, {"id": "O6", "name": "cameras"}, {"id": "O7", "name": "rope barrier"}, {"id": "O8", "name": "floor marker"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Achieng Agutu is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Achieng Agutu is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The check-in table is beside Achieng Agutu.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "One hand of Achieng Agutu is near the tablet.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The tablet rests on the check-in table.", "depends_on": ["O3", "O2"]}, {"id": "C6", "type": "relation", "text": "The backdrop is behind Achieng Agutu.", "depends_on": ["O4", "O1"]}, {"id": "C7", "type": "attribute", "text": "At least two photographers are present.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The photographers hold cameras.", "depends_on": ["O5", "O6"]}, {"id": "C9", "type": "relation", "text": "The rope barrier is between Achieng Agutu and the photographers.", "depends_on": ["O7", "O1", "O5"]}, {"id": "C10", "type": "layout", "text": "The floor marker is in the lower foreground.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 6}} +{"id": "4-entertainment_008", "category": "4-entertainment", "prompt": "Create an image of Sabrina Brier standing in the foreground inside an apartment hallway. She is looking at a phone mounted on a tripod directly in front of her and raising one hand in an expressive speaking gesture. Behind her are a doorway, a wall mirror, and a small console table.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_008_Sabrina_Brier.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_008_Sabrina_Brier.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sabrina Brier", "reference_ids": ["R1"]}, {"id": "O2", "name": "phone"}, {"id": "O3", "name": "tripod"}, {"id": "O4", "name": "doorway"}, {"id": "O5", "name": "wall mirror"}, {"id": "O6", "name": "console table"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Sabrina Brier is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Sabrina Brier is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Sabrina Brier is looking at the phone.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The phone is mounted on the tripod.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "relation", "text": "The phone is directly in front of Sabrina Brier.", "depends_on": ["O1", "O2"]}, {"id": "C6", "type": "relation", "text": "The tripod is directly in front of Sabrina Brier.", "depends_on": ["O1", "O3"]}, {"id": "C7", "type": "attribute", "text": "Sabrina Brier is raising one hand in an expressive speaking gesture.", "depends_on": ["O1"]}, {"id": "C8", "type": "relation", "text": "The doorway is behind Sabrina Brier.", "depends_on": ["O1", "O4"]}, {"id": "C9", "type": "relation", "text": "The wall mirror is behind Sabrina Brier.", "depends_on": ["O1", "O5"]}, {"id": "C10", "type": "relation", "text": "The console table is behind Sabrina Brier.", "depends_on": ["O1", "O6"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 7}} +{"id": "4-entertainment_009", "category": "4-entertainment", "prompt": "Create an image of Quenlin Blackwell seated in the foreground on a bed. She is looking directly at the camera. A silver laptop is open on the bed in front of her. Behind her are a bedside lamp and framed wall art.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_009_Quenlin_Blackwell.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_009_Quenlin_Blackwell.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Quenlin Blackwell", "reference_ids": ["R1"]}, {"id": "O2", "name": "bed"}, {"id": "O3", "name": "silver laptop"}, {"id": "O4", "name": "lamp"}, {"id": "O5", "name": "wall art"}], "constraints": [{"id": "C1", "type": "relation", "text": "Quenlin Blackwell is seated on the bed.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "layout", "text": "Quenlin Blackwell is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "attribute", "text": "Quenlin Blackwell is looking directly at the camera.", "depends_on": ["O1"]}, {"id": "C4", "type": "attribute", "text": "The silver laptop is open.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The silver laptop is on the bed.", "depends_on": ["O3", "O2"]}, {"id": "C6", "type": "relation", "text": "The silver laptop is in front of Quenlin Blackwell.", "depends_on": ["O3", "O1"]}, {"id": "C7", "type": "relation", "text": "The lamp is behind Quenlin Blackwell.", "depends_on": ["O4", "O1"]}, {"id": "C8", "type": "attribute", "text": "The wall art is framed.", "depends_on": ["O5"]}, {"id": "C9", "type": "relation", "text": "The wall art is behind Quenlin Blackwell.", "depends_on": ["O5", "O1"]}], "num_entities": 5, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 5}} +{"id": "4-entertainment_010", "category": "4-entertainment", "prompt": "Create an image of video essay creator Mina Le seated indoors in the foreground at a wooden desk and facing the camera. An open laptop is in front of her, and one hand is resting beside a notebook on the desk. Behind her are a tall bookshelf and a reading lamp.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_010_Mina_Le.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_010_Mina_Le.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mina Le", "reference_ids": ["R1"]}, {"id": "O2", "name": "wooden desk"}, {"id": "O3", "name": "laptop"}, {"id": "O4", "name": "notebook"}, {"id": "O5", "name": "tall bookshelf"}, {"id": "O6", "name": "reading lamp"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Mina Le is seated indoors.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Mina Le is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Mina Le is seated at the wooden desk.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "Mina Le is facing the camera.", "depends_on": ["O1"]}, {"id": "C5", "type": "attribute", "text": "The laptop is open.", "depends_on": ["O3"]}, {"id": "C6", "type": "relation", "text": "The laptop is in front of Mina Le.", "depends_on": ["O1", "O3"]}, {"id": "C7", "type": "relation", "text": "Mina Le has one hand resting beside the notebook.", "depends_on": ["O1", "O4"]}, {"id": "C8", "type": "relation", "text": "The notebook is on the wooden desk.", "depends_on": ["O2", "O4"]}, {"id": "C9", "type": "relation", "text": "The tall bookshelf is behind Mina Le.", "depends_on": ["O1", "O5"]}, {"id": "C10", "type": "relation", "text": "The reading lamp is behind Mina Le.", "depends_on": ["O1", "O6"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 6}} +{"id": "4-entertainment_011", "category": "4-entertainment", "prompt": "Create an image of Meredith Hayden in the foreground of a kitchen. She is plating a finished dish on a kitchen counter. Fresh ingredients and small bowls are placed on the counter around her. Kitchen cabinets and countertops are visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_011_Meredith_Hayden.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_011_Meredith_Hayden.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Meredith Hayden", "reference_ids": ["R1"]}, {"id": "O2", "name": "finished dish"}, {"id": "O3", "name": "kitchen counter"}, {"id": "O4", "name": "fresh ingredients"}, {"id": "O5", "name": "bowls"}, {"id": "O6", "name": "kitchen cabinets"}, {"id": "O7", "name": "countertops"}], "constraints": [{"id": "C1", "type": "layout", "text": "Meredith Hayden is in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Meredith Hayden is plating the finished dish.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The finished dish is on the kitchen counter.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "Fresh ingredients are placed on the kitchen counter.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "relation", "text": "Bowls are placed on the kitchen counter.", "depends_on": ["O3", "O5"]}, {"id": "C6", "type": "relation", "text": "The fresh ingredients are placed around Meredith Hayden.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "The bowls are placed around Meredith Hayden.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "layout", "text": "Kitchen cabinets are in the background.", "depends_on": ["O6"]}, {"id": "C9", "type": "layout", "text": "Countertops are in the background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"layout": 3, "relation": 6}} +{"id": "4-entertainment_012", "category": "4-entertainment", "prompt": "Create an image of Bri Morales taking a mirror selfie inside a dressing room. She is reflected in a wall mirror while holding a smartphone in front of part of her face. A ring light stands beside the mirror, and a dressing table sits below it with makeup items on the tabletop. A chair and a floor lamp are visible deeper in the reflected room.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_012_Bri_Morales.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_012_Bri_Morales.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Bri Morales", "reference_ids": ["R1"]}, {"id": "O2", "name": "wall mirror"}, {"id": "O3", "name": "smartphone"}, {"id": "O4", "name": "ring light"}, {"id": "O5", "name": "dressing table"}, {"id": "O6", "name": "makeup items"}, {"id": "O7", "name": "chair"}, {"id": "O8", "name": "floor lamp"}], "constraints": [{"id": "C1", "type": "relation", "text": "Bri Morales is reflected in the wall mirror.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "Bri Morales is holding the smartphone.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The smartphone is in front of part of Bri Morales's face.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "relation", "text": "The ring light stands beside the wall mirror.", "depends_on": ["O4", "O2"]}, {"id": "C5", "type": "relation", "text": "The dressing table is below the wall mirror.", "depends_on": ["O5", "O2"]}, {"id": "C6", "type": "relation", "text": "The makeup items are on the dressing table.", "depends_on": ["O6", "O5"]}, {"id": "C7", "type": "relation", "text": "The chair appears in the wall mirror reflection.", "depends_on": ["O7", "O2"]}, {"id": "C8", "type": "relation", "text": "The floor lamp appears in the wall mirror reflection.", "depends_on": ["O8", "O2"]}, {"id": "C9", "type": "layout", "text": "Bri Morales is positioned in the foreground reflection.", "depends_on": ["O1"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 7}} +{"id": "4-entertainment_013", "category": "4-entertainment", "prompt": "Create an image of Brandon Edelman in a press lounge during an entertainment event. He stands in the foreground beside a small interview table and faces an interviewer holding a microphone. A branded event backdrop is behind him, with two guests waiting near the back of the room. A floor light sits near the table and points toward the interview area.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_013_Brandon_Edelman.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_013_Brandon_Edelman.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Brandon Edelman", "reference_ids": ["R1"]}, {"id": "O2", "name": "interview table"}, {"id": "O3", "name": "interviewer"}, {"id": "O4", "name": "microphone"}, {"id": "O5", "name": "event backdrop"}, {"id": "O6", "name": "guests"}, {"id": "O7", "name": "floor light"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Brandon Edelman is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Brandon Edelman is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The interview table is beside Brandon Edelman.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "Brandon Edelman is facing the interviewer.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The interviewer is holding the microphone.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The event backdrop is behind Brandon Edelman.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "attribute", "text": "At least two guests are present.", "depends_on": ["O6"]}, {"id": "C8", "type": "layout", "text": "The guests are near the back of the room.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The floor light sits near the interview table.", "depends_on": ["O7", "O2"]}, {"id": "C10", "type": "relation", "text": "The floor light points toward the interview area.", "depends_on": ["O7", "O2"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 6}} +{"id": "4-entertainment_014", "category": "4-entertainment", "prompt": "Create an image of Katie Fang standing in the foreground of a classroom beside a whiteboard. She is facing a camera mounted on a tripod and pointing toward the whiteboard with one hand. A front row of chairs and a teacher's desk are visible behind her.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_014_Katie_Fang.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_014_Katie_Fang.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Katie Fang", "reference_ids": ["R1"]}, {"id": "O2", "name": "whiteboard"}, {"id": "O3", "name": "camera"}, {"id": "O4", "name": "tripod"}, {"id": "O5", "name": "chairs"}, {"id": "O6", "name": "teacher's desk"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Katie Fang is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Katie Fang is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Katie Fang is beside the whiteboard.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Katie Fang is facing the camera.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The camera is mounted on the tripod.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "Katie Fang is pointing toward the whiteboard with one hand.", "depends_on": ["O1", "O2"]}, {"id": "C7", "type": "relation", "text": "A front row of chairs is behind Katie Fang.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "relation", "text": "A teacher's desk is behind Katie Fang.", "depends_on": ["O1", "O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "4-entertainment_015", "category": "4-entertainment", "prompt": "Create an image of Hailey Sani standing in the foreground of a dressing room. She is looking directly at the camera. Behind her are a clothing rack, a full-length mirror, and a padded chair. A ring light is positioned beside the mirror.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_015_Hailey_Sani.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_015_Hailey_Sani.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Hailey Sani", "reference_ids": ["R1"]}, {"id": "O2", "name": "clothing rack"}, {"id": "O3", "name": "full-length mirror"}, {"id": "O4", "name": "padded chair"}, {"id": "O5", "name": "ring light"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Hailey Sani is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Hailey Sani is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "attribute", "text": "Hailey Sani is looking directly at the camera.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "The clothing rack is behind Hailey Sani.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "relation", "text": "The full-length mirror is behind Hailey Sani.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "relation", "text": "The padded chair is behind Hailey Sani.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "The ring light is positioned beside the full-length mirror.", "depends_on": ["O3", "O5"]}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 4}} +{"id": "4-entertainment_016", "category": "4-entertainment", "prompt": "Create an image of singer Sofia Camara in the foreground, singing into a microphone on a stage. A microphone stand is placed on the stage. Behind her are stage lighting beams and a performance backdrop. Audience silhouettes are visible in the lower background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_016_Sofia_Camara.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_016_Sofia_Camara.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sofia Camara", "reference_ids": ["R1"]}, {"id": "O2", "name": "microphone"}, {"id": "O3", "name": "stage"}, {"id": "O4", "name": "microphone stand"}, {"id": "O5", "name": "stage lighting beams"}, {"id": "O6", "name": "performance backdrop"}, {"id": "O7", "name": "audience silhouettes"}], "constraints": [{"id": "C1", "type": "layout", "text": "Sofia Camara is in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Sofia Camara is singing into the microphone.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Sofia Camara is on the stage.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The microphone stand is placed on the stage.", "depends_on": ["O4", "O3"]}, {"id": "C5", "type": "relation", "text": "The stage lighting beams are behind Sofia Camara.", "depends_on": ["O5", "O1"]}, {"id": "C6", "type": "relation", "text": "The performance backdrop is behind Sofia Camara.", "depends_on": ["O6", "O1"]}, {"id": "C7", "type": "layout", "text": "The audience silhouettes are in the lower background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"layout": 2, "relation": 5}} +{"id": "4-entertainment_017", "category": "4-entertainment", "prompt": "Create an image of Nectar Woode centered in the foreground inside a recording-studio live room. She is holding a microphone and singing. A music stand with a lyric sheet is beside her, a piano stool sits behind her, and a glass control-room window fills the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_017_Nectar_Woode.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_017_Nectar_Woode.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Nectar Woode", "reference_ids": ["R1"]}, {"id": "O2", "name": "recording-studio live room"}, {"id": "O3", "name": "microphone"}, {"id": "O4", "name": "music stand"}, {"id": "O5", "name": "lyric sheet"}, {"id": "O6", "name": "piano stool"}, {"id": "O7", "name": "glass control-room window"}], "constraints": [{"id": "C1", "type": "layout", "text": "Nectar Woode is centered in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Nectar Woode is inside the recording-studio live room.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Nectar Woode is holding the microphone.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "Nectar Woode is singing.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "The music stand is beside Nectar Woode.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "relation", "text": "The lyric sheet is on the music stand.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "layout", "text": "The piano stool sits behind Nectar Woode.", "depends_on": ["O6", "O1"]}, {"id": "C8", "type": "layout", "text": "The glass control-room window fills the background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "4-entertainment_018", "category": "4-entertainment", "prompt": "Create an image of Sean Trelford on an urban sidewalk during a street-style photo setup. He stands in the midground beside a folding director chair, facing a camera mounted on a tripod. A small clapboard rests on the chair, and storefronts line the background behind him. Parked cars and a street sign are visible farther back along the curb.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_018_Sean_Trelford.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_018_Sean_Trelford.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sean Trelford", "reference_ids": ["R1"]}, {"id": "O2", "name": "sidewalk"}, {"id": "O3", "name": "director chair"}, {"id": "O4", "name": "camera"}, {"id": "O5", "name": "tripod"}, {"id": "O6", "name": "clapboard"}, {"id": "O7", "name": "storefronts"}, {"id": "O8", "name": "parked cars"}, {"id": "O9", "name": "street sign"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Sean Trelford is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Sean Trelford is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Sean Trelford is standing on the sidewalk.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The director chair is beside Sean Trelford.", "depends_on": ["O3", "O1"]}, {"id": "C5", "type": "relation", "text": "Sean Trelford is facing the camera.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "relation", "text": "The camera is mounted on the tripod.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "relation", "text": "The clapboard rests on the director chair.", "depends_on": ["O6", "O3"]}, {"id": "C8", "type": "relation", "text": "The storefronts line the background behind Sean Trelford.", "depends_on": ["O7", "O1"]}, {"id": "C9", "type": "layout", "text": "The parked cars are farther back along the curb.", "depends_on": ["O8"]}, {"id": "C10", "type": "layout", "text": "The street sign is farther back along the curb.", "depends_on": ["O9"]}], "num_entities": 9, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 6}} +{"id": "4-entertainment_019", "category": "4-entertainment", "prompt": "Create an image of Skye Newman seated in the foreground at a podcast table and looking directly at the camera. A tabletop microphone is positioned in front of her, and one hand is resting beside a pair of headphones on the table. A wall shelf with books and a lamp is visible behind her.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_019_Skye_Newman.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_019_Skye_Newman.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Skye Newman", "reference_ids": ["R1"]}, {"id": "O2", "name": "podcast table"}, {"id": "O3", "name": "tabletop microphone"}, {"id": "O4", "name": "headphones"}, {"id": "O5", "name": "wall shelf"}, {"id": "O6", "name": "books"}, {"id": "O7", "name": "lamp"}], "constraints": [{"id": "C1", "type": "relation", "text": "Skye Newman is seated at the podcast table.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "layout", "text": "Skye Newman is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "attribute", "text": "Skye Newman is looking directly at the camera.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "The tabletop microphone is positioned in front of Skye Newman.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "Skye Newman has one hand resting beside the headphones.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "relation", "text": "The headphones are on the podcast table.", "depends_on": ["O2", "O4"]}, {"id": "C7", "type": "relation", "text": "The wall shelf is behind Skye Newman.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "relation", "text": "The books are on the wall shelf.", "depends_on": ["O5", "O6"]}, {"id": "C9", "type": "relation", "text": "The lamp is on the wall shelf.", "depends_on": ["O5", "O7"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 7}} +{"id": "4-entertainment_020", "category": "4-entertainment", "prompt": "Create an image of Kay Poyer at an indoor creator event booth. She stands in the foreground beside a tall banner, wearing an event badge clipped to her outfit. A demo table in front of her holds a tablet and a stack of flyers. Behind the table, two attendees wait near a branded backdrop and a small queue barrier.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_020_Kay_Poyer.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_020_Kay_Poyer.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Kay Poyer", "reference_ids": ["R1"]}, {"id": "O2", "name": "event badge"}, {"id": "O3", "name": "banner"}, {"id": "O4", "name": "demo table"}, {"id": "O5", "name": "tablet"}, {"id": "O6", "name": "flyers"}, {"id": "O7", "name": "attendees"}, {"id": "O8", "name": "backdrop"}, {"id": "O9", "name": "queue barrier"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Kay Poyer is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Kay Poyer is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The event badge is clipped to Kay Poyer's outfit.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "The banner is beside Kay Poyer.", "depends_on": ["O3", "O1"]}, {"id": "C5", "type": "relation", "text": "The demo table is in front of Kay Poyer.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "relation", "text": "The tablet rests on the demo table.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "relation", "text": "The flyers are stacked on the demo table.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "attribute", "text": "At least two attendees are present.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "The attendees wait behind the demo table.", "depends_on": ["O7", "O4"]}, {"id": "C10", "type": "relation", "text": "The backdrop is behind the attendees.", "depends_on": ["O8", "O7"]}, {"id": "C11", "type": "relation", "text": "The queue barrier is near the attendees.", "depends_on": ["O9", "O7"]}], "num_entities": 9, "num_constraints": 11, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 8}} +{"id": "4-entertainment_021", "category": "4-entertainment", "prompt": "Create an image of Ava Wong Davies at a festival arrivals lane. She stands on a carpeted mark in the midground and turns toward a line of photographers. A festival backdrop runs behind her, while two cameras appear at the edge of the frame. A rope barrier and a small floor label define the front edge of the photo area.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_021_Ava_Wong_Davies.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_021_Ava_Wong_Davies.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ava Wong Davies", "reference_ids": ["R1"]}, {"id": "O2", "name": "carpeted mark"}, {"id": "O3", "name": "photographers"}, {"id": "O4", "name": "festival backdrop"}, {"id": "O5", "name": "cameras"}, {"id": "O6", "name": "rope barrier"}, {"id": "O7", "name": "floor label"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Ava Wong Davies is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Ava Wong Davies is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Ava Wong Davies is standing on the carpeted mark.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Ava Wong Davies is turned toward the photographers.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The festival backdrop runs behind Ava Wong Davies.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "attribute", "text": "At least two cameras are present.", "depends_on": ["O5"]}, {"id": "C7", "type": "layout", "text": "The cameras appear at the edge of the frame.", "depends_on": ["O5"]}, {"id": "C8", "type": "layout", "text": "The rope barrier defines the front edge of the photo area.", "depends_on": ["O6"]}, {"id": "C9", "type": "relation", "text": "The floor label is near the rope barrier.", "depends_on": ["O7", "O6"]}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "4-entertainment_022", "category": "4-entertainment", "prompt": "Create an image of Chase Infiniti entering an event venue. He stands in the foreground near a crowd barrier, with a venue doorway directly behind him. A staff member beside the doorway holds a ticket scanner. An event poster is mounted next to the door, and a queue rope runs across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_022_Chase_Infiniti.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_022_Chase_Infiniti.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Chase Infiniti", "reference_ids": ["R1"]}, {"id": "O2", "name": "crowd barrier"}, {"id": "O3", "name": "venue doorway"}, {"id": "O4", "name": "staff member"}, {"id": "O5", "name": "ticket scanner"}, {"id": "O6", "name": "event poster"}, {"id": "O7", "name": "queue rope"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Chase Infiniti is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Chase Infiniti is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The crowd barrier is near Chase Infiniti.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "The venue doorway is directly behind Chase Infiniti.", "depends_on": ["O3", "O1"]}, {"id": "C5", "type": "relation", "text": "The staff member is beside the venue doorway.", "depends_on": ["O4", "O3"]}, {"id": "C6", "type": "relation", "text": "The staff member holds the ticket scanner.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "relation", "text": "The event poster is mounted next to the venue doorway.", "depends_on": ["O6", "O3"]}, {"id": "C8", "type": "layout", "text": "The queue rope runs across the lower foreground.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "4-entertainment_023", "category": "4-entertainment", "prompt": "Create an image of True Whitaker in a press interview corner. He stands beside a tall director chair while holding a handheld recorder. A poster wall is directly behind him. A camera on a tripod faces him from the foreground, and a small side table holds a water bottle.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_023_True_Whitaker.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_023_True_Whitaker.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "True Whitaker", "reference_ids": ["R1"]}, {"id": "O2", "name": "director chair"}, {"id": "O3", "name": "handheld recorder"}, {"id": "O4", "name": "poster wall"}, {"id": "O5", "name": "camera"}, {"id": "O6", "name": "tripod"}, {"id": "O7", "name": "side table"}, {"id": "O8", "name": "water bottle"}], "constraints": [{"id": "C1", "type": "attribute", "text": "True Whitaker is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "True Whitaker stands beside the director chair.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "True Whitaker is holding the handheld recorder.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The poster wall is directly behind True Whitaker.", "depends_on": ["O4", "O1"]}, {"id": "C5", "type": "relation", "text": "The camera is on the tripod.", "depends_on": ["O5", "O6"]}, {"id": "C6", "type": "relation", "text": "The camera faces True Whitaker.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "layout", "text": "The camera is positioned in the foreground.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The water bottle is on the side table.", "depends_on": ["O8", "O7"]}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "4-entertainment_024", "category": "4-entertainment", "prompt": "Create an image of Connor Storrie in a backstage corridor before an interview. He stands in the midground beside a rolling wardrobe rack and faces a camera on a tripod. A dressing-room door is directly behind him, and a clipboard is attached to the door. Floor tape marks the spot where he is standing, with a wall poster visible farther back.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_024_Connor_Storrie.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_024_Connor_Storrie.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Connor Storrie", "reference_ids": ["R1"]}, {"id": "O2", "name": "wardrobe rack"}, {"id": "O3", "name": "camera"}, {"id": "O4", "name": "tripod"}, {"id": "O5", "name": "dressing-room door"}, {"id": "O6", "name": "clipboard"}, {"id": "O7", "name": "floor tape"}, {"id": "O8", "name": "wall poster"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Connor Storrie is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Connor Storrie is positioned in the midground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The wardrobe rack is beside Connor Storrie.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "Connor Storrie is facing the camera.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The camera is on the tripod.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The dressing-room door is directly behind Connor Storrie.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "relation", "text": "The clipboard is attached to the dressing-room door.", "depends_on": ["O6", "O5"]}, {"id": "C8", "type": "relation", "text": "The floor tape marks the spot where Connor Storrie is standing.", "depends_on": ["O7", "O1"]}, {"id": "C9", "type": "layout", "text": "The wall poster is farther back in the corridor.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "4-entertainment_025", "category": "4-entertainment", "prompt": "Create an image of Audrey Hobert in a backstage television studio corridor. She stands in the foreground beside a dressing-room door, facing a camera set on a rolling monitor cart. A studio badge is mounted beside the door. A cable coil lies near the cart, and strips of floor tape lead down the corridor behind her.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_025_Audrey_Hobert.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_025_Audrey_Hobert.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Audrey Hobert", "reference_ids": ["R1"]}, {"id": "O2", "name": "dressing-room door"}, {"id": "O3", "name": "camera"}, {"id": "O4", "name": "rolling monitor cart"}, {"id": "O5", "name": "studio badge"}, {"id": "O6", "name": "cable coil"}, {"id": "O7", "name": "floor tape"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Audrey Hobert is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Audrey Hobert is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The dressing-room door is beside Audrey Hobert.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "Audrey Hobert is facing the camera.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The camera is set on the rolling monitor cart.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The studio badge is mounted beside the dressing-room door.", "depends_on": ["O5", "O2"]}, {"id": "C7", "type": "relation", "text": "The cable coil lies near the rolling monitor cart.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "relation", "text": "The floor tape leads down the corridor behind Audrey Hobert.", "depends_on": ["O7", "O1"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "4-entertainment_026", "category": "4-entertainment", "prompt": "Create an image of Myha'la seated in a press-junket interview room. She sits in the foreground at a small table and turns toward an interviewer silhouette on the left side of the frame. A table microphone and two water glasses are on the table. A cue card rests near the microphone, and a branded backdrop with a light stand is positioned behind her.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_026_Myhala.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_026_Myhala.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Myha'la", "reference_ids": ["R1"]}, {"id": "O2", "name": "table"}, {"id": "O3", "name": "interviewer silhouette"}, {"id": "O4", "name": "table microphone"}, {"id": "O5", "name": "water glasses"}, {"id": "O6", "name": "cue card"}, {"id": "O7", "name": "backdrop"}, {"id": "O8", "name": "light stand"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Myha'la is seated.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Myha'la is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Myha'la is seated at the table.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Myha'la is turned toward the interviewer silhouette.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "layout", "text": "The interviewer silhouette is on the left side of the frame.", "depends_on": ["O3"]}, {"id": "C6", "type": "relation", "text": "The table microphone is on the table.", "depends_on": ["O4", "O2"]}, {"id": "C7", "type": "relation", "text": "The water glasses are on the table.", "depends_on": ["O5", "O2"]}, {"id": "C8", "type": "relation", "text": "The cue card rests near the table microphone.", "depends_on": ["O6", "O4"]}, {"id": "C9", "type": "relation", "text": "The backdrop is positioned behind Myha'la.", "depends_on": ["O7", "O1"]}, {"id": "C10", "type": "relation", "text": "The light stand is beside the backdrop.", "depends_on": ["O8", "O7"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 7}} +{"id": "4-entertainment_027", "category": "4-entertainment", "prompt": "Create an image of Michelle de Swarte in the foreground on a comedy-club stage. She is holding a handheld microphone with her mouth open mid-sentence while looking toward small round tables. A stool and a microphone stand are on the stage. A brick wall with a neon comedy-club sign fills the background, and a water glass rests on the stool.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_027_Michelle_de_Swarte.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_027_Michelle_de_Swarte.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Michelle de Swarte", "reference_ids": ["R1"]}, {"id": "O2", "name": "comedy-club stage"}, {"id": "O3", "name": "handheld microphone"}, {"id": "O4", "name": "small round tables"}, {"id": "O5", "name": "stool"}, {"id": "O6", "name": "microphone stand"}, {"id": "O7", "name": "brick wall"}, {"id": "O8", "name": "neon comedy-club sign"}, {"id": "O9", "name": "water glass"}], "constraints": [{"id": "C1", "type": "layout", "text": "Michelle de Swarte is in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Michelle de Swarte is on the comedy-club stage.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Michelle de Swarte is holding the handheld microphone.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "Michelle de Swarte has her mouth open mid-sentence.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "Michelle de Swarte is looking toward the small round tables.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "relation", "text": "The stool is on the comedy-club stage.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "relation", "text": "The microphone stand is on the comedy-club stage.", "depends_on": ["O2", "O6"]}, {"id": "C8", "type": "layout", "text": "The brick wall fills the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "The neon comedy-club sign is on the brick wall.", "depends_on": ["O8", "O7"]}, {"id": "C10", "type": "relation", "text": "The water glass rests on the stool.", "depends_on": ["O9", "O5"]}], "num_entities": 9, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 7}} +{"id": "4-entertainment_028", "category": "4-entertainment", "prompt": "Create an image of Havana Rose Liu standing in the foreground at a gallery and facing the camera. A white wall is directly behind her. At least two framed artworks hang on the wall behind her. At least two attendees are visible in the mid-background, and one attendee at the side of the image is looking at her.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_028_Havana_Rose_Liu.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_028_Havana_Rose_Liu.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Havana Rose Liu", "reference_ids": ["R1"]}, {"id": "O2", "name": "white wall"}, {"id": "O3", "name": "framed artworks"}, {"id": "O4", "name": "attendees"}, {"id": "O5", "name": "attendee"}], "constraints": [{"id": "C1", "type": "layout", "text": "Havana Rose Liu is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "Havana Rose Liu is facing the camera.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The white wall is directly behind Havana Rose Liu.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "At least two framed artworks are present.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The framed artworks hang on the white wall.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "attribute", "text": "At least two attendees are present.", "depends_on": ["O4"]}, {"id": "C7", "type": "layout", "text": "The attendees are in the mid-background.", "depends_on": ["O4"]}, {"id": "C8", "type": "layout", "text": "One attendee is at the side of the image.", "depends_on": ["O5"]}, {"id": "C9", "type": "relation", "text": "The attendee at the side of the image is looking at Havana Rose Liu.", "depends_on": ["O1", "O5"]}], "num_entities": 5, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 3}} +{"id": "4-entertainment_029", "category": "4-entertainment", "prompt": "Create an image of Miles Caton standing on a stage in the foreground. He is holding a microphone. Stage lights hang above him. At least one monitor speaker is on the stage beside him, and an audience fills the lower background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_029_Miles_Caton.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_029_Miles_Caton.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Miles Caton", "reference_ids": ["R1"]}, {"id": "O2", "name": "stage"}, {"id": "O3", "name": "microphone"}, {"id": "O4", "name": "stage lights"}, {"id": "O5", "name": "monitor speaker"}, {"id": "O6", "name": "audience"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Miles Caton is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Miles Caton is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Miles Caton is on the stage.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Miles Caton is holding the microphone.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "Stage lights are above Miles Caton.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "attribute", "text": "At least one monitor speaker is present.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The monitor speaker is on the stage.", "depends_on": ["O2", "O5"]}, {"id": "C8", "type": "relation", "text": "The monitor speaker is beside Miles Caton.", "depends_on": ["O1", "O5"]}, {"id": "C9", "type": "layout", "text": "An audience is in the lower background.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "4-entertainment_030", "category": "4-entertainment", "prompt": "Create an image of Ella Anderson seated in an interview booth. She sits on a tall stool while holding a small clutch on her lap. A boom microphone hangs above her, and cue cards rest on a narrow side table. A plain event backdrop fills the background behind the booth.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_030_Ella_Anderson.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_030_Ella_Anderson.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Ella Anderson", "reference_ids": ["R1"]}, {"id": "O2", "name": "stool"}, {"id": "O3", "name": "clutch"}, {"id": "O4", "name": "boom microphone"}, {"id": "O5", "name": "cue cards"}, {"id": "O6", "name": "side table"}, {"id": "O7", "name": "event backdrop"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Ella Anderson is seated.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Ella Anderson sits on the stool.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Ella Anderson holds the clutch on her lap.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The boom microphone hangs above Ella Anderson.", "depends_on": ["O4", "O1"]}, {"id": "C5", "type": "relation", "text": "The cue cards rest on the side table.", "depends_on": ["O5", "O6"]}, {"id": "C6", "type": "layout", "text": "The event backdrop fills the background.", "depends_on": ["O7"]}, {"id": "C7", "type": "relation", "text": "The event backdrop is behind the interview booth.", "depends_on": ["O7", "O2"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "4-entertainment_031", "category": "4-entertainment", "prompt": "Create an image of Edmund Donovan seated at a festival Q&A table in the foreground. He is looking at the moderator. A film-festival backdrop with readable film-festival branding hangs behind him. A water bottle and a table microphone are placed on the table.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_031_Edmund_Donovan.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_031_Edmund_Donovan.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Edmund Donovan", "reference_ids": ["R1"]}, {"id": "O2", "name": "table"}, {"id": "O3", "name": "backdrop"}, {"id": "O4", "name": "water bottle"}, {"id": "O5", "name": "microphone"}, {"id": "O6", "name": "film-festival branding"}], "constraints": [{"id": "C1", "type": "relation", "text": "Edmund Donovan is seated at the table.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "layout", "text": "Edmund Donovan is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "layout", "text": "The table is in the foreground.", "depends_on": ["O2"]}, {"id": "C4", "type": "attribute", "text": "Edmund Donovan is looking toward the moderator.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "The backdrop hangs behind Edmund Donovan.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "relation", "text": "The film-festival branding is displayed on the backdrop.", "depends_on": ["O6", "O3"]}, {"id": "C7", "type": "relation", "text": "The water bottle is placed on the table.", "depends_on": ["O2", "O4"]}, {"id": "C8", "type": "relation", "text": "The microphone is placed on the table.", "depends_on": ["O2", "O5"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "4-entertainment_032", "category": "4-entertainment", "prompt": "Create an image of Inga Ibsdotter Lilleaas in a theater lobby photo area. She stands in the foreground beside a ticket counter and faces a camera. A branded backdrop is placed behind her, with two event guests waiting near a rope barrier. Wall posters and overhead lobby lights are visible deeper in the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_032_Inga_Ibsdotter_Lilleaas.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_032_Inga_Ibsdotter_Lilleaas.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Inga Ibsdotter Lilleaas", "reference_ids": ["R1"]}, {"id": "O2", "name": "ticket counter"}, {"id": "O3", "name": "camera"}, {"id": "O4", "name": "backdrop"}, {"id": "O5", "name": "event guests"}, {"id": "O6", "name": "rope barrier"}, {"id": "O7", "name": "wall posters"}, {"id": "O8", "name": "lobby lights"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Inga Ibsdotter Lilleaas is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Inga Ibsdotter Lilleaas is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The ticket counter is beside Inga Ibsdotter Lilleaas.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "Inga Ibsdotter Lilleaas is facing the camera.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The backdrop is placed behind Inga Ibsdotter Lilleaas.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "attribute", "text": "At least two event guests are present.", "depends_on": ["O5"]}, {"id": "C7", "type": "relation", "text": "The event guests wait near the rope barrier.", "depends_on": ["O5", "O6"]}, {"id": "C8", "type": "layout", "text": "The wall posters are deeper in the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "layout", "text": "The lobby lights are overhead.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "4-entertainment_033", "category": "4-entertainment", "prompt": "Create an image of Esther McGregor at an editorial studio photo setup. She stands in the foreground on a floor mark and turns toward a photographer silhouette next to a camera on a tripod in front of her. A paper backdrop roll hangs behind her. A reflector panel stands beside her, and a clothing rack is arranged near the shooting area.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_033_Esther_McGregor.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_033_Esther_McGregor.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Esther McGregor", "reference_ids": ["R1"]}, {"id": "O2", "name": "floor mark"}, {"id": "O3", "name": "photographer silhouette"}, {"id": "O4", "name": "backdrop roll"}, {"id": "O5", "name": "camera"}, {"id": "O6", "name": "tripod"}, {"id": "O7", "name": "reflector panel"}, {"id": "O8", "name": "clothing rack"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Esther McGregor is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Esther McGregor is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Esther McGregor is standing on the floor mark.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Esther McGregor is turned toward the photographer silhouette.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The backdrop roll hangs behind Esther McGregor.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "relation", "text": "The camera is on the tripod.", "depends_on": ["O5", "O6"]}, {"id": "C7", "type": "relation", "text": "The camera is positioned in front of Esther McGregor.", "depends_on": ["O5", "O1"]}, {"id": "C8", "type": "relation", "text": "The reflector panel is beside Esther McGregor.", "depends_on": ["O7", "O1"]}, {"id": "C9", "type": "layout", "text": "The clothing rack is arranged near the shooting area.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "4-entertainment_034", "category": "4-entertainment", "prompt": "Create an image of Guillaume Marbeck standing upright in the foreground on a sidewalk and facing the camera. Behind him is a venue entrance to a runway-show venue along with at least two attendees. Parked cars and building facades are also visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_034_Guillaume_Marbeck.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_034_Guillaume_Marbeck.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Guillaume Marbeck", "reference_ids": ["R1"]}, {"id": "O2", "name": "sidewalk"}, {"id": "O3", "name": "venue entrance"}, {"id": "O4", "name": "attendees"}, {"id": "O5", "name": "parked cars"}, {"id": "O6", "name": "building facades"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Guillaume Marbeck is standing upright.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Guillaume Marbeck is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Guillaume Marbeck is on the sidewalk.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "Guillaume Marbeck is facing the camera.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "The venue entrance is behind Guillaume Marbeck.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "attribute", "text": "At least two attendees are present.", "depends_on": ["O4"]}, {"id": "C7", "type": "relation", "text": "The attendees are behind Guillaume Marbeck.", "depends_on": ["O1", "O4"]}, {"id": "C8", "type": "layout", "text": "Parked cars are in the background.", "depends_on": ["O5"]}, {"id": "C9", "type": "layout", "text": "Building facades are in the background.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 3}} +{"id": "4-entertainment_035", "category": "4-entertainment", "prompt": "Create an image of Lola Young standing in the foreground inside a recording studio. She is singing into a microphone positioned directly in front of her. A music stand is beside her. A glass studio window is directly behind her, and at least two visible studio lights illuminate the room.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_035_Lola_Young.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_035_Lola_Young.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Lola Young", "reference_ids": ["R1"]}, {"id": "O2", "name": "microphone"}, {"id": "O3", "name": "music stand"}, {"id": "O4", "name": "glass studio window"}, {"id": "O5", "name": "studio lights"}], "constraints": [{"id": "C1", "type": "layout", "text": "Lola Young is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Lola Young is singing into the microphone.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The microphone is positioned directly in front of Lola Young.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The music stand is beside Lola Young.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The glass studio window is directly behind Lola Young.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "attribute", "text": "At least two studio lights are present.", "depends_on": ["O5"]}, {"id": "C7", "type": "attribute", "text": "The studio lights illuminate the room.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 4}} +{"id": "4-entertainment_036", "category": "4-entertainment", "prompt": "Create an image of Owen Cooper at a television-drama premiere entrance. He stands on a carpet strip in the foreground and faces a group of photographers. A branded photo wall is directly behind him, with a poster display to one side. A rope barrier runs across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_036_Owen_Cooper.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_036_Owen_Cooper.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Owen Cooper", "reference_ids": ["R1"]}, {"id": "O2", "name": "carpet strip"}, {"id": "O3", "name": "photographers"}, {"id": "O4", "name": "photo wall"}, {"id": "O5", "name": "poster display"}, {"id": "O6", "name": "rope barrier"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Owen Cooper is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Owen Cooper is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Owen Cooper is standing on the carpet strip.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Owen Cooper is facing the photographers.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "attribute", "text": "At least two photographers are present.", "depends_on": ["O3"]}, {"id": "C6", "type": "relation", "text": "The photo wall is directly behind Owen Cooper.", "depends_on": ["O4", "O1"]}, {"id": "C7", "type": "relation", "text": "The poster display is to one side of Owen Cooper.", "depends_on": ["O5", "O1"]}, {"id": "C8", "type": "layout", "text": "The rope barrier runs across the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "4-entertainment_037", "category": "4-entertainment", "prompt": "Create an image of Sienna Spiro standing in the foreground on a stage. She is holding a microphone and singing toward audience silhouettes. A keyboard is on the stage. Concert lights shine on her from above, with at least three audience silhouettes in the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_037_Sienna_Spiro.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_037_Sienna_Spiro.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sienna Spiro", "reference_ids": ["R1"]}, {"id": "O2", "name": "stage"}, {"id": "O3", "name": "microphone"}, {"id": "O4", "name": "audience silhouettes"}, {"id": "O5", "name": "keyboard"}, {"id": "O6", "name": "concert lights"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Sienna Spiro is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Sienna Spiro is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Sienna Spiro is on the stage.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Sienna Spiro is holding the microphone.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "attribute", "text": "Sienna Spiro is singing.", "depends_on": ["O1"]}, {"id": "C6", "type": "relation", "text": "Sienna Spiro is singing toward the audience silhouettes.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "The keyboard is on the stage.", "depends_on": ["O5", "O2"]}, {"id": "C8", "type": "relation", "text": "Concert lights shine on Sienna Spiro from above.", "depends_on": ["O6", "O1"]}, {"id": "C9", "type": "attribute", "text": "At least three audience silhouettes are present.", "depends_on": ["O4"]}, {"id": "C10", "type": "layout", "text": "The audience silhouettes are in the background.", "depends_on": ["O4"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 5}} +{"id": "4-entertainment_038", "category": "4-entertainment", "prompt": "Create an image of Mau P standing behind a festival DJ booth in the foreground. He has one hand raised and the other hand above the controls. Overhead stage lighting rigs and an LED screen are positioned behind him. A crowd area is visible in the lower background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_038_Mau_P.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_038_Mau_P.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mau P", "reference_ids": ["R1"]}, {"id": "O2", "name": "DJ booth"}, {"id": "O3", "name": "controls"}, {"id": "O4", "name": "stage lighting rigs"}, {"id": "O5", "name": "LED screen"}, {"id": "O6", "name": "crowd"}], "constraints": [{"id": "C1", "type": "layout", "text": "Mau P is in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Mau P is standing behind the DJ booth.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "Mau P has one hand raised.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Mau P has his other hand above the controls.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "attribute", "text": "The stage lighting rigs are overhead.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The stage lighting rigs are positioned behind Mau P.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "The LED screen is positioned behind Mau P.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "layout", "text": "The crowd is in the lower background.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "4-entertainment_039", "category": "4-entertainment", "prompt": "Create an image of Nicky Campbell seated at a desk in the foreground of a radio studio. A broadcast microphone is positioned in front of him, and one hand is placed on the mixing console as he faces it. Headphones and studio monitors are visible beside him.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_039_Nicky_Campbell.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_039_Nicky_Campbell.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Nicky Campbell", "reference_ids": ["R1"]}, {"id": "O2", "name": "desk"}, {"id": "O3", "name": "broadcast microphone"}, {"id": "O4", "name": "mixing console"}, {"id": "O5", "name": "headphones"}, {"id": "O6", "name": "studio monitors"}], "constraints": [{"id": "C1", "type": "relation", "text": "Nicky Campbell is seated at the desk.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "layout", "text": "Nicky Campbell is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The broadcast microphone is positioned in front of Nicky Campbell.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "Nicky Campbell has one hand placed on the mixing console.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "relation", "text": "Nicky Campbell is facing the mixing console.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "relation", "text": "The headphones are beside Nicky Campbell.", "depends_on": ["O1", "O5"]}, {"id": "C7", "type": "relation", "text": "The studio monitors are beside Nicky Campbell.", "depends_on": ["O1", "O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"layout": 1, "relation": 6}} +{"id": "4-entertainment_040", "category": "4-entertainment", "prompt": "Create an image of Anayka She indoors in the foreground, filming a beauty video. She is facing a phone camera mounted directly in front of her and holding a makeup brush in one hand. A vanity table with a makeup brush holder and a round mirror is visible beside her.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_040_Anayka_She.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_040_Anayka_She.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Anayka She", "reference_ids": ["R1"]}, {"id": "O2", "name": "phone camera"}, {"id": "O3", "name": "makeup brush"}, {"id": "O4", "name": "vanity table"}, {"id": "O5", "name": "makeup brush holder"}, {"id": "O6", "name": "round mirror"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Anayka She is indoors.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Anayka She is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Anayka She is facing the phone camera.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The phone camera is mounted directly in front of Anayka She.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "relation", "text": "Anayka She is holding the makeup brush in one hand.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "relation", "text": "The makeup brush holder is on the vanity table.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "relation", "text": "The round mirror is on the vanity table.", "depends_on": ["O4", "O6"]}, {"id": "C8", "type": "relation", "text": "The vanity table is beside Anayka She.", "depends_on": ["O1", "O4"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "4-entertainment_041", "category": "4-entertainment", "prompt": "Create an image of Vinny Thomas filming indoors in an apartment living room. He faces a phone mounted on a tripod and raises one hand in a speaking gesture. A coffee table with loose script pages sits in front of the sofa behind him. A floor lamp stands near the sofa, and a ring light is positioned beside the phone.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_041_Vinny_Thomas.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_041_Vinny_Thomas.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Vinny Thomas", "reference_ids": ["R1"]}, {"id": "O2", "name": "phone"}, {"id": "O3", "name": "tripod"}, {"id": "O4", "name": "coffee table"}, {"id": "O5", "name": "script pages"}, {"id": "O6", "name": "sofa"}, {"id": "O7", "name": "floor lamp"}, {"id": "O8", "name": "ring light"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Vinny Thomas is indoors.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Vinny Thomas is facing the phone.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The phone is mounted on the tripod.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The phone is in front of Vinny Thomas.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "attribute", "text": "Vinny Thomas is raising one hand.", "depends_on": ["O1"]}, {"id": "C6", "type": "relation", "text": "The coffee table is in front of the sofa.", "depends_on": ["O4", "O6"]}, {"id": "C7", "type": "relation", "text": "The script pages are on the coffee table.", "depends_on": ["O5", "O4"]}, {"id": "C8", "type": "relation", "text": "The sofa is behind Vinny Thomas.", "depends_on": ["O6", "O1"]}, {"id": "C9", "type": "relation", "text": "The floor lamp stands near the sofa.", "depends_on": ["O7", "O6"]}, {"id": "C10", "type": "relation", "text": "The ring light is beside the phone.", "depends_on": ["O8", "O2"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "relation": 8}} +{"id": "4-entertainment_042", "category": "4-entertainment", "prompt": "Create an image of Krit Amnuaydechkorn at a fan-event signing table. He stands behind the table while holding a microphone. A signed poster lies on the tabletop beside a marker. Audience members hold up phones beyond a rope line in the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_042_Krit_Amnuaydechkorn.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_042_Krit_Amnuaydechkorn.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Krit Amnuaydechkorn", "reference_ids": ["R1"]}, {"id": "O2", "name": "signing table"}, {"id": "O3", "name": "microphone"}, {"id": "O4", "name": "poster"}, {"id": "O5", "name": "marker"}, {"id": "O6", "name": "audience members"}, {"id": "O7", "name": "phones"}, {"id": "O8", "name": "rope line"}], "constraints": [{"id": "C1", "type": "relation", "text": "Krit Amnuaydechkorn stands behind the signing table.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "Krit Amnuaydechkorn is holding the microphone.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The poster lies on the signing table.", "depends_on": ["O4", "O2"]}, {"id": "C4", "type": "attribute", "text": "The poster is signed.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The marker is beside the poster.", "depends_on": ["O5", "O4"]}, {"id": "C6", "type": "relation", "text": "The audience members are beyond the rope line.", "depends_on": ["O6", "O8"]}, {"id": "C7", "type": "relation", "text": "The audience members hold up phones.", "depends_on": ["O6", "O7"]}, {"id": "C8", "type": "layout", "text": "The audience members are in the background.", "depends_on": ["O6"]}], "num_entities": 8, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "4-entertainment_043", "category": "4-entertainment", "prompt": "Create an image of Saura Lightfoot-Leon at a photo wall. She stands in the foreground and looks toward a camera cluster at the edge of the frame. A branded photo wall is directly behind her, with two attendees waiting farther back. One attendee wears an event badge, and a rope barrier runs beside the photo wall.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_043_Saura_Lightfoot_Leon.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_043_Saura_Lightfoot_Leon.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Saura Lightfoot-Leon", "reference_ids": ["R1"]}, {"id": "O2", "name": "camera cluster"}, {"id": "O3", "name": "photo wall"}, {"id": "O4", "name": "attendees"}, {"id": "O5", "name": "event badge"}, {"id": "O6", "name": "rope barrier"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Saura Lightfoot-Leon is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Saura Lightfoot-Leon is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Saura Lightfoot-Leon is looking toward the camera cluster.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The camera cluster is at the edge of the frame.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The photo wall is directly behind Saura Lightfoot-Leon.", "depends_on": ["O3", "O1"]}, {"id": "C6", "type": "attribute", "text": "At least two attendees are present.", "depends_on": ["O4"]}, {"id": "C7", "type": "layout", "text": "The attendees wait farther back.", "depends_on": ["O4"]}, {"id": "C8", "type": "relation", "text": "One attendee wears the event badge.", "depends_on": ["O4", "O5"]}, {"id": "C9", "type": "relation", "text": "The rope barrier runs beside the photo wall.", "depends_on": ["O6", "O3"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 3, "relation": 4}} +{"id": "4-entertainment_044", "category": "4-entertainment", "prompt": "Create an image of Mari Yamamoto in a gallery-style display area. She stands in the foreground between a display wall and a product pedestal, facing photographers near the front edge of the frame. Two framed visuals hang on the display wall behind her. A small product card rests on the pedestal, while two guests stand near a gallery bench in the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_044_Mari_Yamamoto.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_044_Mari_Yamamoto.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Mari Yamamoto", "reference_ids": ["R1"]}, {"id": "O2", "name": "display wall"}, {"id": "O3", "name": "product pedestal"}, {"id": "O4", "name": "photographers"}, {"id": "O5", "name": "framed visuals"}, {"id": "O6", "name": "product card"}, {"id": "O7", "name": "guests"}, {"id": "O8", "name": "gallery bench"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Mari Yamamoto is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Mari Yamamoto is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Mari Yamamoto is between the display wall and the product pedestal.", "depends_on": ["O1", "O2", "O3"]}, {"id": "C4", "type": "relation", "text": "Mari Yamamoto is facing the photographers.", "depends_on": ["O1", "O4"]}, {"id": "C5", "type": "attribute", "text": "Exactly two framed visuals hang on the display wall.", "depends_on": ["O5", "O2"]}, {"id": "C6", "type": "relation", "text": "The framed visuals hang on the display wall.", "depends_on": ["O5", "O2"]}, {"id": "C7", "type": "relation", "text": "The product card rests on the product pedestal.", "depends_on": ["O6", "O3"]}, {"id": "C8", "type": "attribute", "text": "At least two guests are present.", "depends_on": ["O7"]}, {"id": "C9", "type": "relation", "text": "The guests stand near the gallery bench.", "depends_on": ["O7", "O8"]}, {"id": "C10", "type": "layout", "text": "The gallery bench is in the background.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 2, "relation": 5}} +{"id": "4-entertainment_045", "category": "4-entertainment", "prompt": "Create an image of Jordan Adetunji standing in the foreground on a festival stage. He is holding a microphone in one hand and raising his other hand. An LED tour backdrop is directly behind him, a setlist is taped near the stage edge, and two floor wedge monitors sit behind the stage edge.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_045_Jordan_Adetunji.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_045_Jordan_Adetunji.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Jordan Adetunji", "reference_ids": ["R1"]}, {"id": "O2", "name": "festival stage"}, {"id": "O3", "name": "microphone"}, {"id": "O4", "name": "LED tour backdrop"}, {"id": "O5", "name": "setlist"}, {"id": "O6", "name": "stage edge"}, {"id": "O7", "name": "floor wedge monitors"}], "constraints": [{"id": "C1", "type": "layout", "text": "Jordan Adetunji is standing in the foreground.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "Jordan Adetunji is standing on the festival stage.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "Jordan Adetunji is holding the microphone in one hand.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "attribute", "text": "Jordan Adetunji is raising his other hand.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "The LED tour backdrop is directly behind Jordan Adetunji.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "relation", "text": "The setlist is taped near the stage edge.", "depends_on": ["O5", "O6"]}, {"id": "C7", "type": "relation", "text": "The floor wedge monitors sit behind the stage edge.", "depends_on": ["O7", "O6"]}, {"id": "C8", "type": "attribute", "text": "Two floor wedge monitors are present.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 5}} +{"id": "4-entertainment_046", "category": "4-entertainment", "prompt": "Create an image of Leana Deeb standing in the foreground of an indoor gym. A phone mounted on a tripod is directly in front of her. One hand is raised in a speaking gesture. A workout bench is beside her, and two dumbbells are visible on the floor in front of the bench.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_046_Leana_Deeb.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_046_Leana_Deeb.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Leana Deeb", "reference_ids": ["R1"]}, {"id": "O2", "name": "phone"}, {"id": "O3", "name": "tripod"}, {"id": "O4", "name": "workout bench"}, {"id": "O5", "name": "dumbbells"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Leana Deeb is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Leana Deeb is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The phone is mounted on the tripod.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "The phone is directly in front of Leana Deeb.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "relation", "text": "The tripod is directly in front of Leana Deeb.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "attribute", "text": "Leana Deeb has one hand raised in a speaking gesture.", "depends_on": ["O1"]}, {"id": "C7", "type": "relation", "text": "The workout bench is beside Leana Deeb.", "depends_on": ["O1", "O4"]}, {"id": "C8", "type": "attribute", "text": "Exactly two dumbbells are on the floor in front of the workout bench.", "depends_on": ["O5", "O4"]}, {"id": "C9", "type": "relation", "text": "The dumbbells are on the floor in front of the workout bench.", "depends_on": ["O4", "O5"]}], "num_entities": 5, "num_constraints": 9, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 5}} +{"id": "4-entertainment_047", "category": "4-entertainment", "prompt": "Create an image of Sam Eckholm filming a field segment in a public park. He stands in the foreground beside a camera on a tripod and gestures toward a portable map board. A clip-on microphone is attached near his collar. Behind him, a walking path curves past two trees and a park bench.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_047_Sam_Eckholm.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_047_Sam_Eckholm.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sam Eckholm", "reference_ids": ["R1"]}, {"id": "O2", "name": "camera"}, {"id": "O3", "name": "tripod"}, {"id": "O4", "name": "map board"}, {"id": "O5", "name": "clip-on microphone"}, {"id": "O6", "name": "walking path"}, {"id": "O7", "name": "trees"}, {"id": "O8", "name": "park bench"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Sam Eckholm is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Sam Eckholm is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The camera is beside Sam Eckholm.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "The camera is on the tripod.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "relation", "text": "Sam Eckholm is gesturing toward the map board.", "depends_on": ["O1", "O4"]}, {"id": "C6", "type": "relation", "text": "The clip-on microphone is attached near Sam Eckholm's collar.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "relation", "text": "The walking path curves behind Sam Eckholm.", "depends_on": ["O6", "O1"]}, {"id": "C8", "type": "attribute", "text": "Exactly two trees stand beside the walking path.", "depends_on": ["O7", "O6"]}, {"id": "C9", "type": "relation", "text": "The trees are behind Sam Eckholm.", "depends_on": ["O7", "O1"]}, {"id": "C10", "type": "relation", "text": "The park bench is behind Sam Eckholm.", "depends_on": ["O8", "O1"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 7}} +{"id": "4-entertainment_048", "category": "4-entertainment", "prompt": "Create an image of Eloise Dufka in a backstage dressing area. She stands in the foreground beside a mirror and looks toward a garment bag on a clothing rack. A makeup table sits below the mirror with a brush cup on it. A staff member silhouette is visible in the background, and strips of floor tape run across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_048_Eloise_Dufka.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_048_Eloise_Dufka.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Eloise Dufka", "reference_ids": ["R1"]}, {"id": "O2", "name": "mirror"}, {"id": "O3", "name": "garment bag"}, {"id": "O4", "name": "clothing rack"}, {"id": "O5", "name": "makeup table"}, {"id": "O6", "name": "brush cup"}, {"id": "O7", "name": "staff member silhouette"}, {"id": "O8", "name": "floor tape"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Eloise Dufka is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Eloise Dufka is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The mirror is beside Eloise Dufka.", "depends_on": ["O2", "O1"]}, {"id": "C4", "type": "relation", "text": "Eloise Dufka is looking toward the garment bag.", "depends_on": ["O1", "O3"]}, {"id": "C5", "type": "relation", "text": "The garment bag hangs on the clothing rack.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The makeup table sits below the mirror.", "depends_on": ["O5", "O2"]}, {"id": "C7", "type": "relation", "text": "The brush cup is on the makeup table.", "depends_on": ["O6", "O5"]}, {"id": "C8", "type": "layout", "text": "The staff member silhouette is in the background.", "depends_on": ["O7"]}, {"id": "C9", "type": "layout", "text": "The floor tape runs across the lower foreground.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "4-entertainment_049", "category": "4-entertainment", "prompt": "Create an image of Sylvester Brewster in a compact interview corner. He stands in the foreground facing an interviewer silhouette at the edge of the frame. A branded backdrop is behind him, while a boom microphone hangs above the interview space. A camera on a tripod and a light stand are positioned to one side, with a floor cable crossing the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_049_Sylvester_Brewster.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_049_Sylvester_Brewster.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Sylvester Brewster", "reference_ids": ["R1"]}, {"id": "O2", "name": "interviewer silhouette"}, {"id": "O3", "name": "backdrop"}, {"id": "O4", "name": "boom microphone"}, {"id": "O5", "name": "camera"}, {"id": "O6", "name": "tripod"}, {"id": "O7", "name": "light stand"}, {"id": "O8", "name": "floor cable"}], "constraints": [{"id": "C1", "type": "attribute", "text": "Sylvester Brewster is standing.", "depends_on": ["O1"]}, {"id": "C2", "type": "layout", "text": "Sylvester Brewster is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Sylvester Brewster is facing the interviewer silhouette.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The interviewer silhouette is at the edge of the frame.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The backdrop is behind Sylvester Brewster.", "depends_on": ["O3", "O1"]}, {"id": "C6", "type": "layout", "text": "The boom microphone hangs above the interview space.", "depends_on": ["O4"]}, {"id": "C7", "type": "relation", "text": "The camera is on the tripod.", "depends_on": ["O5", "O6"]}, {"id": "C8", "type": "relation", "text": "The light stand is positioned to one side of Sylvester Brewster.", "depends_on": ["O7", "O1"]}, {"id": "C9", "type": "layout", "text": "The floor cable crosses the lower foreground.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 4, "relation": 4}} +{"id": "4-entertainment_050", "category": "4-entertainment", "prompt": "Create an image of Heidi Wong seated in the foreground at an indoor desk. A camera mounted on a tripod is directly in front of her. One hand is resting beside the desk microphone, and the other is beside the laptop on the desk. Shelves are visible in the background.", "reference_images": [{"id": "R1", "path": "reference_images/4-entertainment/4-entertainment_050_Heidi_Wong.jpg"}], "reference_image_paths": ["reference_images/4-entertainment/4-entertainment_050_Heidi_Wong.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "Heidi Wong", "reference_ids": ["R1"]}, {"id": "O2", "name": "desk"}, {"id": "O3", "name": "camera"}, {"id": "O4", "name": "tripod"}, {"id": "O5", "name": "microphone"}, {"id": "O6", "name": "laptop"}, {"id": "O7", "name": "shelves"}], "constraints": [{"id": "C1", "type": "relation", "text": "Heidi Wong is seated at the desk.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "layout", "text": "Heidi Wong is in the foreground.", "depends_on": ["O1"]}, {"id": "C3", "type": "attribute", "text": "The desk is located indoors.", "depends_on": ["O2"]}, {"id": "C4", "type": "relation", "text": "The camera is mounted on the tripod.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "relation", "text": "The camera is directly in front of Heidi Wong.", "depends_on": ["O1", "O3"]}, {"id": "C6", "type": "relation", "text": "The tripod is directly in front of Heidi Wong.", "depends_on": ["O1", "O4"]}, {"id": "C7", "type": "relation", "text": "One of Heidi Wong's hands is resting beside the microphone.", "depends_on": ["O1", "O5"]}, {"id": "C8", "type": "relation", "text": "The other of Heidi Wong's hands is resting beside the laptop.", "depends_on": ["O1", "O6"]}, {"id": "C9", "type": "relation", "text": "The microphone is on the desk.", "depends_on": ["O2", "O5"]}, {"id": "C10", "type": "relation", "text": "The laptop is on the desk.", "depends_on": ["O2", "O6"]}, {"id": "C11", "type": "layout", "text": "The shelves are in the background.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 11, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 8}} +{"id": "5-competition_001", "category": "5-competition", "prompt": "Create an image of a post-match stadium scoreboard after the 2024 UEFA Euro Final. Show a close, readable stadium scoreboard above a seating block, with a roof truss crossing the upper frame. A tunnel railing cuts across the lower foreground, and the field touchline runs below the board.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "stadium scoreboard"}, {"id": "O2", "name": "seating block"}, {"id": "O3", "name": "roof truss"}, {"id": "O4", "name": "tunnel railing"}, {"id": "O5", "name": "field touchline"}], "constraints": [{"type": "attribute", "text": "The stadium scoreboard lists Spain 2 and England 1.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The stadium scoreboard is mounted above the seating block.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The roof truss frames the stadium scoreboard from above.", "depends_on": ["O3", "O1"], "id": "C3"}, {"type": "layout", "text": "The tunnel railing runs across the foreground.", "depends_on": ["O4"], "id": "C4"}, {"type": "relation", "text": "The field touchline is below the stadium scoreboard.", "depends_on": ["O5", "O1"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_002", "category": "5-competition", "prompt": "Create an image of a post-match concourse result poster after the 2024 Copa America Final. A large readable concourse result poster is mounted beside a curved seating tier and displays the final score. A roof canopy frames the top of the concourse wall, and a stair rail crosses the foreground beside the pitch edge.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "concourse result poster"}, {"id": "O2", "name": "seating tier"}, {"id": "O3", "name": "roof canopy"}, {"id": "O4", "name": "stair rail"}, {"id": "O5", "name": "pitch edge"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The concourse result poster reads Argentina 1 and Colombia 0.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The seating tier is curved.", "depends_on": ["O2"]}, {"id": "C3", "type": "relation", "text": "The concourse result poster is mounted beside the seating tier.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The roof canopy frames the concourse wall above the concourse result poster.", "depends_on": ["O3", "O1"]}, {"id": "C5", "type": "layout", "text": "The stair rail runs across the foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The pitch edge is below the concourse result poster.", "depends_on": ["O5", "O1"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_003", "category": "5-competition", "prompt": "Create an image of a post-match stadium scoreboard after the 2024 Champions League Final from the touchline side. Show a close, readable stadium scoreboard above a seating arc. A roof beam runs across the upper background, while an aisle barrier and touchline strip form separate lower foreground layers.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "stadium scoreboard"}, {"id": "O2", "name": "seating arc"}, {"id": "O3", "name": "roof beam"}, {"id": "O4", "name": "aisle barrier"}, {"id": "O5", "name": "touchline strip"}], "constraints": [{"type": "attribute", "text": "The stadium scoreboard shows Real Madrid 2 and Borussia Dortmund 0.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The stadium scoreboard is mounted above the seating arc.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The roof beam frames the stadium scoreboard from above.", "depends_on": ["O3", "O1"], "id": "C3"}, {"type": "layout", "text": "The aisle barrier runs across the foreground.", "depends_on": ["O4"], "id": "C4"}, {"type": "relation", "text": "The touchline strip is below the stadium scoreboard.", "depends_on": ["O5", "O1"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_004", "category": "5-competition", "prompt": "Create an image of a post-match stadium scoreboard after the 2024 UEFA Women's Champions League Final from the field-corner side. Show a close, readable stadium scoreboard above the stand. The stadium roof frame sits above the board, and a safety rail crosses the foreground beside the field corner.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "stadium scoreboard"}, {"id": "O2", "name": "stand"}, {"id": "O3", "name": "stadium roof frame"}, {"id": "O4", "name": "safety rail"}, {"id": "O5", "name": "field corner"}], "constraints": [{"type": "attribute", "text": "The stadium scoreboard displays Barcelona 2 and Lyon 0.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The stadium scoreboard is mounted above the stand.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The stadium roof frame is above the stadium scoreboard.", "depends_on": ["O3", "O1"], "id": "C3"}, {"type": "layout", "text": "The safety rail runs across the foreground.", "depends_on": ["O4"], "id": "C4"}, {"type": "relation", "text": "The field corner is below the stadium scoreboard.", "depends_on": ["O5", "O1"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_005", "category": "5-competition", "prompt": "Create an image of a post-match concourse result banner after the 2024 Copa Libertadores Final. A large readable concourse result banner hangs above a seating bank and shows the match result. A roof overhang is directly above the banner, and a concourse rail separates the lower foreground from the grass field edge.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "concourse result banner"}, {"id": "O2", "name": "seating bank"}, {"id": "O3", "name": "roof overhang"}, {"id": "O4", "name": "concourse rail"}, {"id": "O5", "name": "grass field edge"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The concourse result banner lists Atletico Mineiro 1 and Botafogo 3.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The concourse result banner hangs above the seating bank.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The roof overhang frames the concourse result banner from above.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "layout", "text": "The concourse rail runs across the foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The grass field edge is below the concourse result banner.", "depends_on": ["O5", "O1"]}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_006", "category": "5-competition", "prompt": "Create an image after the 2024 Super Bowl from the end-zone side. Show a large readable scoreboard beyond the field edge, with a goalpost standing between the field and the board. A tunnel rail crosses the lower foreground, and a seating block rises behind the scoreboard.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "field edge"}, {"id": "O3", "name": "goalpost"}, {"id": "O4", "name": "seating block"}, {"id": "O5", "name": "tunnel rail"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The final result on the scoreboard reads Kansas City Chiefs 25 and San Francisco 49ers 22.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The scoreboard is beyond the field edge.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The goalpost stands between the field edge and the scoreboard.", "depends_on": ["O3", "O2", "O1"]}, {"id": "C4", "type": "layout", "text": "The tunnel rail runs across the lower foreground.", "depends_on": ["O5"]}, {"id": "C5", "type": "relation", "text": "The seating block rises behind the scoreboard.", "depends_on": ["O4", "O1"]}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_007", "category": "5-competition", "prompt": "Create an image after the 2024 College Football Playoff National Championship with a large readable scoreboard beyond the field strip and a goalpost below the board. A sideline barrier runs across the lower foreground, and a seating section rises behind the scoreboard.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "field strip"}, {"id": "O3", "name": "goalpost"}, {"id": "O4", "name": "seating section"}, {"id": "O5", "name": "sideline barrier"}], "constraints": [{"type": "attribute", "text": "The scoreboard shows Michigan 34 and Washington 13.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The goalpost stands below the scoreboard.", "depends_on": ["O3", "O1"], "id": "C2"}, {"type": "relation", "text": "The scoreboard is positioned beyond the field strip.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "layout", "text": "The sideline barrier runs across the foreground.", "depends_on": ["O5"], "id": "C4"}, {"type": "relation", "text": "The seating section rises behind the scoreboard.", "depends_on": ["O4", "O1"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_008", "category": "5-competition", "prompt": "Create an image of an indoor arena scoreboard after the 2024 NBA Finals Game 5 from a midcourt view. Show a large readable scoreboard suspended above the center circle. The court floor stretches across the foreground, a basketball hoop backboard sits below one side of the board, and the seating bowl wraps around the far side.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "circle"}, {"id": "O3", "name": "court floor"}, {"id": "O4", "name": "basketball hoop backboard"}, {"id": "O5", "name": "seating bowl"}], "constraints": [{"type": "attribute", "text": "The scoreboard displays Boston Celtics 106 and Dallas Mavericks 88.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The scoreboard is suspended above the circle.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The basketball hoop backboard sits below one side of the scoreboard.", "depends_on": ["O4", "O1"], "id": "C3"}, {"type": "layout", "text": "The court floor stretches across the foreground.", "depends_on": ["O3"], "id": "C4"}, {"type": "relation", "text": "The seating bowl wraps around the court floor.", "depends_on": ["O5", "O3"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_009", "category": "5-competition", "prompt": "Create an image after the 2024 WNBA Finals clinching game from the baseline side. A courtside broadcast monitor near the painted lane shows the final score line. The hoop sits behind the monitor, the court floor occupies the foreground, and the seating bowl sits beyond the court.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "courtside broadcast monitor"}, {"id": "O2", "name": "painted lane"}, {"id": "O3", "name": "court floor"}, {"id": "O4", "name": "hoop"}, {"id": "O5", "name": "seating bowl"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The courtside broadcast monitor lists New York Liberty 67 and Minnesota Lynx 62.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The courtside broadcast monitor is near the painted lane.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The hoop sits behind the courtside broadcast monitor.", "depends_on": ["O4", "O1"]}, {"id": "C4", "type": "layout", "text": "The court floor occupies the foreground.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The seating bowl sits beyond the court floor.", "depends_on": ["O5", "O3"]}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_010", "category": "5-competition", "prompt": "Create an image of a post-game press conference table after the 2024 NCAA Men's Basketball Championship Game. A press conference result placard on the press table shows the final score. Two tabletop microphones sit beside the placard, a championship backdrop fills the background, and a strip of hardwood floor spans the lower foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "press conference result placard"}, {"id": "O2", "name": "press table"}, {"id": "O3", "name": "tabletop microphones"}, {"id": "O4", "name": "championship backdrop"}, {"id": "O5", "name": "hardwood floor"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The press conference result placard reads UConn 75 and Purdue 60.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The press conference result placard is on the press table.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "Exactly two tabletop microphones sit beside the press conference result placard.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "relation", "text": "The tabletop microphones sit on the press table.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The championship backdrop fills the background.", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The hardwood floor spans the lower foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_011", "category": "5-competition", "prompt": "Create an image of an arena concourse bracket board after the 2024 NCAA Women's Basketball Championship Game. A large readable championship bracket board is mounted on the arena concourse wall and shows the final score. A court entrance sits below the board, a handrail crosses the lower foreground, and the seating bowl is visible beyond the entrance.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "championship bracket board"}, {"id": "O2", "name": "arena concourse wall"}, {"id": "O3", "name": "court entrance"}, {"id": "O4", "name": "handrail"}, {"id": "O5", "name": "seating bowl"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The championship bracket board shows South Carolina 87 and Iowa 75.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The championship bracket board is mounted on the arena concourse wall.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The court entrance sits below the championship bracket board.", "depends_on": ["O3", "O1"]}, {"id": "C4", "type": "layout", "text": "The handrail crosses the lower foreground.", "depends_on": ["O4"]}, {"id": "C5", "type": "relation", "text": "The seating bowl is visible beyond the court entrance.", "depends_on": ["O5", "O3"]}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_012", "category": "5-competition", "prompt": "Create an image of a cricket stadium result board after the 2024 ICC Men's T20 World Cup Final. Show a large readable stadium result board mounted above a pavilion walkway beyond the grass outfield. A boundary rope cuts across the lower foreground, a white sight screen stands to one side of the board, and a drinks cart is parked near the walkway.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "stadium result board"}, {"id": "O2", "name": "grass outfield"}, {"id": "O3", "name": "pavilion walkway"}, {"id": "O4", "name": "boundary rope"}, {"id": "O5", "name": "sight screen"}, {"id": "O6", "name": "drinks cart"}], "constraints": [{"type": "attribute", "text": "The stadium result board shows India with 176 runs for 7 wickets.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The stadium result board shows South Africa with 169 runs for 8 wickets.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The stadium result board is mounted above the pavilion walkway.", "depends_on": ["O1", "O3"], "id": "C3"}, {"type": "layout", "text": "The grass outfield is in front of the pavilion walkway.", "depends_on": ["O2"], "id": "C4"}, {"type": "layout", "text": "The boundary rope cuts across the lower foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The sight screen stands to one side of the stadium result board.", "depends_on": ["O5", "O1"], "id": "C6"}, {"type": "relation", "text": "The drinks cart is parked near the pavilion walkway.", "depends_on": ["O6", "O3"], "id": "C7"}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 3}} +{"id": "5-competition_013", "category": "5-competition", "prompt": "Create an image of a cricket stadium result board after the 2024 ICC Women's T20 World Cup Final. Show a large readable stadium result board beside the boundary boards at the edge of the outfield. A curved boundary rope crosses the foreground, a floodlight tower rises behind the board, and a pair of cricket stumps stands in the grass near the camera.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "stadium result board"}, {"id": "O2", "name": "boundary boards"}, {"id": "O3", "name": "outfield"}, {"id": "O4", "name": "boundary rope"}, {"id": "O5", "name": "floodlight tower"}, {"id": "O6", "name": "cricket stumps"}], "constraints": [{"type": "attribute", "text": "The stadium result board shows New Zealand with 158 runs for 5 wickets.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The stadium result board shows South Africa with 126 runs for 9 wickets.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The stadium result board stands beside the boundary boards.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The boundary boards are at the edge of the outfield.", "depends_on": ["O2", "O3"], "id": "C4"}, {"type": "attribute", "text": "The boundary rope is curved.", "depends_on": ["O4"], "id": "C5"}, {"type": "layout", "text": "The boundary rope crosses the foreground.", "depends_on": ["O4"], "id": "C6"}, {"type": "relation", "text": "The floodlight tower rises behind the stadium result board.", "depends_on": ["O5", "O1"], "id": "C7"}, {"type": "attribute", "text": "Exactly two cricket stumps stand in the grass near the camera.", "depends_on": ["O6"], "id": "C8"}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 4, "layout": 1, "relation": 3}} +{"id": "5-competition_014", "category": "5-competition", "prompt": "Create an image of a cricket stadium result board after the 2024 ICC Under-19 Men's Cricket World Cup Final. Show a large readable stadium result board fixed to a pavilion balcony beyond the field boundary. A boundary rope marks the lower foreground, a pitch roller is parked beside the balcony, and outfield grass surrounds the scene.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "stadium result board"}, {"id": "O2", "name": "pavilion balcony"}, {"id": "O3", "name": "field boundary"}, {"id": "O4", "name": "boundary rope"}, {"id": "O5", "name": "pitch roller"}, {"id": "O6", "name": "outfield grass"}], "constraints": [{"type": "attribute", "text": "The stadium result board shows Australia U19 with 253 runs for 7 wickets.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The stadium result board shows India U19 with 174 runs.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The stadium result board is fixed to the pavilion balcony.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The pavilion balcony is beyond the field boundary.", "depends_on": ["O2", "O3"], "id": "C4"}, {"type": "layout", "text": "The boundary rope marks the lower foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The pitch roller is parked beside the pavilion balcony.", "depends_on": ["O5", "O2"], "id": "C6"}, {"type": "layout", "text": "The outfield grass surrounds the scene.", "depends_on": ["O6"], "id": "C7"}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 3}} +{"id": "5-competition_015", "category": "5-competition", "prompt": "Create an image after the 2024 Wimbledon Men's Final showing a large readable set scoreboard built into a grass-court wall near the umpire chair. The tennis net cuts diagonally across the midground, and the grass court edge runs through the lower foreground. A towel box sits below the scoreboard, with spectator seating visible above the wall.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "set scoreboard"}, {"id": "O2", "name": "grass-court wall"}, {"id": "O3", "name": "umpire chair"}, {"id": "O4", "name": "tennis net"}, {"id": "O5", "name": "grass court edge"}, {"id": "O6", "name": "towel box"}, {"id": "O7", "name": "spectator seating"}], "constraints": [{"type": "attribute", "text": "The set scoreboard shows C. Alcaraz as a player row.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The set scoreboard shows N. Djokovic as a player row.", "depends_on": ["O1"], "id": "C2"}, {"type": "attribute", "text": "The set scoreboard shows set columns 6, 6, and 7 for C. Alcaraz.", "depends_on": ["O1"], "id": "C3"}, {"type": "attribute", "text": "The set scoreboard shows set columns 2, 2, and 6 for N. Djokovic.", "depends_on": ["O1"], "id": "C4"}, {"type": "relation", "text": "The set scoreboard is built into the grass-court wall.", "depends_on": ["O1", "O2"], "id": "C5"}, {"type": "relation", "text": "The umpire chair stands near the set scoreboard.", "depends_on": ["O3", "O1"], "id": "C6"}, {"type": "layout", "text": "The tennis net cuts diagonally across the midground.", "depends_on": ["O4"], "id": "C7"}, {"type": "layout", "text": "The grass court edge runs through the lower foreground.", "depends_on": ["O5"], "id": "C8"}, {"type": "relation", "text": "The towel box sits below the set scoreboard.", "depends_on": ["O6", "O1"], "id": "C9"}, {"type": "relation", "text": "The spectator seating is visible above the grass-court wall.", "depends_on": ["O7", "O2"], "id": "C10"}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 4}} +{"id": "5-competition_016", "category": "5-competition", "prompt": "Create an image after the 2024 Wimbledon Women's Final showing a large readable courtside winner placard beside the umpire chair from the net-post side. The placard shows the match winner and final set score. The net post stands near the placard, the court sideline crosses the lower foreground, and a courtside bench sits beyond the sideline.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "courtside winner placard"}, {"id": "O2", "name": "net post"}, {"id": "O3", "name": "umpire chair"}, {"id": "O4", "name": "court sideline"}, {"id": "O5", "name": "courtside bench"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The courtside winner placard shows Barbora Krejcikova defeated Jasmine Paolini.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The courtside winner placard shows the set score 6-2, 2-6, 6-4.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The courtside winner placard is beside the umpire chair.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The net post stands near the courtside winner placard.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "layout", "text": "The court sideline crosses the lower foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The courtside bench sits beyond the court sideline.", "depends_on": ["O5", "O4"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_017", "category": "5-competition", "prompt": "Create an image after the 2024 Roland Garros Men's Final showing a large readable set scoreboard on a freestanding clay-court panel behind the baseline. A clay sweep brush lies in front of the panel, and a scorekeeper table sits to the side of the board. The tennis net runs across the midground, while orange clay fills the lower foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "set scoreboard"}, {"id": "O2", "name": "clay-court panel"}, {"id": "O3", "name": "clay sweep brush"}, {"id": "O4", "name": "scorekeeper table"}, {"id": "O5", "name": "tennis net"}, {"id": "O6", "name": "orange clay"}], "constraints": [{"type": "attribute", "text": "The set scoreboard shows Carlos Alcaraz as a player row.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The set scoreboard shows Alexander Zverev as a player row.", "depends_on": ["O1"], "id": "C2"}, {"type": "attribute", "text": "The set scoreboard shows set columns 6, 2, 5, 6, and 6 for Carlos Alcaraz.", "depends_on": ["O1"], "id": "C3"}, {"type": "attribute", "text": "The set scoreboard shows set columns 3, 6, 7, 1, and 2 for Alexander Zverev.", "depends_on": ["O1"], "id": "C4"}, {"type": "relation", "text": "The set scoreboard is on the clay-court panel.", "depends_on": ["O1", "O2"], "id": "C5"}, {"type": "relation", "text": "The clay sweep brush lies in front of the clay-court panel.", "depends_on": ["O3", "O2"], "id": "C6"}, {"type": "relation", "text": "The scorekeeper table sits to the side of the set scoreboard.", "depends_on": ["O4", "O1"], "id": "C7"}, {"type": "layout", "text": "The tennis net runs across the midground.", "depends_on": ["O5"], "id": "C8"}, {"type": "layout", "text": "The orange clay fills the lower foreground.", "depends_on": ["O6"], "id": "C9"}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 3}} +{"id": "5-competition_018", "category": "5-competition", "prompt": "Create an image after the 2024 Roland Garros Women's Final showing a clay-court result sheet clipped to a courtside clipboard stand near the baseline corner. A net post stands near the stand, the baseline strip crosses the lower foreground, and a clay service line runs beside it.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "clay-court result sheet"}, {"id": "O2", "name": "courtside clipboard stand"}, {"id": "O3", "name": "net post"}, {"id": "O4", "name": "baseline strip"}, {"id": "O5", "name": "clay service line"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The clay-court result sheet shows Iga Swiatek defeated Jasmine Paolini.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The clay-court result sheet shows the set score 6-2, 6-1.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The clay-court result sheet is clipped to the courtside clipboard stand.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The net post stands near the courtside clipboard stand.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The baseline strip crosses the lower foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The clay service line runs beside the baseline strip.", "depends_on": ["O5", "O4"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_019", "category": "5-competition", "prompt": "Create an image after the 2024 Australian Open Men's Final showing a large readable set scoreboard beside a courtside chair. The set scoreboard is behind the tennis net. A hard-court boundary runs through the lower foreground, and spectator seating lines the far side of the court.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "set scoreboard"}, {"id": "O2", "name": "tennis net"}, {"id": "O3", "name": "courtside chair"}, {"id": "O4", "name": "hard-court boundary"}, {"id": "O5", "name": "spectator seating"}], "constraints": [{"type": "attribute", "text": "The set scoreboard shows Jannik Sinner as a player row.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The set scoreboard shows Daniil Medvedev as a player row.", "depends_on": ["O1"], "id": "C2"}, {"type": "attribute", "text": "The set scoreboard shows set columns 3, 3, 6, 6, and 6 for Jannik Sinner.", "depends_on": ["O1"], "id": "C3"}, {"type": "attribute", "text": "The set scoreboard shows set columns 6, 6, 4, 4, and 3 for Daniil Medvedev.", "depends_on": ["O1"], "id": "C4"}, {"type": "relation", "text": "The set scoreboard stands beside the courtside chair.", "depends_on": ["O1", "O3"], "id": "C5"}, {"type": "relation", "text": "The set scoreboard is behind the tennis net.", "depends_on": ["O2", "O1"], "id": "C6"}, {"type": "layout", "text": "The hard-court boundary runs through the lower foreground.", "depends_on": ["O4"], "id": "C7"}, {"type": "layout", "text": "The spectator seating lines the far side of the court.", "depends_on": ["O5"], "id": "C8"}], "num_entities": 5, "num_constraints": 8, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 2}} +{"id": "5-competition_020", "category": "5-competition", "prompt": "Create an image after the 2024 Australian Open Women's Final showing a champion photo wall beside a player bench. The champion photo wall shows the winner and final set score. A ball cart stands in front of the player bench, the baseline strip crosses the lower foreground, and the court wall sits behind the bench.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "champion photo wall"}, {"id": "O2", "name": "player bench"}, {"id": "O3", "name": "ball cart"}, {"id": "O4", "name": "baseline strip"}, {"id": "O5", "name": "court wall"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The champion photo wall shows Aryna Sabalenka defeated Zheng Qinwen.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The champion photo wall shows the set score 6-3, 6-2.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The champion photo wall is beside the player bench.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The ball cart stands in front of the player bench.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The baseline strip crosses the lower foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The court wall sits behind the player bench.", "depends_on": ["O5", "O2"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_021", "category": "5-competition", "prompt": "Create an image after the 2024 US Open Men's Final showing a camera rail monitor mounted beside the court wall. The camera rail monitor displays the final set score. A service box line crosses the lower foreground, a player bench sits beside the court wall, and a camera rail runs along the same side of the court.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "camera rail monitor"}, {"id": "O2", "name": "court wall"}, {"id": "O3", "name": "service box line"}, {"id": "O4", "name": "player bench"}, {"id": "O5", "name": "camera rail"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The camera rail monitor shows Jannik Sinner defeated Taylor Fritz.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The camera rail monitor shows the set score 6-3, 6-4, 7-5.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The camera rail monitor is mounted beside the court wall.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The service box line crosses the lower foreground.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The player bench sits beside the court wall.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "layout", "text": "The camera rail runs across the lower foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_022", "category": "5-competition", "prompt": "Create an image after the 2024 US Open Women's Final showing a media table result placard near the court. A camera tripod stands beside the media table. The hard-court boundary fills the lower foreground, and spectator seating sits behind the media table.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "media table result placard"}, {"id": "O2", "name": "media table"}, {"id": "O3", "name": "camera tripod"}, {"id": "O4", "name": "hard-court boundary"}, {"id": "O5", "name": "spectator seating"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The media table result placard shows Aryna Sabalenka defeated Jessica Pegula.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The media table result placard shows the set score 7-5, 7-5.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The media table result placard rests on the media table.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The camera tripod stands beside the media table.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The hard-court boundary fills the lower foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The spectator seating sits behind the media table.", "depends_on": ["O5", "O2"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_023", "category": "5-competition", "prompt": "Create an image after the 2024 ATP Finals Championship Match showing a large readable set scoreboard mounted on the indoor seating wall. An advertising board sits below the scoreboard. The baseline strip crosses the lower foreground, and the court net runs across the midground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "set scoreboard"}, {"id": "O2", "name": "indoor seating wall"}, {"id": "O3", "name": "advertising board"}, {"id": "O4", "name": "baseline strip"}, {"id": "O5", "name": "court net"}], "constraints": [{"type": "attribute", "text": "The set scoreboard shows Jannik Sinner as a player row.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The set scoreboard shows Taylor Fritz as a player row.", "depends_on": ["O1"], "id": "C2"}, {"type": "attribute", "text": "The set scoreboard shows set columns 6 and 6 for Jannik Sinner.", "depends_on": ["O1"], "id": "C3"}, {"type": "attribute", "text": "The set scoreboard shows set columns 4 and 4 for Taylor Fritz.", "depends_on": ["O1"], "id": "C4"}, {"type": "relation", "text": "The set scoreboard is mounted on the indoor seating wall.", "depends_on": ["O1", "O2"], "id": "C5"}, {"type": "relation", "text": "The advertising board sits below the set scoreboard.", "depends_on": ["O3", "O1"], "id": "C6"}, {"type": "layout", "text": "The baseline strip crosses the lower foreground.", "depends_on": ["O4"], "id": "C7"}, {"type": "layout", "text": "The court net runs across the midground.", "depends_on": ["O5"], "id": "C8"}], "num_entities": 5, "num_constraints": 8, "constraint_type_counts": {"attribute": 4, "layout": 2, "relation": 2}} +{"id": "5-competition_024", "category": "5-competition", "prompt": "Create an image after the 2024 WTA Finals Championship Match showing a rolling champion display beside the player bench. The rolling champion display shows the winner and final set score. The tennis net runs across the midground. The hard-court boundary crosses the lower foreground, and an indoor seating wall rises behind the rolling champion display.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "rolling champion display"}, {"id": "O2", "name": "player bench"}, {"id": "O3", "name": "tennis net"}, {"id": "O4", "name": "hard-court boundary"}, {"id": "O5", "name": "indoor seating wall"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The rolling champion display shows Coco Gauff defeated Zheng Qinwen.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The rolling champion display shows the set score 3-6, 6-4, 7-6.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The rolling champion display is beside the player bench.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The tennis net runs across the midground.", "depends_on": ["O3"]}, {"id": "C5", "type": "layout", "text": "The hard-court boundary crosses the lower foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The indoor seating wall rises behind the rolling champion display.", "depends_on": ["O5", "O1"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_025", "category": "5-competition", "prompt": "Create an image of a sideline press result placard after the 2024 Davis Cup Final. A large readable sideline press result placard sits on a sideline table near the net post. A team-side barrier runs through the midground, and the court surface fills the lower foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "sideline press result placard"}, {"id": "O2", "name": "net post"}, {"id": "O3", "name": "sideline table"}, {"id": "O4", "name": "team-side barrier"}, {"id": "O5", "name": "court surface"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The sideline press result placard shows Italy with a team match score of 2.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The sideline press result placard shows Netherlands with a team match score of 0.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The sideline press result placard sits on the sideline table.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The sideline table is near the net post.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The team-side barrier runs across the midground.", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The court surface fills the lower foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_026", "category": "5-competition", "prompt": "Create an image of a team result placard after the 2024 Billie Jean King Cup Final. A large readable team result placard stands on a sideline trophy table beside the court net. A sideline bench is visible behind the table, and the court boundary crosses the lower foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "team result placard"}, {"id": "O2", "name": "court net"}, {"id": "O3", "name": "sideline trophy table"}, {"id": "O4", "name": "sideline bench"}, {"id": "O5", "name": "court boundary"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The team result placard shows Italy with a team match score of 2.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The team result placard shows Slovakia with a team match score of 0.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The team result placard stands on the sideline trophy table.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "relation", "text": "The sideline trophy table is beside the court net.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "relation", "text": "The sideline bench is visible behind the sideline trophy table.", "depends_on": ["O4", "O3"]}, {"id": "C6", "type": "layout", "text": "The court boundary crosses the lower foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_027", "category": "5-competition", "prompt": "Create an image after the 2024 NCAA Men's Tennis Team Championship Final showing a large readable tournament bracket board near the court net. The bracket board shows the team match result. Place the umpire chair beside the net, with a barrier crossing the midground and the court surface in the foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "tournament bracket board"}, {"id": "O2", "name": "court net"}, {"id": "O3", "name": "umpire chair"}, {"id": "O4", "name": "barrier"}, {"id": "O5", "name": "court surface"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The tournament bracket board shows TCU with a team match score of 4.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The tournament bracket board shows Texas with a team match score of 3.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The tournament bracket board is beside the court net.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The umpire chair is beside the court net.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The barrier crosses the midground.", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The court surface fills the lower foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_028", "category": "5-competition", "prompt": "Create an image of a team bench result sheet after the 2024 NCAA Women's Tennis Team Championship Final. A large readable team bench result sheet is posted behind the team bench. The court net runs across the midground, a chair row sits beside the team bench, and the court edge occupies the lower foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "team bench result sheet"}, {"id": "O2", "name": "team bench"}, {"id": "O3", "name": "court net"}, {"id": "O4", "name": "chair row"}, {"id": "O5", "name": "court edge"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The team bench result sheet shows Texas A&M with a team match score of 4.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The team bench result sheet shows Georgia with a team match score of 1.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The team bench result sheet is posted behind the team bench.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "layout", "text": "The court net runs across the midground.", "depends_on": ["O3"]}, {"id": "C5", "type": "relation", "text": "The chair row sits beside the team bench.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "layout", "text": "The court edge occupies the foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_029", "category": "5-competition", "prompt": "Create an image of an esports arena result screen for the 2024 League of Legends World Championship Final. Show a large readable LED result screen rising behind the stage desk. Hang the overhead lighting truss above the screen, with at least three audience silhouettes in the foreground. The screen support frame runs along the stage below the display.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "LED result screen"}, {"id": "O2", "name": "stage desk"}, {"id": "O3", "name": "overhead lighting truss"}, {"id": "O4", "name": "audience silhouettes"}, {"id": "O5", "name": "screen support frame"}], "constraints": [{"type": "attribute", "text": "The LED result screen shows T1 with a series score of 3.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The LED result screen shows Bilibili Gaming with a series score of 2.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The LED result screen rises behind the stage desk.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The overhead lighting truss hangs above the LED result screen.", "depends_on": ["O3", "O1"], "id": "C4"}, {"type": "layout", "text": "The audience silhouettes fill the lower foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "attribute", "text": "At least three audience silhouettes are present.", "depends_on": ["O4"], "id": "C6"}, {"type": "relation", "text": "The screen support frame runs below the LED result screen.", "depends_on": ["O5", "O1"], "id": "C7"}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 3}} +{"id": "5-competition_030", "category": "5-competition", "prompt": "Create an image of a side-stage LED result screen for the 2024 Valorant Champions Final. Show a large readable LED result screen standing beside the player desk platform. Vertical light columns flank the screen, at least three audience silhouettes line the lower foreground, and a floor cable cover runs below the display.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "LED result screen"}, {"id": "O2", "name": "player desk platform"}, {"id": "O3", "name": "vertical light columns"}, {"id": "O4", "name": "audience silhouettes"}, {"id": "O5", "name": "floor cable cover"}], "constraints": [{"type": "attribute", "text": "The LED result screen shows EDward Gaming with a series score of 3.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The LED result screen shows Team Heretics with a series score of 2.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The LED result screen stands beside the player desk platform.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The vertical light columns flank the LED result screen.", "depends_on": ["O3", "O1"], "id": "C4"}, {"type": "layout", "text": "The audience silhouettes line the lower foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "attribute", "text": "At least three audience silhouettes are present.", "depends_on": ["O4"], "id": "C6"}, {"type": "relation", "text": "The floor cable cover runs below the LED result screen.", "depends_on": ["O5", "O1"], "id": "C7"}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 3}} +{"id": "5-competition_031", "category": "5-competition", "prompt": "Create an image of an esports arena result screen for the 2024 Dota 2 The International Grand Final. Show a large readable LED result screen rising behind the team desk. A ceiling light grid hangs above the screen, at least three audience silhouettes occupy the lower foreground, and the stage platform edge runs below the display.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "LED result screen"}, {"id": "O2", "name": "team desk"}, {"id": "O3", "name": "ceiling light grid"}, {"id": "O4", "name": "audience silhouettes"}, {"id": "O5", "name": "stage platform edge"}], "constraints": [{"type": "attribute", "text": "The LED result screen shows Team Liquid with a series score of 3.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The LED result screen shows Gaimin Gladiators with a series score of 0.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The LED result screen rises behind the team desk.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The ceiling light grid hangs above the LED result screen.", "depends_on": ["O3", "O1"], "id": "C4"}, {"type": "layout", "text": "The audience silhouettes occupy the lower foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "attribute", "text": "At least three audience silhouettes are present.", "depends_on": ["O4"], "id": "C6"}, {"type": "relation", "text": "The stage platform edge runs below the LED result screen.", "depends_on": ["O5", "O1"], "id": "C7"}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 3}} +{"id": "5-competition_032", "category": "5-competition", "prompt": "Create an image after the 2024 Stanley Cup Final Game 7 showing a large readable cube scoreboard suspended above the ice surface. Rink boards enclose the playing area below it, and a blue line marking anchors the lower foreground. The seating bowl lines the far side of the rink.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "cube scoreboard"}, {"id": "O2", "name": "ice surface"}, {"id": "O3", "name": "rink boards"}, {"id": "O4", "name": "line marking"}, {"id": "O5", "name": "seating bowl"}], "constraints": [{"type": "attribute", "text": "The cube scoreboard shows Florida Panthers with a final score of 2.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The cube scoreboard shows Edmonton Oilers with a final score of 1.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The blue line marking is on the ice surface.", "depends_on": ["O4", "O2"], "id": "C3"}, {"type": "relation", "text": "The cube scoreboard is suspended above the ice surface.", "depends_on": ["O1", "O2"], "id": "C4"}, {"type": "relation", "text": "The rink boards enclose the ice surface.", "depends_on": ["O3", "O2"], "id": "C5"}, {"type": "layout", "text": "The blue line marking anchors the foreground.", "depends_on": ["O4"], "id": "C6"}, {"type": "layout", "text": "The seating bowl lines the far side of the rink.", "depends_on": ["O5"], "id": "C7"}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 3}} +{"id": "5-competition_033", "category": "5-competition", "prompt": "Create an image after the 2024 NCAA Men's Frozen Four Championship from rink level. Show a large readable scoreboard hanging above the center-ice circle. The center-ice circle sits on the ice surface in the midground, rink boards surround the ice, and seating rows rise beyond the boards.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "center-ice circle"}, {"id": "O3", "name": "rink boards"}, {"id": "O4", "name": "ice surface"}, {"id": "O5", "name": "seating rows"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The scoreboard lists Denver 2 and Boston College 0.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The scoreboard is suspended above the center-ice circle.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "relation", "text": "The center-ice circle is on the ice surface.", "depends_on": ["O2", "O4"]}, {"id": "C4", "type": "relation", "text": "The rink boards surround the ice surface.", "depends_on": ["O3", "O4"]}, {"id": "C5", "type": "layout", "text": "The ice surface spans the foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The seating rows rise beyond the rink boards.", "depends_on": ["O5", "O3"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 4}} +{"id": "5-competition_034", "category": "5-competition", "prompt": "Create an image after the 2024 NCAA Women's Frozen Four Championship showing a large readable scoreboard suspended above the ice surface. A rink enclosure surrounds the lower rink area, and a red line crosses the ice below the board. The arena seating section lines the far side of the rink.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "ice surface"}, {"id": "O3", "name": "rink enclosure"}, {"id": "O4", "name": "red line"}, {"id": "O5", "name": "arena seating section"}], "constraints": [{"type": "attribute", "text": "The final result on the scoreboard reads Ohio State 1 and Wisconsin 0.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The red line crosses the ice surface.", "depends_on": ["O4", "O2"], "id": "C2"}, {"type": "relation", "text": "The scoreboard is suspended above the ice surface.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The rink enclosure surrounds the ice surface.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The red line crosses the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "layout", "text": "The arena seating section lines the far side of the rink.", "depends_on": ["O5"], "id": "C6"}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 3}} +{"id": "5-competition_035", "category": "5-competition", "prompt": "Create an image after the 2024 IIHF World Championship Final showing a large readable cube scoreboard suspended above the goal crease. Rink boards enclose the goal crease, with the ice sheet visible in the foreground. The seating bowl rises behind the boards.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "cube scoreboard"}, {"id": "O2", "name": "goal crease"}, {"id": "O3", "name": "rink boards"}, {"id": "O4", "name": "ice sheet"}, {"id": "O5", "name": "seating bowl"}], "constraints": [{"type": "attribute", "text": "The cube scoreboard shows Czechia 2 and Switzerland 0.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The cube scoreboard is suspended above the goal crease.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The rink boards enclose the goal crease.", "depends_on": ["O3", "O2"], "id": "C3"}, {"type": "layout", "text": "The ice sheet spans the foreground.", "depends_on": ["O4"], "id": "C4"}, {"type": "relation", "text": "The seating bowl rises behind the rink boards.", "depends_on": ["O5", "O3"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_036", "category": "5-competition", "prompt": "Create an image after the 2024 IIHF Women's World Championship Final showing a large readable cube scoreboard above the ice surface. Transparent plexiglass encloses the rink below it, and a faceoff circle anchors the foreground. Arena seating steps upward beyond the plexiglass.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "cube scoreboard"}, {"id": "O2", "name": "ice surface"}, {"id": "O3", "name": "transparent plexiglass"}, {"id": "O4", "name": "faceoff circle"}, {"id": "O5", "name": "arena seating"}], "constraints": [{"type": "attribute", "text": "The cube scoreboard displays Canada 6 and United States 5.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The faceoff circle is on the ice surface.", "depends_on": ["O4", "O2"], "id": "C2"}, {"type": "relation", "text": "The cube scoreboard is suspended above the ice surface.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The transparent plexiglass encloses the ice surface.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The faceoff circle anchors the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The arena seating steps upward beyond the transparent plexiglass.", "depends_on": ["O5", "O3"], "id": "C6"}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 4}} +{"id": "5-competition_037", "category": "5-competition", "prompt": "Create an image after the 2024 World Series Game 5 showing a large readable outfield scoreboard mounted above the outfield wall. Warning track dirt runs along the base of the wall, outfield grass fills the foreground, and protective netting stands near the wall.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "outfield scoreboard"}, {"id": "O2", "name": "outfield wall"}, {"id": "O3", "name": "warning track dirt"}, {"id": "O4", "name": "outfield grass"}, {"id": "O5", "name": "protective netting"}], "constraints": [{"type": "attribute", "text": "The outfield scoreboard shows Los Angeles Dodgers with a run total of 7.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The outfield scoreboard shows New York Yankees with a run total of 6.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The outfield scoreboard is mounted above the outfield wall.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The warning track dirt runs along the base of the outfield wall.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The outfield grass fills the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The protective netting is near the outfield wall.", "depends_on": ["O5", "O2"], "id": "C6"}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_038", "category": "5-competition", "prompt": "Create an image after the 2024 Men's College World Series Finals Game 3 from an infield-facing angle. Show a large readable outfield scoreboard above the outfield wall. A warning track runs in front of the wall, the grass outfield occupies the lower foreground, and an outfield seating section sits near the wall.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "outfield scoreboard"}, {"id": "O2", "name": "outfield wall"}, {"id": "O3", "name": "warning track"}, {"id": "O4", "name": "grass outfield"}, {"id": "O5", "name": "outfield seating section"}], "constraints": [{"type": "attribute", "text": "The outfield scoreboard shows Tennessee with a run total of 6.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The outfield scoreboard shows Texas A&M with a run total of 5.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The outfield scoreboard is mounted above the outfield wall.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The warning track runs in front of the outfield wall.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The grass outfield occupies the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The outfield seating section sits near the outfield wall.", "depends_on": ["O5", "O2"], "id": "C6"}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_039", "category": "5-competition", "prompt": "Create an image after the 2024 Women's College World Series Finals Game 2 from the home-plate side. Show a large readable outfield scoreboard beyond the left-field fence. A foul-line marker sits in the lower foreground, the outfield grass runs through the midground, and warning track dirt lies at the base of the fence below the board.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "outfield scoreboard"}, {"id": "O2", "name": "left-field fence"}, {"id": "O3", "name": "warning track dirt"}, {"id": "O4", "name": "outfield grass"}, {"id": "O5", "name": "foul-line marker"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The outfield scoreboard shows Oklahoma with a run total of 8.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The outfield scoreboard shows Texas with a run total of 4.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The outfield scoreboard stands beyond the left-field fence.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The warning track dirt lies at the base of the left-field fence.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The outfield grass runs through the midground.", "depends_on": ["O4"]}, {"id": "C6", "type": "layout", "text": "The foul-line marker sits in the lower foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_040", "category": "5-competition", "prompt": "Create an image after the 2024 Little League Baseball World Series Championship Game from a low spectator-berm view. Show a large readable outfield scoreboard above the outfield wall. The spectator berm occupies the foreground, grass outfield runs between the berm and the wall, and protective netting stands near the outfield wall.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "outfield scoreboard"}, {"id": "O2", "name": "outfield wall"}, {"id": "O3", "name": "grass outfield"}, {"id": "O4", "name": "spectator berm"}, {"id": "O5", "name": "protective netting"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The outfield scoreboard shows Florida with a run total of 2.", "depends_on": ["O1"]}, {"id": "C2", "type": "attribute", "text": "The outfield scoreboard shows Chinese Taipei with a run total of 1.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The outfield scoreboard rises over the outfield wall.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "The grass outfield runs in front of the outfield wall.", "depends_on": ["O3", "O2"]}, {"id": "C5", "type": "layout", "text": "The spectator berm occupies the foreground.", "depends_on": ["O4"]}, {"id": "C6", "type": "relation", "text": "The grass outfield is between the spectator berm and the outfield wall.", "depends_on": ["O3", "O4", "O2"]}, {"id": "C7", "type": "relation", "text": "The protective netting is near the outfield wall.", "depends_on": ["O5", "O2"]}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 4}} +{"id": "5-competition_041", "category": "5-competition", "prompt": "Create an image of a volleyball scoreboard after the 2024 NCAA Men's Volleyball Championship Match. Show a large readable end-line scoreboard beyond the volleyball net. Place the referee stand beside the net, with the end-line boundary crossing the lower foreground. Court-end seating rises behind the end line.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "end-line scoreboard"}, {"id": "O2", "name": "volleyball net"}, {"id": "O3", "name": "referee stand"}, {"id": "O4", "name": "end-line boundary"}, {"id": "O5", "name": "court-end seating"}], "constraints": [{"type": "attribute", "text": "The end-line scoreboard shows UCLA with a match score of 3.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The end-line scoreboard shows Long Beach State with a match score of 1.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The volleyball net stretches in front of the end-line scoreboard.", "depends_on": ["O2", "O1"], "id": "C3"}, {"type": "relation", "text": "The referee stand is beside the volleyball net.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The end-line boundary crosses the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The court-end seating rises behind the end-line boundary.", "depends_on": ["O5", "O4"], "id": "C6"}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_042", "category": "5-competition", "prompt": "Create an image of a scorer-table volleyball result board after the 2024 NCAA Women's Volleyball Championship Match. Show a large readable end-line scoreboard mounted above the scorer table. The volleyball net stretches across the midground, a court line crosses the lower foreground, and the court-end seating section sits behind the table.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "end-line scoreboard"}, {"id": "O2", "name": "scorer table"}, {"id": "O3", "name": "volleyball net"}, {"id": "O4", "name": "court line"}, {"id": "O5", "name": "court-end seating section"}], "constraints": [{"type": "attribute", "text": "The end-line scoreboard shows Penn State with a match score of 3.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The end-line scoreboard shows Louisville with a match score of 1.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The end-line scoreboard is mounted above the scorer table.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "layout", "text": "The volleyball net stretches across the midground.", "depends_on": ["O3"], "id": "C4"}, {"type": "layout", "text": "The court line crosses the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "relation", "text": "The court-end seating section sits behind the scorer table.", "depends_on": ["O5", "O2"], "id": "C6"}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 2}} +{"id": "5-competition_043", "category": "5-competition", "prompt": "Create an image of a beach-volleyball scoreboard after the 2024 NCAA Beach Volleyball Championship Dual. Show a large readable scoreboard beyond the beach volleyball net. Set the net on the sand court surface, with at least two court boundary lines crossing the lower foreground. The spectator seating structure stands behind the board.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "beach volleyball net"}, {"id": "O3", "name": "sand court surface"}, {"id": "O4", "name": "court boundary lines"}, {"id": "O5", "name": "spectator seating structure"}], "constraints": [{"type": "attribute", "text": "The scoreboard shows USC with a match score of 3.", "depends_on": ["O1"], "id": "C1"}, {"type": "attribute", "text": "The scoreboard shows UCLA with a match score of 0.", "depends_on": ["O1"], "id": "C2"}, {"type": "relation", "text": "The beach volleyball net stretches in front of the scoreboard.", "depends_on": ["O2", "O1"], "id": "C3"}, {"type": "relation", "text": "The beach volleyball net is set on the sand court surface.", "depends_on": ["O3", "O2"], "id": "C4"}, {"type": "layout", "text": "The court boundary lines cross the foreground.", "depends_on": ["O4"], "id": "C5"}, {"type": "attribute", "text": "At least two court boundary lines are present.", "depends_on": ["O4"], "id": "C6"}, {"type": "relation", "text": "The spectator seating structure stands behind the scoreboard.", "depends_on": ["O5", "O1"], "id": "C7"}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 3, "layout": 1, "relation": 3}} +{"id": "5-competition_044", "category": "5-competition", "prompt": "Create an image after the 2024 NCAA Men's Water Polo Championship Game showing a large readable result board beside the pool deck. The water surface spreads across the foreground, with a water polo goal frame on the water and a lane rope near the pool area.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "result board"}, {"id": "O2", "name": "pool deck"}, {"id": "O3", "name": "water surface"}, {"id": "O4", "name": "water polo goal frame"}, {"id": "O5", "name": "lane rope"}], "constraints": [{"type": "attribute", "text": "The result board displays UCLA 11 and USC 8.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The lane rope is near the water surface.", "depends_on": ["O5", "O3"], "id": "C2"}, {"type": "relation", "text": "The result board stands beside the pool deck.", "depends_on": ["O1", "O2"], "id": "C3"}, {"type": "relation", "text": "The water polo goal frame is positioned on the water surface.", "depends_on": ["O4", "O3"], "id": "C4"}, {"type": "layout", "text": "The water surface fills the foreground.", "depends_on": ["O3"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_045", "category": "5-competition", "prompt": "Create an image of a pool-wall result board after the 2024 NCAA Women's Water Polo Championship Game. Show a large readable result board mounted on the pool wall. The water surface fills the foreground, a goal frame sits at the far end of the water, and spectator seating rises behind the pool wall.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "result board"}, {"id": "O2", "name": "pool wall"}, {"id": "O3", "name": "water surface"}, {"id": "O4", "name": "goal frame"}, {"id": "O5", "name": "spectator seating"}], "constraints": [{"type": "attribute", "text": "The result board lists UCLA 7 and California 4.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The result board is mounted on the pool wall.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "layout", "text": "The water surface fills the foreground.", "depends_on": ["O3"], "id": "C3"}, {"type": "relation", "text": "The goal frame sits at the far end of the water surface.", "depends_on": ["O4", "O3"], "id": "C4"}, {"type": "relation", "text": "The spectator seating rises behind the pool wall.", "depends_on": ["O5", "O2"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "5-competition_046", "category": "5-competition", "prompt": "Create an image of an arena-wall result board after the 2024 Thomas Cup Final. Show a large readable result board mounted above a team bench at the side of the badminton court. A scorer table sits near the bench, the badminton net crosses the midground, and the court boundary runs across the lower foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "result board"}, {"id": "O2", "name": "team bench"}, {"id": "O3", "name": "scorer table"}, {"id": "O4", "name": "badminton net"}, {"id": "O5", "name": "court boundary"}], "constraints": [{"type": "attribute", "text": "The final result on the result board reads China 3 and Indonesia 1.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The result board is mounted above the team bench.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "relation", "text": "The scorer table sits near the team bench.", "depends_on": ["O3", "O2"], "id": "C3"}, {"type": "layout", "text": "The badminton net crosses the midground.", "depends_on": ["O4"], "id": "C4"}, {"type": "layout", "text": "The court boundary runs across the lower foreground.", "depends_on": ["O5"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 2}} +{"id": "5-competition_047", "category": "5-competition", "prompt": "Create an image of an end-line badminton result board after the 2024 Uber Cup Final. Show a large readable result board mounted above a scorer table near the end line. The badminton net crosses the midground, an umpire chair stands beside the net, and a service line crosses the lower foreground.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "result board"}, {"id": "O2", "name": "scorer table"}, {"id": "O3", "name": "badminton net"}, {"id": "O4", "name": "umpire chair"}, {"id": "O5", "name": "service line"}], "constraints": [{"type": "attribute", "text": "The result board shows China 3 and Indonesia 0.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The result board is mounted above the scorer table.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "layout", "text": "The badminton net crosses the midground.", "depends_on": ["O3"], "id": "C3"}, {"type": "relation", "text": "The umpire chair stands beside the badminton net.", "depends_on": ["O4", "O3"], "id": "C4"}, {"type": "layout", "text": "The service line crosses the lower foreground.", "depends_on": ["O5"], "id": "C5"}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 2}} +{"id": "5-competition_048", "category": "5-competition", "prompt": "Create an image after the 2024 NCAA Men's Lacrosse Championship Game from the team-bench side. Show a large readable scoreboard beyond the sideline barrier. The team bench sits directly behind the barrier, the artificial turf field fills the lower foreground, and at least two field markings lead diagonally toward the board.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "artificial turf field"}, {"id": "O3", "name": "sideline barrier"}, {"id": "O4", "name": "field markings"}, {"id": "O5", "name": "team bench"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The scoreboard displays Notre Dame 15 and Maryland 5.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The scoreboard stands beyond the sideline barrier.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The team bench sits behind the sideline barrier.", "depends_on": ["O5", "O3"]}, {"id": "C4", "type": "layout", "text": "The artificial turf field occupies the lower foreground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The field markings lead diagonally toward the scoreboard.", "depends_on": ["O4", "O1"]}, {"id": "C6", "type": "attribute", "text": "At least two field markings are present.", "depends_on": ["O4"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_049", "category": "5-competition", "prompt": "Create an image after the 2024 NCAA Women's Lacrosse Championship Game from behind the goal area. Show a large readable scoreboard beyond the goal frame. The turf field surface occupies the lower foreground, at least two field markings point toward the goal frame, and the spectator seating section rises behind the scoreboard.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "turf field surface"}, {"id": "O3", "name": "goal frame"}, {"id": "O4", "name": "field markings"}, {"id": "O5", "name": "spectator seating section"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The scoreboard lists Boston College 14 and Northwestern 13.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The scoreboard stands beyond the goal frame.", "depends_on": ["O1", "O3"]}, {"id": "C3", "type": "relation", "text": "The field markings point toward the goal frame.", "depends_on": ["O4", "O3"]}, {"id": "C4", "type": "attribute", "text": "At least two field markings are present.", "depends_on": ["O4"]}, {"id": "C5", "type": "layout", "text": "The turf field surface occupies the lower foreground.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "The spectator seating section rises behind the scoreboard.", "depends_on": ["O5", "O1"]}], "num_entities": 5, "num_constraints": 6, "constraint_type_counts": {"attribute": 2, "layout": 1, "relation": 3}} +{"id": "5-competition_050", "category": "5-competition", "prompt": "Create an image after the 2024 NCAA Men's Soccer Championship Game from the goal-line side. Show a large readable scoreboard behind the touchline barrier. A goal frame sits in the midground between the turf field and the result display. The turf field occupies the lower foreground, and the stadium seating section rises beyond the barrier.", "reference_images": [], "reference_image_paths": [], "num_reference_images": 0, "entities": [{"id": "O1", "name": "scoreboard"}, {"id": "O2", "name": "turf field"}, {"id": "O3", "name": "touchline barrier"}, {"id": "O4", "name": "goal frame"}, {"id": "O5", "name": "stadium seating section"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The final result on the scoreboard reads Vermont 2 and Marshall 1.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The goal frame sits between the turf field and the scoreboard.", "depends_on": ["O4", "O2", "O1"]}, {"id": "C3", "type": "relation", "text": "The scoreboard stands behind the touchline barrier.", "depends_on": ["O1", "O3"]}, {"id": "C4", "type": "layout", "text": "The turf field occupies the lower foreground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The stadium seating section rises beyond the touchline barrier.", "depends_on": ["O5", "O3"]}], "num_entities": 5, "num_constraints": 5, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 3}} +{"id": "6-ceremony_001", "category": "6-ceremony", "prompt": "Create an image of the Directing award presentation at the 2024 Oscars. On the left side of the background, a large winner screen displays the ceremony category and winner name line. The recipient stands beside a stage table in the right midground, holding the award trophy. An envelope rests on the table, and the stage edge runs across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner screen"}, {"id": "O2", "name": "Christopher Nolan", "reference_ids": ["R1"]}, {"id": "O3", "name": "award trophy"}, {"id": "O4", "name": "stage table"}, {"id": "O5", "name": "envelope"}, {"id": "O6", "name": "stage edge"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner screen is positioned on the left side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner screen shows the name Christopher Nolan.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner screen shows the category Directing.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "Christopher Nolan is positioned in the right midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Christopher Nolan stands beside the stage table.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Christopher Nolan is holding the award trophy.", "depends_on": ["O2", "O3"]}, {"id": "C7", "type": "relation", "text": "The envelope rests on the stage table.", "depends_on": ["O5", "O4"]}, {"id": "C8", "type": "layout", "text": "The stage edge runs across the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "6-ceremony_002", "category": "6-ceremony", "prompt": "Create an image of the Actor in a Leading Role recipient at the 2024 Oscars standing at a speech microphone. On one side of the background, a backdrop screen displays the category and winner name line. The recipient stands in the foreground on the other side with acceptance notes in one hand. A lectern stands beside the microphone, and the stage floor is visible across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Cillian Murphy", "reference_ids": ["R1"]}, {"id": "O3", "name": "acceptance notes"}, {"id": "O4", "name": "speech microphone"}, {"id": "O5", "name": "lectern"}, {"id": "O6", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Cillian Murphy.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Actor in a Leading Role.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "Cillian Murphy is positioned in the foreground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Cillian Murphy stands at the speech microphone.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Cillian Murphy is holding the acceptance notes.", "depends_on": ["O2", "O3"]}, {"id": "C7", "type": "relation", "text": "The lectern is beside the speech microphone.", "depends_on": ["O5", "O4"]}, {"id": "C8", "type": "layout", "text": "The stage floor spans the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "6-ceremony_003", "category": "6-ceremony", "prompt": "Create an image of the Actress in a Leading Role award handoff at the 2024 Oscars. A vertical winner screen on one side of the background displays the category and winner name line. The recipient stands beside a presenter table in the foreground on the other side and reaches toward the winner card. An open envelope rests on the table, with a stage curtain on one side and a floor mark near the recipient.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "vertical winner screen"}, {"id": "O2", "name": "Emma Stone", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner card"}, {"id": "O4", "name": "presenter table"}, {"id": "O5", "name": "envelope"}, {"id": "O6", "name": "stage curtain"}, {"id": "O7", "name": "floor mark"}], "constraints": [{"type": "layout", "text": "The vertical winner screen is positioned behind the presenter table.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The vertical winner screen shows the name Emma Stone.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The vertical winner screen shows the category Actress in a Leading Role.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Emma Stone stands beside the presenter table.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "Emma Stone reaches toward the winner card.", "depends_on": ["O2", "O3"], "id": "C5"}, {"type": "relation", "text": "The winner card is on the presenter table.", "depends_on": ["O3", "O4"], "id": "C6"}, {"type": "relation", "text": "The envelope rests on the presenter table.", "depends_on": ["O5", "O4"], "id": "C7"}, {"type": "layout", "text": "The stage curtain is on one side of the scene.", "depends_on": ["O6"], "id": "C8"}, {"type": "relation", "text": "The floor mark is near Emma Stone.", "depends_on": ["O7", "O2"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 6}} +{"id": "6-ceremony_004", "category": "6-ceremony", "prompt": "Create an image of the Actor in a Supporting Role recipient raising the award trophy on stage at the 2024 Oscars. On one side of the background, a backdrop screen displays the category and winner name line. The recipient stands in the right midground with the trophy lifted above shoulder level. Audience silhouettes line the lower foreground, the stage floor remains visible, and a podium sits to one side of the stage.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Robert Downey Jr.", "reference_ids": ["R1"]}, {"id": "O3", "name": "award trophy"}, {"id": "O4", "name": "silhouettes"}, {"id": "O5", "name": "podium"}, {"id": "O6", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The silhouettes are audience silhouettes.", "depends_on": ["O4"]}, {"id": "C2", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The backdrop screen shows the name Robert Downey Jr.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "The backdrop screen shows the category Actor in a Supporting Role.", "depends_on": ["O1"]}, {"id": "C5", "type": "layout", "text": "Robert Downey Jr. is positioned in the right midground.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "Robert Downey Jr. is holding the award trophy.", "depends_on": ["O2", "O3"]}, {"id": "C7", "type": "attribute", "text": "The award trophy is raised above shoulder level.", "depends_on": ["O3"]}, {"id": "C8", "type": "layout", "text": "The audience silhouettes line the lower foreground.", "depends_on": ["O4"]}, {"id": "C9", "type": "layout", "text": "The podium is positioned to one side of the stage.", "depends_on": ["O5"]}, {"id": "C10", "type": "relation", "text": "Robert Downey Jr. stands on the stage floor.", "depends_on": ["O2", "O6"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 4, "relation": 3}} +{"id": "6-ceremony_005", "category": "6-ceremony", "prompt": "Create an image of the Actress in a Supporting Role result being shown at the 2024 Oscars. A side result screen occupies one side of the background with the category and winner name line. The recipient stands on the opposite side of the stage holding an acceptance card near a podium. A floor monitor sits on the stage floor in the lower foreground and points toward the recipient.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Da'Vine Joy Randolph", "reference_ids": ["R1"]}, {"id": "O3", "name": "acceptance card"}, {"id": "O4", "name": "podium"}, {"id": "O5", "name": "floor monitor"}, {"id": "O6", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The side result screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The side result screen shows the name Da'Vine Joy Randolph.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The side result screen shows the category Actress in a Supporting Role.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "Da'Vine Joy Randolph is positioned on one side of the stage.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Da'Vine Joy Randolph is holding the acceptance card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The podium is positioned near the recipient.", "depends_on": ["O4", "O2"]}, {"id": "C7", "type": "layout", "text": "The floor monitor is positioned in the lower foreground.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The floor monitor points toward the recipient.", "depends_on": ["O5", "O2"]}, {"id": "C9", "type": "layout", "text": "The stage floor spans the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 4, "relation": 4}} +{"id": "6-ceremony_006", "category": "6-ceremony", "prompt": "Create an image of the Music (Original Score) recipient at the 2024 Oscars in a close stage view. On one side of the background, a backdrop screen displays the category and winner name line. The recipient stands in the foreground on the other side holding the program booklet, with a microphone stand behind them in the midground. A strip of stage floor is visible across the lower foreground, and a floor tape mark sits near the recipient's feet.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Ludwig Goransson", "reference_ids": ["R1"]}, {"id": "O3", "name": "program booklet"}, {"id": "O4", "name": "microphone stand"}, {"id": "O5", "name": "stage floor"}, {"id": "O6", "name": "floor tape"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Ludwig Goransson.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Music (Original Score).", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "Ludwig Goransson is positioned in the foreground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Ludwig Goransson is holding the program booklet.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "layout", "text": "The microphone stand is positioned in the midground.", "depends_on": ["O4"]}, {"id": "C7", "type": "relation", "text": "The microphone stand is behind the recipient.", "depends_on": ["O4", "O2"]}, {"id": "C8", "type": "layout", "text": "The stage floor spans the lower foreground.", "depends_on": ["O5"]}, {"id": "C9", "type": "relation", "text": "The floor tape is near the recipient's feet.", "depends_on": ["O6", "O2"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 4, "relation": 4}} +{"id": "6-ceremony_007", "category": "6-ceremony", "prompt": "Create an image of the Cinematography recipient entering the stage at the 2024 Oscars. The recipient appears beside a curtain opening in the midground and walks toward a display table with a winner placard near a microphone stand. The backdrop screen in the background shows the ceremony category and winner name line. A floor monitor is angled toward the entrance path, and the stage floor spans the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Hoyte_van_Hoytema.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Hoyte_van_Hoytema.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Hoyte van Hoytema", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner placard"}, {"id": "O4", "name": "curtain opening"}, {"id": "O5", "name": "display table"}, {"id": "O6", "name": "microphone stand"}, {"id": "O7", "name": "floor monitor"}, {"id": "O8", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Hoyte van Hoytema.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Cinematography.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Hoyte van Hoytema is entering beside the curtain opening.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "layout", "text": "Hoyte van Hoytema is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C6", "type": "relation", "text": "Hoyte van Hoytema is walking toward the display table.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "relation", "text": "The winner placard rests on the display table.", "depends_on": ["O3", "O5"]}, {"id": "C8", "type": "relation", "text": "The microphone stand is near the display table.", "depends_on": ["O6", "O5"]}, {"id": "C9", "type": "relation", "text": "The floor monitor is angled toward the curtain opening.", "depends_on": ["O7", "O4"]}, {"id": "C10", "type": "layout", "text": "The stage floor spans the lower foreground.", "depends_on": ["O8"]}], "num_entities": 8, "num_constraints": 10, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 6}} +{"id": "6-ceremony_008", "category": "6-ceremony", "prompt": "Create an image of the Film Editing recipient at the 2024 Oscars in a backstage corridor. A wall-mounted winner screen on one side of the corridor displays the category and winner name line. The recipient stands at a microphone stand on the other side while holding the press credential. A folding stool sits near the screen, a coiled floor cable crosses the lower foreground, and a narrow stage doorway is visible to one side.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Jennifer_Lame.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Jennifer_Lame.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "wall-mounted winner screen"}, {"id": "O2", "name": "Jennifer Lame", "reference_ids": ["R1"]}, {"id": "O3", "name": "press credential"}, {"id": "O4", "name": "microphone stand"}, {"id": "O5", "name": "folding stool"}, {"id": "O6", "name": "floor cable"}, {"id": "O7", "name": "stage doorway"}], "constraints": [{"type": "layout", "text": "The wall-mounted winner screen is positioned on one side of the background.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The wall-mounted winner screen shows the name Jennifer Lame.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The wall-mounted winner screen shows the category Film Editing.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Jennifer Lame stands at the microphone stand.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "Jennifer Lame is holding the press credential.", "depends_on": ["O2", "O3"], "id": "C5"}, {"type": "relation", "text": "The folding stool sits near the wall-mounted winner screen.", "depends_on": ["O5", "O1"], "id": "C6"}, {"type": "layout", "text": "The floor cable crosses the lower foreground.", "depends_on": ["O6"], "id": "C7"}, {"type": "layout", "text": "The stage doorway is visible on one side.", "depends_on": ["O7"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "6-ceremony_009", "category": "6-ceremony", "prompt": "Create an image of the Costume Design recipient at the 2024 Oscars beside a costume rack on the award stage. On one side of the background, a backdrop screen displays the category and winner name line. The recipient stands in the midground on the other side with the result card resting on a nearby display table. A name placard is attached to the front of the table.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Holly_Waddington.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Holly_Waddington.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Holly Waddington", "reference_ids": ["R1"]}, {"id": "O3", "name": "result card"}, {"id": "O4", "name": "costume rack"}, {"id": "O5", "name": "display table"}, {"id": "O6", "name": "name placard"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Holly Waddington.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Costume Design.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "Holly Waddington is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "The costume rack is beside the recipient.", "depends_on": ["O4", "O2"]}, {"id": "C6", "type": "relation", "text": "The result card rests on the display table.", "depends_on": ["O3", "O5"]}, {"id": "C7", "type": "relation", "text": "The display table is near the recipient.", "depends_on": ["O5", "O2"]}, {"id": "C8", "type": "relation", "text": "The name placard is attached to the display table.", "depends_on": ["O6", "O5"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_010", "category": "6-ceremony", "prompt": "Create an image of the Writing (Adapted Screenplay) recipient in a media-room interview setup after the 2024 Oscars. The recipient sits on a stool beside a winner kiosk that shows the category and winner name line. The program booklet is placed on a small round table next to the stool. Two tabletop microphones sit on the table, and a media wall fills the background.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Cord_Jefferson.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Cord_Jefferson.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner kiosk"}, {"id": "O2", "name": "Cord Jefferson", "reference_ids": ["R1"]}, {"id": "O3", "name": "program booklet"}, {"id": "O4", "name": "stool"}, {"id": "O5", "name": "round table"}, {"id": "O6", "name": "microphones"}, {"id": "O7", "name": "media wall"}], "constraints": [{"type": "layout", "text": "The winner kiosk is positioned beside the stool.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The winner kiosk shows the name Cord Jefferson.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The winner kiosk shows the category Writing (Adapted Screenplay).", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Cord Jefferson sits on the stool.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "The program booklet is placed on the round table.", "depends_on": ["O3", "O5"], "id": "C5"}, {"type": "relation", "text": "The round table is next to the stool.", "depends_on": ["O5", "O4"], "id": "C6"}, {"type": "relation", "text": "The microphones sit on the round table.", "depends_on": ["O6", "O5"], "id": "C8"}, {"type": "layout", "text": "The media wall fills the background.", "depends_on": ["O7"], "id": "C9"}, {"type": "attribute", "text": "Exactly two tabletop microphones sit on the round table.", "depends_on": ["O6", "O5"], "id": "C10"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "6-ceremony_011", "category": "6-ceremony", "prompt": "Create an image of the Director recipient moving through the audience aisle toward the stage at the 2024 BAFTA Film Awards. A backdrop screen on one side of the background displays the category and winner name line. The recipient is in the midground near the aisle end, with stage steps ahead and a stage program in hand. Aisle lights line both sides of the walkway, and the stage edge is visible beyond the steps.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Christopher Nolan", "reference_ids": ["R1"]}, {"id": "O3", "name": "stage program"}, {"id": "O4", "name": "steps"}, {"id": "O5", "name": "lights"}, {"id": "O6", "name": "stage edge"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The steps are stage steps.", "depends_on": ["O4"]}, {"id": "C2", "type": "attribute", "text": "The lights are aisle lights.", "depends_on": ["O5"]}, {"id": "C3", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "The backdrop screen shows the name Christopher Nolan.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "attribute", "text": "The backdrop screen shows the category Director.", "depends_on": ["O1"]}, {"id": "C6", "type": "layout", "text": "Christopher Nolan is positioned near the aisle end in the midground.", "depends_on": ["O2"]}, {"id": "C7", "type": "relation", "text": "Christopher Nolan is moving toward the stage steps.", "depends_on": ["O2", "O4"]}, {"id": "C8", "type": "relation", "text": "Christopher Nolan is holding the stage program.", "depends_on": ["O2", "O3"]}, {"id": "C9", "type": "layout", "text": "The aisle lights line both sides of the walkway.", "depends_on": ["O5"]}, {"id": "C10", "type": "relation", "text": "The stage edge is positioned beyond the stage steps.", "depends_on": ["O6", "O4"]}], "num_entities": 6, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 4}} +{"id": "6-ceremony_012", "category": "6-ceremony", "prompt": "Create an image of the Leading Actor recipient posing for a solo award photo at the 2024 BAFTA Film Awards. A winner photo backdrop on one side displays the category and winner name line. The recipient stands beside the backdrop while holding the winner placard. A floor mark sits at the recipient's feet, and a rope barrier runs across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner photo backdrop"}, {"id": "O2", "name": "Cillian Murphy", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner placard"}, {"id": "O4", "name": "floor mark"}, {"id": "O5", "name": "rope barrier"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner photo backdrop is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner photo backdrop shows the name Cillian Murphy.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner photo backdrop shows the category Leading Actor.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Cillian Murphy stands beside the winner photo backdrop.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "relation", "text": "Cillian Murphy is holding the winner placard.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The floor mark is at the recipient's feet.", "depends_on": ["O4", "O2"]}, {"id": "C7", "type": "layout", "text": "The rope barrier runs across the lower foreground.", "depends_on": ["O5"]}], "num_entities": 5, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_013", "category": "6-ceremony", "prompt": "Create an image of the Leading Actress result at the 2024 BAFTA Film Awards from the side of the stage. The recipient stands next to a vertical display tower and holds an open winner envelope. The display tower shows the category and winner name line. A small envelope stand is placed in front of the tower, a stage rope curves across the lower foreground, and a side curtain hangs at the right edge.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "display tower"}, {"id": "O2", "name": "Emma Stone", "reference_ids": ["R1"]}, {"id": "O3", "name": "open winner envelope"}, {"id": "O4", "name": "envelope stand"}, {"id": "O5", "name": "stage rope"}, {"id": "O6", "name": "side curtain"}], "constraints": [{"type": "layout", "text": "The display tower is positioned at the side of the stage.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The display tower shows the name Emma Stone.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The display tower shows the category Leading Actress.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Emma Stone stands next to the display tower.", "depends_on": ["O2", "O1"], "id": "C4"}, {"type": "relation", "text": "Emma Stone is holding the open winner envelope.", "depends_on": ["O2", "O3"], "id": "C5"}, {"type": "relation", "text": "The envelope stand is placed in front of the display tower.", "depends_on": ["O4", "O1"], "id": "C6"}, {"type": "layout", "text": "The stage rope curves across the lower foreground.", "depends_on": ["O5"], "id": "C7"}, {"type": "layout", "text": "The side curtain hangs at the right edge.", "depends_on": ["O6"], "id": "C8"}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "6-ceremony_014", "category": "6-ceremony", "prompt": "Create an image of the Supporting Actor recipient at the 2024 BAFTA Film Awards framed from the side of the stage. The recipient stands near a lectern with a cue card held at chest height. A backdrop screen in the background shows the category and winner name line. A microphone stand is placed between the lectern and the recipient, and the stage floor fills the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Robert Downey Jr.", "reference_ids": ["R1"]}, {"id": "O3", "name": "cue card"}, {"id": "O4", "name": "lectern"}, {"id": "O5", "name": "microphone stand"}, {"id": "O6", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Robert Downey Jr.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Supporting Actor.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Robert Downey Jr. is positioned near the lectern.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Robert Downey Jr. is holding the cue card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "attribute", "text": "The cue card is held at chest height.", "depends_on": ["O3"]}, {"id": "C7", "type": "relation", "text": "The microphone stand is between the lectern and the recipient.", "depends_on": ["O5", "O4", "O2"]}, {"id": "C8", "type": "layout", "text": "The stage floor fills the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "6-ceremony_015", "category": "6-ceremony", "prompt": "Create an image of the Supporting Actress recipient after the 2024 BAFTA Film Awards at a press table. The recipient stands at one end of the table while the winner card sits closer to the microphones. A winner board in the background shows the category and winner name line. A notepad lies on the table in the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner board"}, {"id": "O2", "name": "Da'Vine Joy Randolph", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner card"}, {"id": "O4", "name": "press table"}, {"id": "O5", "name": "microphones"}, {"id": "O6", "name": "notepad"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner board is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner board shows the name Da'Vine Joy Randolph.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner board shows the category Supporting Actress.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Da'Vine Joy Randolph stands at one end of the press table.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "The winner card sits on the press table.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The winner card is closer to the microphones than the recipient is.", "depends_on": ["O3", "O5", "O2"]}, {"id": "C7", "type": "relation", "text": "The notepad lies on the press table.", "depends_on": ["O6", "O4"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "6-ceremony_016", "category": "6-ceremony", "prompt": "Create an image of the Original Score recipient standing beside a display plinth at the 2024 BAFTA Film Awards. The program booklet sits on the plinth in the midground while the recipient stands next to it. A category board in the background shows the category and winner name line. Stage steps appear on one side, and a floor light is visible in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "category board"}, {"id": "O2", "name": "Ludwig Goransson", "reference_ids": ["R1"]}, {"id": "O3", "name": "program booklet"}, {"id": "O4", "name": "display plinth"}, {"id": "O5", "name": "steps"}, {"id": "O6", "name": "floor light"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The steps are stage steps.", "depends_on": ["O5"]}, {"id": "C2", "type": "layout", "text": "The category board is positioned in the background.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The category board shows the name Ludwig Goransson.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "The category board shows the category Original Score.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "Ludwig Goransson stands next to the display plinth.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "The program booklet sits on the display plinth.", "depends_on": ["O3", "O4"]}, {"id": "C7", "type": "layout", "text": "The display plinth is positioned in the midground.", "depends_on": ["O4"]}, {"id": "C8", "type": "layout", "text": "The stage steps appear on one side.", "depends_on": ["O5"]}, {"id": "C9", "type": "layout", "text": "The floor light is positioned in the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 4, "relation": 3}} +{"id": "6-ceremony_017", "category": "6-ceremony", "prompt": "Create an image of the Cinematography recipient at the 2024 BAFTA Film Awards beside a camera display setup. The recipient stands next to a camera rig while a camera slate sits on an equipment case. A winner screen mounted above the rig shows the category and winner name line. A light stand is visible in the foreground, and a tape mark lies on the stage floor near the case.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Hoyte_van_Hoytema.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Hoyte_van_Hoytema.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner screen"}, {"id": "O2", "name": "Hoyte van Hoytema", "reference_ids": ["R1"]}, {"id": "O3", "name": "camera slate"}, {"id": "O4", "name": "camera rig"}, {"id": "O5", "name": "equipment case"}, {"id": "O6", "name": "light stand"}, {"id": "O7", "name": "tape mark"}], "constraints": [{"type": "relation", "text": "The winner screen is mounted above the camera rig.", "depends_on": ["O1", "O4"], "id": "C1"}, {"type": "relation", "text": "The winner screen shows the name Hoyte van Hoytema.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The winner screen shows the category Cinematography.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Hoyte van Hoytema stands next to the camera rig.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "The camera slate sits on the equipment case.", "depends_on": ["O3", "O5"], "id": "C5"}, {"type": "relation", "text": "The equipment case is beside the camera rig.", "depends_on": ["O5", "O4"], "id": "C6"}, {"type": "layout", "text": "The light stand is visible in the foreground.", "depends_on": ["O6"], "id": "C7"}, {"type": "relation", "text": "The tape mark lies near the equipment case.", "depends_on": ["O7", "O5"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "6-ceremony_018", "category": "6-ceremony", "prompt": "Create an image of the Editing recipient at the 2024 BAFTA Film Awards pausing at a floor microphone near the stage edge. On one side of the background, a backdrop screen displays the category and winner name line. The recipient stands in the foreground on the other side holding the cue card. A cable strip runs along the stage floor, and a small monitor sits behind the microphone.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Jennifer_Lame.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Jennifer_Lame.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Jennifer Lame", "reference_ids": ["R1"]}, {"id": "O3", "name": "cue card"}, {"id": "O4", "name": "floor microphone"}, {"id": "O5", "name": "cable strip"}, {"id": "O6", "name": "small monitor"}, {"id": "O7", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Jennifer Lame.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Editing.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "Jennifer Lame is positioned in the foreground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Jennifer Lame stands at the floor microphone.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "relation", "text": "Jennifer Lame is holding the cue card.", "depends_on": ["O2", "O3"]}, {"id": "C7", "type": "relation", "text": "The cable strip runs along the stage floor.", "depends_on": ["O5", "O7"]}, {"id": "C8", "type": "relation", "text": "The small monitor sits behind the floor microphone.", "depends_on": ["O6", "O4"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_019", "category": "6-ceremony", "prompt": "Create an image of the Costume Design award presentation at the 2024 BAFTA Film Awards with the winner screen above a display table. The recipient stands beside the table holding a fabric swatch booklet. The winner screen in the background shows the category and winner name line. An envelope lies on the table, and a stage rail crosses the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Holly_Waddington.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Holly_Waddington.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner screen"}, {"id": "O2", "name": "Holly Waddington", "reference_ids": ["R1"]}, {"id": "O3", "name": "fabric swatch booklet"}, {"id": "O4", "name": "display table"}, {"id": "O5", "name": "stage rail"}, {"id": "O6", "name": "envelope"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner screen shows the name Holly Waddington.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner screen shows the category Costume Design.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Holly Waddington stands beside the display table.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Holly Waddington is holding the fabric swatch booklet.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The envelope lies on the display table.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "layout", "text": "The stage rail crosses the foreground.", "depends_on": ["O5"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_020", "category": "6-ceremony", "prompt": "Create an image of the Adapted Screenplay recipient at the 2024 BAFTA Film Awards in a writing-desk presentation setup. A wall winner board behind the desk shows the category and winner name line. The recipient stands at the writing desk with the result card beside an open notebook. A table lamp sits on the desk, and a narrow stage-floor strip runs along the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Cord_Jefferson.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Cord_Jefferson.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "wall winner board"}, {"id": "O2", "name": "Cord Jefferson", "reference_ids": ["R1"]}, {"id": "O3", "name": "result card"}, {"id": "O4", "name": "writing desk"}, {"id": "O5", "name": "open notebook"}, {"id": "O6", "name": "table lamp"}, {"id": "O7", "name": "stage-floor strip"}], "constraints": [{"type": "layout", "text": "The wall winner board is positioned behind the writing desk.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The wall winner board shows the name Cord Jefferson.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The wall winner board shows the category Adapted Screenplay.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Cord Jefferson stands at the writing desk.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "The result card is beside the open notebook.", "depends_on": ["O3", "O5"], "id": "C5"}, {"type": "relation", "text": "The open notebook rests on the writing desk.", "depends_on": ["O5", "O4"], "id": "C6"}, {"type": "relation", "text": "The table lamp sits on the writing desk.", "depends_on": ["O6", "O4"], "id": "C7"}, {"type": "layout", "text": "The stage-floor strip runs along the lower foreground.", "depends_on": ["O7"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_021", "category": "6-ceremony", "prompt": "Create an image of the Best Director - Motion Picture winner being announced on a side screen at the 2024 Golden Globe Awards. The side result screen on one side displays the category and winner name line. The recipient stands near the front stage rail on the other side while holding the result card. A floor monitor sits below the screen, and a podium is visible farther back.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Christopher Nolan", "reference_ids": ["R1"]}, {"id": "O3", "name": "result card"}, {"id": "O4", "name": "stage rail"}, {"id": "O5", "name": "floor monitor"}, {"id": "O6", "name": "podium"}], "constraints": [{"id": "C1", "type": "layout", "text": "The side result screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The side result screen shows the name Christopher Nolan.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The side result screen shows the category Best Director - Motion Picture.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Christopher Nolan stands near the front stage rail.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Christopher Nolan is holding the result card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The floor monitor sits below the side result screen.", "depends_on": ["O5", "O1"]}, {"id": "C7", "type": "layout", "text": "The podium is present farther back on the stage.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_022", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Male Actor in a Motion Picture - Drama recipient at the 2024 Golden Globe Awards from beside the stage rail. A backdrop screen on one side displays the category and winner name line. The recipient holds acceptance notes beside the screen. A microphone stand is beside the recipient, and a floor light sits near the rail in the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Cillian Murphy", "reference_ids": ["R1"]}, {"id": "O3", "name": "acceptance notes"}, {"id": "O4", "name": "microphone stand"}, {"id": "O5", "name": "stage rail"}, {"id": "O6", "name": "floor light"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Cillian Murphy.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Best Performance by a Male Actor in a Motion Picture - Drama.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Cillian Murphy stands beside the stage rail.", "depends_on": ["O2", "O5"]}, {"id": "C5", "type": "relation", "text": "Cillian Murphy is holding the acceptance notes.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "Cillian Murphy stands beside the backdrop screen.", "depends_on": ["O2", "O1"]}, {"id": "C7", "type": "relation", "text": "The microphone stand is beside the recipient.", "depends_on": ["O4", "O2"]}, {"id": "C8", "type": "relation", "text": "The floor light sits near the stage rail in the foreground.", "depends_on": ["O6", "O5"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "6-ceremony_023", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Female Actor in a Motion Picture - Drama recipient coming through a side curtain at the 2024 Golden Globe Awards. The recipient is beside the curtain opening and already holding the sealed envelope. A microphone stand waits ahead on the stage floor. The backdrop screen in the background shows the category and winner name line, with a stage cable running across the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Lily_Gladstone.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Lily_Gladstone.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Lily Gladstone", "reference_ids": ["R1"]}, {"id": "O3", "name": "sealed envelope"}, {"id": "O4", "name": "curtain opening"}, {"id": "O5", "name": "microphone stand"}, {"id": "O6", "name": "stage cable"}, {"id": "O7", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Lily Gladstone.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Best Performance by a Female Actor in a Motion Picture - Drama.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Lily Gladstone is beside the curtain opening.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Lily Gladstone is holding the sealed envelope.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The microphone stand is ahead of the recipient on the stage floor.", "depends_on": ["O5", "O2", "O7"]}, {"id": "C7", "type": "layout", "text": "The stage cable runs across the foreground.", "depends_on": ["O6"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_024", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Male Actor in a Motion Picture - Musical or Comedy recipient at the 2024 Golden Globe Awards posing beside a small display table. A winner photo backdrop on one side displays the category and winner name line. The recipient stands beside the backdrop, and the winner placard rests on the table next to them. A floor mark is below the recipient, and a camera tripod is visible in the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_024_Paul_Giamatti.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_024_Paul_Giamatti.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner photo backdrop"}, {"id": "O2", "name": "Paul Giamatti", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner placard"}, {"id": "O4", "name": "display table"}, {"id": "O5", "name": "floor mark"}, {"id": "O6", "name": "camera tripod"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner photo backdrop is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner photo backdrop shows the name Paul Giamatti.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner photo backdrop shows the category Best Performance by a Male Actor in a Motion Picture - Musical or Comedy.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Paul Giamatti stands beside the winner photo backdrop.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "relation", "text": "The winner placard rests on the display table.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The display table is beside the recipient.", "depends_on": ["O4", "O2"]}, {"id": "C7", "type": "relation", "text": "The floor mark is below the recipient.", "depends_on": ["O5", "O2"]}, {"id": "C8", "type": "layout", "text": "The camera tripod is positioned in the foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_025", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Female Actor in a Motion Picture - Musical or Comedy recipient at the 2024 Golden Globe Awards beside a freestanding winner board. The recipient pauses on a carpet strip while holding an acceptance envelope. The winner board is mounted on an easel and shows the category and winner name line. Aisle lights form two dotted rows behind the carpet strip, and a small cue card rests at the base of the easel.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner board"}, {"id": "O2", "name": "Emma Stone", "reference_ids": ["R1"]}, {"id": "O3", "name": "acceptance envelope"}, {"id": "O4", "name": "easel"}, {"id": "O5", "name": "carpet strip"}, {"id": "O6", "name": "aisle lights"}, {"id": "O7", "name": "cue card"}], "constraints": [{"id": "C1", "type": "relation", "text": "The winner board is mounted on the easel.", "depends_on": ["O1", "O4"]}, {"id": "C2", "type": "relation", "text": "The winner board shows the name Emma Stone.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner board shows the category Best Performance by a Female Actor in a Motion Picture - Musical or Comedy.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Emma Stone is holding the acceptance envelope.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "relation", "text": "Emma Stone is standing on the carpet strip.", "depends_on": ["O2", "O5"]}, {"id": "C6", "type": "relation", "text": "The aisle lights form two dotted rows behind the carpet strip.", "depends_on": ["O6", "O5"]}, {"id": "C7", "type": "relation", "text": "The cue card rests at the base of the easel.", "depends_on": ["O7", "O4"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "relation": 6}} +{"id": "6-ceremony_026", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Male Actor in a Supporting Role in any Motion Picture recipient at the 2024 Golden Globe Awards with the result shown on a large side screen. The side result screen on one side of the background displays the category and winner name line. The recipient stands in the midground on the other side holding a winner placard. A low riser separates the recipient from the foreground. A floor monitor points toward the riser, and a podium is set on the far side.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Robert Downey Jr.", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner placard"}, {"id": "O4", "name": "low riser"}, {"id": "O5", "name": "floor monitor"}, {"id": "O6", "name": "podium"}], "constraints": [{"id": "C1", "type": "layout", "text": "The side result screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The side result screen shows the name Robert Downey Jr.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The side result screen shows the category Best Performance by a Male Actor in a Supporting Role in any Motion Picture.", "depends_on": ["O1"]}, {"id": "C4", "type": "layout", "text": "Robert Downey Jr. is positioned in the midground.", "depends_on": ["O2"]}, {"id": "C5", "type": "relation", "text": "Robert Downey Jr. is holding the winner placard.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The low riser separates the recipient from the foreground.", "depends_on": ["O4", "O2"]}, {"id": "C7", "type": "relation", "text": "The floor monitor points toward the low riser.", "depends_on": ["O5", "O4"]}, {"id": "C8", "type": "layout", "text": "The podium is set on the far side of the stage.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 4}} +{"id": "6-ceremony_027", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Female Actor in a Supporting Role in any Motion Picture recipient at a backstage entrance during the 2024 Golden Globe Awards. The recipient stands beside a side curtain while holding a backstage pass. A rolling cart near the curtain carries a side screen showing the category and winner name line. Floor tape marks a path across the lower foreground, and a stage monitor sits near the cart.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side screen"}, {"id": "O2", "name": "Da'Vine Joy Randolph", "reference_ids": ["R1"]}, {"id": "O3", "name": "backstage pass"}, {"id": "O4", "name": "side curtain"}, {"id": "O5", "name": "rolling cart"}, {"id": "O6", "name": "floor tape"}, {"id": "O7", "name": "stage monitor"}], "constraints": [{"type": "relation", "text": "The side screen is carried by the rolling cart.", "depends_on": ["O1", "O5"], "id": "C1"}, {"type": "relation", "text": "The side screen shows the name Da'Vine Joy Randolph.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The side screen shows the category Best Performance by a Female Actor in a Supporting Role in any Motion Picture.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Da'Vine Joy Randolph stands beside the side curtain.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "Da'Vine Joy Randolph is holding the backstage pass.", "depends_on": ["O2", "O3"], "id": "C5"}, {"type": "relation", "text": "The rolling cart is near the side curtain.", "depends_on": ["O5", "O4"], "id": "C6"}, {"type": "layout", "text": "The floor tape marks a path across the lower foreground.", "depends_on": ["O6"], "id": "C7"}, {"type": "relation", "text": "The stage monitor sits near the rolling cart.", "depends_on": ["O7", "O5"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "6-ceremony_028", "category": "6-ceremony", "prompt": "Create an image of the Best Original Score - Motion Picture recipient at the 2024 Golden Globe Awards in a side-stage music corner. The recipient stands beside a music stand while the program booklet sits on a display plinth. A category board behind the setup shows the category and winner name line. A conductor baton rests on the music stand, and a floor cable runs across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "category board"}, {"id": "O2", "name": "Ludwig Goransson", "reference_ids": ["R1"]}, {"id": "O3", "name": "program booklet"}, {"id": "O4", "name": "display plinth"}, {"id": "O5", "name": "music stand"}, {"id": "O6", "name": "conductor baton"}, {"id": "O7", "name": "floor cable"}], "constraints": [{"id": "C1", "type": "relation", "text": "The category board shows the name Ludwig Goransson.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "The category board shows the category Best Original Score - Motion Picture.", "depends_on": ["O1"]}, {"id": "C3", "type": "layout", "text": "The category board is positioned behind the setup.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Ludwig Goransson stands beside the music stand.", "depends_on": ["O2", "O5"]}, {"id": "C5", "type": "relation", "text": "The program booklet sits on the display plinth.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The conductor baton rests on the music stand.", "depends_on": ["O6", "O5"]}, {"id": "C7", "type": "layout", "text": "The floor cable runs across the lower foreground.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_029", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Male Actor in a Television Series - Drama recipient in a TV interview corner at the 2024 Golden Globe Awards. The recipient sits on a stool beside a side result screen showing the category and winner name line. A handheld microphone points toward the recipient. Interview notes rest on a side table, and a floor mark is visible in front of the stool.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_029_Kieran_Culkin.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_029_Kieran_Culkin.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Kieran Culkin", "reference_ids": ["R1"]}, {"id": "O3", "name": "interview notes"}, {"id": "O4", "name": "stool"}, {"id": "O5", "name": "handheld microphone"}, {"id": "O6", "name": "side table"}, {"id": "O7", "name": "floor mark"}], "constraints": [{"type": "layout", "text": "The side result screen is positioned beside the stool.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The side result screen shows the name Kieran Culkin.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The side result screen shows the category Best Performance by a Male Actor in a Television Series - Drama.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Kieran Culkin sits on the stool.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "The handheld microphone points toward Kieran Culkin.", "depends_on": ["O5", "O2"], "id": "C5"}, {"type": "relation", "text": "The interview notes rest on the side table.", "depends_on": ["O3", "O6"], "id": "C6"}, {"type": "relation", "text": "The side table is beside the stool.", "depends_on": ["O6", "O4"], "id": "C7"}, {"type": "layout", "text": "The floor mark is visible in front of the stool.", "depends_on": ["O7"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_030", "category": "6-ceremony", "prompt": "Create an image of the Best Performance by a Female Actor in a Television Series - Drama recipient in a winner corridor at the 2024 Golden Globe Awards. The recipient stands under a hanging winner banner that shows the category and winner name line. The press credential rests on a wall shelf next to the recipient. A rope line runs along the corridor, a spotlight stand faces the banner, and a carpet runner leads through the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_030_Sarah_Snook.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_030_Sarah_Snook.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "hanging winner banner"}, {"id": "O2", "name": "Sarah Snook", "reference_ids": ["R1"]}, {"id": "O3", "name": "press credential"}, {"id": "O4", "name": "wall shelf"}, {"id": "O5", "name": "rope line"}, {"id": "O6", "name": "spotlight stand"}, {"id": "O7", "name": "carpet runner"}], "constraints": [{"type": "layout", "text": "The hanging winner banner is positioned above the recipient.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The hanging winner banner shows the name Sarah Snook.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The hanging winner banner shows the category Best Performance by a Female Actor in a Television Series - Drama.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Sarah Snook stands under the hanging winner banner.", "depends_on": ["O2", "O1"], "id": "C4"}, {"type": "relation", "text": "The press credential rests on the wall shelf.", "depends_on": ["O3", "O4"], "id": "C5"}, {"type": "relation", "text": "The wall shelf is next to Sarah Snook.", "depends_on": ["O4", "O2"], "id": "C6"}, {"type": "layout", "text": "The rope line runs along the corridor.", "depends_on": ["O5"], "id": "C7"}, {"type": "relation", "text": "The spotlight stand faces the hanging winner banner.", "depends_on": ["O6", "O1"], "id": "C8"}, {"type": "layout", "text": "The carpet runner leads through the foreground.", "depends_on": ["O7"], "id": "C9"}], "num_entities": 7, "num_constraints": 9, "constraint_type_counts": {"attribute": 1, "layout": 3, "relation": 5}} +{"id": "6-ceremony_031", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Lead Actor in a Drama Series recipient at the 2024 Primetime Emmy Awards standing at a narrow interview lectern. On one side of the background, a backdrop screen displays the category and winner name line. The recipient holds the winner card beside the lectern on the other side. A cue card is clipped to the lectern front, a boom microphone extends from one side, and a floor mark sits below the recipient.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_031_Hiroyuki_Sanada.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_031_Hiroyuki_Sanada.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Hiroyuki Sanada", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner card"}, {"id": "O4", "name": "interview lectern"}, {"id": "O5", "name": "cue card"}, {"id": "O6", "name": "boom microphone"}, {"id": "O7", "name": "floor mark"}], "constraints": [{"id": "C1", "type": "relation", "text": "The backdrop screen is positioned behind Hiroyuki Sanada.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Hiroyuki Sanada.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Outstanding Lead Actor in a Drama Series.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Hiroyuki Sanada stands at the interview lectern.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Hiroyuki Sanada is holding the winner card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The cue card is clipped to the interview lectern.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "relation", "text": "The boom microphone extends from one side of the interview lectern.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "relation", "text": "The floor mark sits below Hiroyuki Sanada.", "depends_on": ["O7", "O2"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "relation": 7}} +{"id": "6-ceremony_032", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Lead Actress in a Drama Series recipient in a media room after the 2024 Primetime Emmy Awards. A winner board on one side of the background displays the category and winner name line. The recipient stands between a display plinth and a side camera tripod on the other side. The result card is on top of the plinth, and a press microphone is positioned in front of it.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_032_Anna_Sawai.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_032_Anna_Sawai.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner board"}, {"id": "O2", "name": "Anna Sawai", "reference_ids": ["R1"]}, {"id": "O3", "name": "result card"}, {"id": "O4", "name": "display plinth"}, {"id": "O5", "name": "press microphone"}, {"id": "O6", "name": "camera tripod"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner board is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner board shows the name Anna Sawai.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner board shows the category Outstanding Lead Actress in a Drama Series.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Anna Sawai stands next to the display plinth.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "The result card is on top of the display plinth.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The press microphone is in front of the display plinth.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "layout", "text": "The camera tripod is positioned at the side.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_033", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Supporting Actor in a Drama Series recipient in a photo area at the 2024 Primetime Emmy Awards. A winner photo backdrop on one side displays the category and winner name line. The recipient stands beside the backdrop and holds the award trophy at chest height. A camera tripod is placed in the foreground, and a floor mark sits below the recipient behind a rope barrier.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_033_Billy_Crudup.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_033_Billy_Crudup.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner photo backdrop"}, {"id": "O2", "name": "Billy Crudup", "reference_ids": ["R1"]}, {"id": "O3", "name": "award trophy"}, {"id": "O4", "name": "camera tripod"}, {"id": "O5", "name": "floor mark"}, {"id": "O6", "name": "rope barrier"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner photo backdrop is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner photo backdrop shows the name Billy Crudup.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner photo backdrop shows the category Outstanding Supporting Actor in a Drama Series.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Billy Crudup stands beside the winner photo backdrop.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "relation", "text": "Billy Crudup is holding the award trophy.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "attribute", "text": "The award trophy is held at chest height.", "depends_on": ["O3"]}, {"id": "C7", "type": "layout", "text": "The camera tripod is placed in the foreground.", "depends_on": ["O4"]}, {"id": "C8", "type": "relation", "text": "The floor mark is below the recipient.", "depends_on": ["O5", "O2"]}, {"id": "C9", "type": "relation", "text": "The rope barrier is in front of the floor mark.", "depends_on": ["O6", "O5"]}], "num_entities": 6, "num_constraints": 9, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 5}} +{"id": "6-ceremony_034", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Supporting Actress in a Drama Series recipient at the 2024 Primetime Emmy Awards standing behind a podium. The recipient holds an acceptance card while facing a speech microphone. A side result screen in the background shows the category and winner name line. A floor monitor sits below the podium, and stage steps are visible in the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_034_Elizabeth_Debicki.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_034_Elizabeth_Debicki.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Elizabeth Debicki", "reference_ids": ["R1"]}, {"id": "O3", "name": "acceptance card"}, {"id": "O4", "name": "podium"}, {"id": "O5", "name": "speech microphone"}, {"id": "O6", "name": "floor monitor"}, {"id": "O7", "name": "stage steps"}], "constraints": [{"id": "C1", "type": "layout", "text": "The side result screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The side result screen shows the name Elizabeth Debicki.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The side result screen shows the category Outstanding Supporting Actress in a Drama Series.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Elizabeth Debicki stands behind the podium.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Elizabeth Debicki is holding the acceptance card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "Elizabeth Debicki is facing the speech microphone.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "relation", "text": "The floor monitor sits below the podium.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "layout", "text": "The stage steps are visible in the lower foreground.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_035", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Lead Actor in a Comedy Series recipient walking along a stage ramp at the 2024 Primetime Emmy Awards. A backdrop screen on one side behind the ramp displays the category and winner name line. The recipient is in the midground and moves toward a display table. A floor light marks the ramp edge, and the cue card is on the table.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_035_Jeremy_Allen_White.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_035_Jeremy_Allen_White.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Jeremy Allen White", "reference_ids": ["R1"]}, {"id": "O3", "name": "cue card"}, {"id": "O4", "name": "stage ramp"}, {"id": "O5", "name": "display table"}, {"id": "O6", "name": "floor light"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Jeremy Allen White.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Outstanding Lead Actor in a Comedy Series.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Jeremy Allen White is positioned on the stage ramp in the midground.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Jeremy Allen White is moving toward the display table.", "depends_on": ["O2", "O5"]}, {"id": "C6", "type": "relation", "text": "The cue card is on the display table.", "depends_on": ["O3", "O5"]}, {"id": "C7", "type": "relation", "text": "The floor light marks the stage ramp edge.", "depends_on": ["O6", "O4"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "6-ceremony_036", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Lead Actress in a Comedy Series recipient next to a vertical display column at the 2024 Primetime Emmy Awards. The column shows the category and winner name line in the background. The recipient stands behind a display pedestal with a winner placard on it. A rope barrier crosses the foreground, and a press camera is placed behind the barrier.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_036_Jean_Smart.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_036_Jean_Smart.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "display column"}, {"id": "O2", "name": "Jean Smart", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner placard"}, {"id": "O4", "name": "display pedestal"}, {"id": "O5", "name": "rope barrier"}, {"id": "O6", "name": "press camera"}], "constraints": [{"id": "C1", "type": "layout", "text": "The display column is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The display column shows the name Jean Smart.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The display column shows the category Outstanding Lead Actress in a Comedy Series.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Jean Smart is next to the display column.", "depends_on": ["O2", "O1"]}, {"id": "C5", "type": "relation", "text": "The winner placard is on the display pedestal.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The display pedestal is in front of the recipient.", "depends_on": ["O4", "O2"]}, {"id": "C7", "type": "layout", "text": "The rope barrier crosses the foreground.", "depends_on": ["O5"]}, {"id": "C8", "type": "relation", "text": "The press camera is behind the rope barrier.", "depends_on": ["O6", "O5"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_037", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Supporting Actor in a Comedy Series recipient beside a stage ramp at the 2024 Primetime Emmy Awards. A side result screen on one side behind the ramp displays the category and winner name line. The recipient stands at the ramp entrance holding a cue sheet. A floor light marks the ramp edge, and a microphone stand waits near the top of the ramp.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_037_Ebon_Moss_Bachrach.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_037_Ebon_Moss_Bachrach.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Ebon Moss-Bachrach", "reference_ids": ["R1"]}, {"id": "O3", "name": "cue sheet"}, {"id": "O4", "name": "stage ramp"}, {"id": "O5", "name": "floor light"}, {"id": "O6", "name": "microphone stand"}], "constraints": [{"id": "C1", "type": "layout", "text": "The side result screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The side result screen shows the name Ebon Moss-Bachrach.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The side result screen shows the category Outstanding Supporting Actor in a Comedy Series.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Ebon Moss-Bachrach stands at the stage ramp entrance.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Ebon Moss-Bachrach is holding the cue sheet.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The floor light marks the stage ramp edge.", "depends_on": ["O5", "O4"]}, {"id": "C7", "type": "relation", "text": "The microphone stand is near the top of the stage ramp.", "depends_on": ["O6", "O4"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "6-ceremony_038", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Supporting Actress in a Comedy Series recipient at the 2024 Primetime Emmy Awards entering from a curtain-side opening. The recipient holds the result card while stepping beside the curtain opening. A side result screen shows the category and winner name line. A strip of floor tape marks the walking path, and a stage monitor faces the entrance path.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_038_Liza_Colon_Zayas.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_038_Liza_Colon_Zayas.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Liza Colon-Zayas", "reference_ids": ["R1"]}, {"id": "O3", "name": "result card"}, {"id": "O4", "name": "curtain opening"}, {"id": "O5", "name": "floor tape"}, {"id": "O6", "name": "stage monitor"}], "constraints": [{"id": "C1", "type": "relation", "text": "The side result screen shows the name Liza Colon-Zayas.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "The side result screen shows the category Outstanding Supporting Actress in a Comedy Series.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "Liza Colon-Zayas is holding the result card.", "depends_on": ["O2", "O3"]}, {"id": "C4", "type": "relation", "text": "Liza Colon-Zayas is stepping beside the curtain opening.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "The floor tape marks the walking path beside the curtain opening.", "depends_on": ["O5", "O4"]}, {"id": "C6", "type": "relation", "text": "The stage monitor faces the entrance path.", "depends_on": ["O6", "O4"]}, {"id": "C7", "type": "layout", "text": "The side result screen is positioned behind the entrance path.", "depends_on": ["O1"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "6-ceremony_039", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Lead Actor in a Limited or Anthology Series or Movie recipient leaving the audience aisle at the 2024 Primetime Emmy Awards. A backdrop screen on one side beyond the steps displays the category and winner name line. The recipient is at the foot of the stage steps with the event program visible. Aisle lights run along the walkway, and the stage edge cuts across the midground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_039_Richard_Gadd.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_039_Richard_Gadd.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Richard Gadd", "reference_ids": ["R1"]}, {"id": "O3", "name": "event program"}, {"id": "O4", "name": "audience aisle"}, {"id": "O5", "name": "steps"}, {"id": "O6", "name": "lights"}, {"id": "O7", "name": "stage edge"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The steps are stage steps.", "depends_on": ["O5"]}, {"id": "C2", "type": "attribute", "text": "The lights are aisle lights.", "depends_on": ["O6"]}, {"id": "C3", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "The backdrop screen shows the name Richard Gadd.", "depends_on": ["O1", "O2"]}, {"id": "C5", "type": "attribute", "text": "The backdrop screen shows the category Outstanding Lead Actor in a Limited or Anthology Series or Movie.", "depends_on": ["O1"]}, {"id": "C6", "type": "relation", "text": "Richard Gadd is at the foot of the stage steps.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "relation", "text": "Richard Gadd is holding the event program.", "depends_on": ["O2", "O3"]}, {"id": "C8", "type": "relation", "text": "The audience aisle leads to the stage steps.", "depends_on": ["O4", "O5"]}, {"id": "C9", "type": "layout", "text": "The aisle lights run along the walkway.", "depends_on": ["O6"]}, {"id": "C10", "type": "layout", "text": "The stage edge cuts across the midground.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 10, "constraint_type_counts": {"attribute": 3, "layout": 3, "relation": 4}} +{"id": "6-ceremony_040", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Lead Actress in a Limited or Anthology Series or Movie recipient taking a solo award photo at the 2024 Primetime Emmy Awards. A winner photo backdrop on one side displays the category and winner name line. The recipient stands beside the backdrop while holding a photo call placard with both hands. Light stands frame the sides, and a floor mark is visible below the recipient.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_040_Jodie_Foster.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_040_Jodie_Foster.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner photo backdrop"}, {"id": "O2", "name": "Jodie Foster", "reference_ids": ["R1"]}, {"id": "O3", "name": "photo call placard"}, {"id": "O4", "name": "stands"}, {"id": "O5", "name": "floor mark"}], "constraints": [{"id": "C1", "type": "attribute", "text": "The stands are light stands.", "depends_on": ["O4"]}, {"id": "C2", "type": "layout", "text": "The winner photo backdrop is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The winner photo backdrop shows the name Jodie Foster.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "attribute", "text": "The winner photo backdrop shows the category Outstanding Lead Actress in a Limited or Anthology Series or Movie.", "depends_on": ["O1"]}, {"id": "C5", "type": "relation", "text": "Jodie Foster stands beside the winner photo backdrop.", "depends_on": ["O2", "O1"]}, {"id": "C6", "type": "relation", "text": "Jodie Foster is holding the photo call placard.", "depends_on": ["O2", "O3"]}, {"id": "C7", "type": "layout", "text": "The light stands frame the sides of the scene.", "depends_on": ["O4"]}, {"id": "C8", "type": "relation", "text": "The floor mark is below the recipient.", "depends_on": ["O5", "O2"]}], "num_entities": 5, "num_constraints": 8, "constraint_type_counts": {"attribute": 2, "layout": 2, "relation": 4}} +{"id": "6-ceremony_041", "category": "6-ceremony", "prompt": "Create an image of the Best New Artist recipient at the 2024 GRAMMY Awards on a side-stage riser. The recipient holds the award trophy close to a speech microphone while a music stand sits just to the side. A backdrop screen angles across the background with the category and winner name line, and the stage floor remains visible across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_041_Victoria_Monet.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_041_Victoria_Monet.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Victoria Monet", "reference_ids": ["R1"]}, {"id": "O3", "name": "award trophy"}, {"id": "O4", "name": "speech microphone"}, {"id": "O5", "name": "music stand"}, {"id": "O6", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Victoria Monet.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Best New Artist.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Victoria Monet is positioned near the speech microphone.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Victoria Monet is holding the award trophy.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The award trophy is close to the speech microphone.", "depends_on": ["O3", "O4"]}, {"id": "C7", "type": "relation", "text": "The music stand is beside the speech microphone.", "depends_on": ["O5", "O4"]}, {"id": "C8", "type": "layout", "text": "The stage floor is present across the lower foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_042", "category": "6-ceremony", "prompt": "Create an image of the Best Pop Solo Performance recipient at the 2024 GRAMMY Awards on a music-stage interview mark. A backdrop screen on one side behind the microphone displays the category and winner name line. The recipient stands at the microphone stand while holding the event program. An amplifier case sits near the recipient, a guitar stand is placed beside it, and a floor cable trails across the lower foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_042_Miley_Cyrus.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_042_Miley_Cyrus.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Miley Cyrus", "reference_ids": ["R1"]}, {"id": "O3", "name": "event program"}, {"id": "O4", "name": "microphone stand"}, {"id": "O5", "name": "amplifier case"}, {"id": "O6", "name": "guitar stand"}, {"id": "O7", "name": "floor cable"}], "constraints": [{"type": "layout", "text": "The backdrop screen is positioned behind the microphone stand.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The backdrop screen shows the name Miley Cyrus.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The backdrop screen shows the category Best Pop Solo Performance.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Miley Cyrus stands at the microphone stand.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "Miley Cyrus is holding the event program.", "depends_on": ["O2", "O3"], "id": "C5"}, {"type": "relation", "text": "The amplifier case sits near Miley Cyrus.", "depends_on": ["O5", "O2"], "id": "C6"}, {"type": "relation", "text": "The guitar stand is placed beside the amplifier case.", "depends_on": ["O6", "O5"], "id": "C7"}, {"type": "layout", "text": "The floor cable trails across the lower foreground.", "depends_on": ["O7"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_043", "category": "6-ceremony", "prompt": "Create an image of the Best R&B Performance recipient arriving from a side curtain at the 2024 GRAMMY Awards. The recipient is in the midground beside the curtain opening and holds a performance card while walking toward the microphone stand. A backdrop screen shows the category and winner name line in the background. A floor monitor faces the entrance path, and the stage floor is visible in front.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_043_Coco_Jones.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_043_Coco_Jones.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Coco Jones", "reference_ids": ["R1"]}, {"id": "O3", "name": "performance card"}, {"id": "O4", "name": "curtain opening"}, {"id": "O5", "name": "microphone stand"}, {"id": "O6", "name": "floor monitor"}, {"id": "O7", "name": "stage floor"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned in the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Coco Jones.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Best R&B Performance.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Coco Jones is positioned beside the curtain opening.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Coco Jones is holding the performance card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "Coco Jones is walking toward the microphone stand.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "relation", "text": "The floor monitor faces the curtain opening.", "depends_on": ["O6", "O4"]}, {"id": "C8", "type": "layout", "text": "The stage floor is positioned in the foreground.", "depends_on": ["O7"]}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 5}} +{"id": "6-ceremony_044", "category": "6-ceremony", "prompt": "Create an image of the Best Country Solo Performance recipient at the 2024 GRAMMY Awards in a side-stage music corner. The recipient stands beside an acoustic guitar case, with the setlist card placed on a nearby stool. A winner board behind the corner shows the category and winner name line. A microphone stand is angled toward the recipient, and a floor cable loops near the stool.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_044_Chris_Stapleton.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_044_Chris_Stapleton.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner board"}, {"id": "O2", "name": "Chris Stapleton", "reference_ids": ["R1"]}, {"id": "O3", "name": "setlist card"}, {"id": "O4", "name": "acoustic guitar case"}, {"id": "O5", "name": "stool"}, {"id": "O6", "name": "microphone stand"}, {"id": "O7", "name": "floor cable"}], "constraints": [{"type": "layout", "text": "The winner board is positioned behind the side-stage music corner.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The winner board shows the name Chris Stapleton.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The winner board shows the category Best Country Solo Performance.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Chris Stapleton stands beside the acoustic guitar case.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "The setlist card is placed on the stool.", "depends_on": ["O3", "O5"], "id": "C5"}, {"type": "relation", "text": "The microphone stand is angled toward Chris Stapleton.", "depends_on": ["O6", "O2"], "id": "C6"}, {"type": "relation", "text": "The floor cable loops near the stool.", "depends_on": ["O7", "O5"], "id": "C7"}], "num_entities": 7, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "6-ceremony_045", "category": "6-ceremony", "prompt": "Create an image of the Best African Music Performance recipient at the 2024 GRAMMY Awards in a backstage press corner. A result board on one side behind the press table displays the category and winner name line. The recipient stands behind the table with the press credential near the table center. A row of microphones points across the table toward the recipient, and a camera bag sits under one side of the table.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_045_Tyla.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_045_Tyla.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "result board"}, {"id": "O2", "name": "Tyla", "reference_ids": ["R1"]}, {"id": "O3", "name": "press credential"}, {"id": "O4", "name": "press table"}, {"id": "O5", "name": "microphones"}, {"id": "O6", "name": "camera bag"}], "constraints": [{"id": "C1", "type": "layout", "text": "The result board is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The result board shows the name Tyla.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The result board shows the category Best African Music Performance.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Tyla stands behind the press table.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "The press credential is placed on the press table.", "depends_on": ["O3", "O4"]}, {"id": "C6", "type": "relation", "text": "The microphones point across the press table toward Tyla.", "depends_on": ["O5", "O4", "O2"]}, {"id": "C7", "type": "relation", "text": "The camera bag sits under one side of the press table.", "depends_on": ["O6", "O4"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "6-ceremony_046", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Performance by a Male Actor in a Leading Role recipient at the 2024 Screen Actors Guild Awards standing behind the front stage rail. On one side of the background, a backdrop screen displays the category and winner name line. The recipient holds the winner card on the other side while facing a microphone stand. A stage monitor is placed between the rail and the recipient.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "backdrop screen"}, {"id": "O2", "name": "Cillian Murphy", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner card"}, {"id": "O4", "name": "stage monitor"}, {"id": "O5", "name": "microphone stand"}, {"id": "O6", "name": "stage rail"}], "constraints": [{"id": "C1", "type": "layout", "text": "The backdrop screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The backdrop screen shows the name Cillian Murphy.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The backdrop screen shows the category Outstanding Performance by a Male Actor in a Leading Role.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Cillian Murphy stands behind the front stage rail.", "depends_on": ["O2", "O6"]}, {"id": "C5", "type": "relation", "text": "Cillian Murphy is holding the winner card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "Cillian Murphy faces the microphone stand.", "depends_on": ["O2", "O5"]}, {"id": "C7", "type": "relation", "text": "The stage monitor is between the stage rail and the recipient.", "depends_on": ["O4", "O6", "O2"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 5}} +{"id": "6-ceremony_047", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Performance by a Female Actor in a Leading Role recipient at the 2024 Screen Actors Guild Awards in a side-stage photo lane. A vertical category board on one side displays the category and winner name line. The recipient stands on a floor mark on the other side while holding the winner placard. Two light stands frame the sides of the lane, and a camera tripod is positioned in the foreground.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Lily_Gladstone.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Lily_Gladstone.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "category board"}, {"id": "O2", "name": "Lily Gladstone", "reference_ids": ["R1"]}, {"id": "O3", "name": "winner placard"}, {"id": "O4", "name": "floor mark"}, {"id": "O5", "name": "light stands"}, {"id": "O6", "name": "camera tripod"}], "constraints": [{"id": "C1", "type": "relation", "text": "The category board shows the name Lily Gladstone.", "depends_on": ["O1", "O2"]}, {"id": "C2", "type": "attribute", "text": "The category board shows the category Outstanding Performance by a Female Actor in a Leading Role.", "depends_on": ["O1"]}, {"id": "C3", "type": "relation", "text": "The category board is positioned behind Lily Gladstone.", "depends_on": ["O1", "O2"]}, {"id": "C4", "type": "relation", "text": "Lily Gladstone is holding the winner placard.", "depends_on": ["O2", "O3"]}, {"id": "C5", "type": "relation", "text": "Lily Gladstone stands on the floor mark.", "depends_on": ["O2", "O4"]}, {"id": "C6", "type": "layout", "text": "The light stands frame the sides of the lane.", "depends_on": ["O5"]}, {"id": "C7", "type": "layout", "text": "The camera tripod is positioned in the foreground.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_048", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Performance by a Male Actor in a Supporting Role recipient at the 2024 Screen Actors Guild Awards standing behind a rope barrier for a solo award photo. A winner photo backdrop on one side displays the category and winner name line. The recipient holds a press credential beside the backdrop. A floor mark sits under the recipient, and the stage edge is visible behind the barrier.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner photo backdrop"}, {"id": "O2", "name": "Robert Downey Jr.", "reference_ids": ["R1"]}, {"id": "O3", "name": "press credential"}, {"id": "O4", "name": "rope barrier"}, {"id": "O5", "name": "floor mark"}, {"id": "O6", "name": "stage edge"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner photo backdrop is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner photo backdrop shows the name Robert Downey Jr.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner photo backdrop shows the category Outstanding Performance by a Male Actor in a Supporting Role.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Robert Downey Jr. stands behind the rope barrier.", "depends_on": ["O2", "O4"]}, {"id": "C5", "type": "relation", "text": "Robert Downey Jr. is holding the press credential.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "Robert Downey Jr. stands beside the winner photo backdrop.", "depends_on": ["O2", "O1"]}, {"id": "C7", "type": "relation", "text": "The floor mark sits under the recipient.", "depends_on": ["O5", "O2"]}, {"id": "C8", "type": "relation", "text": "The stage edge is positioned behind the rope barrier.", "depends_on": ["O6", "O4"]}], "num_entities": 6, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} +{"id": "6-ceremony_049", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Performance by a Female Actor in a Supporting Role recipient at the 2024 Screen Actors Guild Awards beside a large winner screen. The winner screen on one side of the background displays the category and winner name line. The recipient stands near a stage table on the other side and holds the result card. A floor monitor sits in front of the table, and the stage edge runs along the bottom of the image.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "winner screen"}, {"id": "O2", "name": "Da'Vine Joy Randolph", "reference_ids": ["R1"]}, {"id": "O3", "name": "result card"}, {"id": "O4", "name": "floor monitor"}, {"id": "O5", "name": "stage table"}, {"id": "O6", "name": "stage edge"}], "constraints": [{"id": "C1", "type": "layout", "text": "The winner screen is positioned on one side of the background.", "depends_on": ["O1"]}, {"id": "C2", "type": "relation", "text": "The winner screen shows the name Da'Vine Joy Randolph.", "depends_on": ["O1", "O2"]}, {"id": "C3", "type": "attribute", "text": "The winner screen shows the category Outstanding Performance by a Female Actor in a Supporting Role.", "depends_on": ["O1"]}, {"id": "C4", "type": "relation", "text": "Da'Vine Joy Randolph stands near the stage table.", "depends_on": ["O2", "O5"]}, {"id": "C5", "type": "relation", "text": "Da'Vine Joy Randolph is holding the result card.", "depends_on": ["O2", "O3"]}, {"id": "C6", "type": "relation", "text": "The floor monitor sits in front of the stage table.", "depends_on": ["O4", "O5"]}, {"id": "C7", "type": "layout", "text": "The stage edge runs along the bottom of the image.", "depends_on": ["O6"]}], "num_entities": 6, "num_constraints": 7, "constraint_type_counts": {"attribute": 1, "layout": 2, "relation": 4}} +{"id": "6-ceremony_050", "category": "6-ceremony", "prompt": "Create an image of the Outstanding Performance by a Male Actor in a Drama Series recipient at the 2024 Screen Actors Guild Awards from the audience aisle. The recipient stands beside an aisle marker and holds a program booklet near the first row of seats. A large side result screen behind the seats shows the category and winner name line. A low handrail borders the aisle, and a floor spotlight points toward the result screen.", "reference_images": [{"id": "R1", "path": "reference_images/6-ceremony/6-ceremony_050_Pedro_Pascal.jpg"}], "reference_image_paths": ["reference_images/6-ceremony/6-ceremony_050_Pedro_Pascal.jpg"], "num_reference_images": 1, "entities": [{"id": "O1", "name": "side result screen"}, {"id": "O2", "name": "Pedro Pascal", "reference_ids": ["R1"]}, {"id": "O3", "name": "program booklet"}, {"id": "O4", "name": "aisle marker"}, {"id": "O5", "name": "first row of seats"}, {"id": "O6", "name": "handrail"}, {"id": "O7", "name": "floor spotlight"}], "constraints": [{"type": "layout", "text": "The side result screen is positioned behind the first row of seats.", "depends_on": ["O1"], "id": "C1"}, {"type": "relation", "text": "The side result screen shows the name Pedro Pascal.", "depends_on": ["O1", "O2"], "id": "C2"}, {"type": "attribute", "text": "The side result screen shows the category Outstanding Performance by a Male Actor in a Drama Series.", "depends_on": ["O1"], "id": "C3"}, {"type": "relation", "text": "Pedro Pascal stands beside the aisle marker.", "depends_on": ["O2", "O4"], "id": "C4"}, {"type": "relation", "text": "Pedro Pascal is holding the program booklet.", "depends_on": ["O2", "O3"], "id": "C5"}, {"type": "relation", "text": "The first row of seats is near Pedro Pascal.", "depends_on": ["O5", "O2"], "id": "C6"}, {"type": "relation", "text": "The handrail borders the aisle marker.", "depends_on": ["O6", "O4"], "id": "C7"}, {"type": "relation", "text": "The floor spotlight points toward the side result screen.", "depends_on": ["O7", "O1"], "id": "C8"}], "num_entities": 7, "num_constraints": 8, "constraint_type_counts": {"attribute": 1, "layout": 1, "relation": 6}} diff --git a/reference_images/1-cartoon/1-cartoon_001_Tiggy.jpg b/reference_images/1-cartoon/1-cartoon_001_Tiggy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d9ed00a4d9414b67d9cc78e6862a8a01db6fcca --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_001_Tiggy.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0203db04a49fc58545eacc18240de84a97dfdf5118fa1cd07dbb3bd3616eb33 +size 23881 diff --git a/reference_images/1-cartoon/1-cartoon_002_Oscar.jpg b/reference_images/1-cartoon/1-cartoon_002_Oscar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b53bccd288b62217ce5aea2d42fcb328e2e62f3 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_002_Oscar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f92ccf678d1714d937ccab43ed782b2e812f53e32f4c246e858a0f4bb05e3 +size 76885 diff --git a/reference_images/1-cartoon/1-cartoon_003_Kid.jpg b/reference_images/1-cartoon/1-cartoon_003_Kid.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70c3f6318f8d5b37f80250a587914b13cf6e332c --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_003_Kid.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbed372643a9f5a1adbb9ab14ca50e3c38e57b628d83390b0eafa6fb260e56c +size 32643 diff --git a/reference_images/1-cartoon/1-cartoon_004_Gretel_Grant_Gomez.jpg b/reference_images/1-cartoon/1-cartoon_004_Gretel_Grant_Gomez.jpg new file mode 100644 index 0000000000000000000000000000000000000000..726e6fb46b0af5fc0218470fdfce8f24d58ab7ee --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_004_Gretel_Grant_Gomez.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dfdd1999447e4acbfcbd02c2f6188f639264b56a55aadfa7705a7d7b747cad4 +size 107516 diff --git a/reference_images/1-cartoon/1-cartoon_005_Rawhide.jpg b/reference_images/1-cartoon/1-cartoon_005_Rawhide.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68bd5b0017b58a14dbbe426177cbdaf7afe3891d --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_005_Rawhide.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831a250c194c6cff91efdd78f0b4832bb14fef43c3d9a5b49a3dd7331a006934 +size 45498 diff --git a/reference_images/1-cartoon/1-cartoon_006_Kipo_Oak.jpg b/reference_images/1-cartoon/1-cartoon_006_Kipo_Oak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0d342c0f25a5f66453195cf017436987a210287 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_006_Kipo_Oak.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248fc8bbfe728f9ad95be360be541ebe7c05d3faba95131341f6cf8689c54d90 +size 78988 diff --git a/reference_images/1-cartoon/1-cartoon_007_Hailey_Banks.jpg b/reference_images/1-cartoon/1-cartoon_007_Hailey_Banks.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2242e048abe16c796669cfc87c8b197bd3eaa347 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_007_Hailey_Banks.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f529cff47b794044347538a0e8eb2740b82ef6712808e85ed16dfbe0e2581c0 +size 139798 diff --git a/reference_images/1-cartoon/1-cartoon_008_Pinecone.jpg b/reference_images/1-cartoon/1-cartoon_008_Pinecone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..744cb13d6446646cc9ee7247237abcd9181922d1 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_008_Pinecone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b6e35919ba4169d633358abaf1004daa7ef32bad7c23f22a058e039f3865199 +size 277746 diff --git a/reference_images/1-cartoon/1-cartoon_009_Parker_J_Cloud.jpg b/reference_images/1-cartoon/1-cartoon_009_Parker_J_Cloud.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32d0bf0faf868d7a8b7c1e050f647defd3f93519 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_009_Parker_J_Cloud.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db653ddf25ac62bf4e52caa805ccb9b749afa2d10f5a2dcf1238fdf91069cee2 +size 32276 diff --git a/reference_images/1-cartoon/1-cartoon_010_Molly_Mabray.jpg b/reference_images/1-cartoon/1-cartoon_010_Molly_Mabray.jpg new file mode 100644 index 0000000000000000000000000000000000000000..385850bcc01eaf85ef64f0d2a7c5c7a5cd20f5a3 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_010_Molly_Mabray.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de9d3a5b585a9c35d1066b979e97d6849f83cee2e2719a5f77c7aa418d7f7c9 +size 43194 diff --git a/reference_images/1-cartoon/1-cartoon_011_Mira.jpg b/reference_images/1-cartoon/1-cartoon_011_Mira.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0390b3b58e661dc3f3b058146f42aac2b13b331 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_011_Mira.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d8dee1caf27f6bc004afd740424427042a62ffc9a973a0b2d590c35f549dd7 +size 162012 diff --git a/reference_images/1-cartoon/1-cartoon_012_Doug.jpg b/reference_images/1-cartoon/1-cartoon_012_Doug.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6bf44abfe6ab28a05d9c9e86828feb7a897f7ce --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_012_Doug.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548dac9eeca7c515fc1571f10fa6d2e5b3324d6f1c90e9ecfa4181a8e3f2cce6 +size 39260 diff --git a/reference_images/1-cartoon/1-cartoon_013_Ada_Twist.jpg b/reference_images/1-cartoon/1-cartoon_013_Ada_Twist.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24a18d796b569017606d1c12addaae5c50bd2d53 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_013_Ada_Twist.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06127b271e8a89705c8ab4aa9e1ef368d8c700c6def92bc65a9d3eed1459003 +size 132683 diff --git a/reference_images/1-cartoon/1-cartoon_014_Glendale.jpg b/reference_images/1-cartoon/1-cartoon_014_Glendale.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84ed0b019da24dd8d9818b39544319dd01c18319 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_014_Glendale.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a321844f76340341ebd2e2e46ba53e0d550246740546061a2f05989122a8fb82 +size 19639 diff --git a/reference_images/1-cartoon/1-cartoon_015_Bertie_Songthrush.jpg b/reference_images/1-cartoon/1-cartoon_015_Bertie_Songthrush.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d74cbffd5f86e7f13eb380ac4427a665ca2b1ed6 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_015_Bertie_Songthrush.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd720e4ccd0ceaaf88cac5ea321a75113e63185b6b25b945504e0e6cb1fdd7e +size 64272 diff --git a/reference_images/1-cartoon/1-cartoon_016_Cupcake.jpg b/reference_images/1-cartoon/1-cartoon_016_Cupcake.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87af385726ec39d45f9e95762de974d99d0fdf16 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_016_Cupcake.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e513cc773c65bf261abab50b04477303d6adc050486df2ae406cb4b0d47d8463 +size 86506 diff --git a/reference_images/1-cartoon/1-cartoon_017_Garbage.jpg b/reference_images/1-cartoon/1-cartoon_017_Garbage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fd90a71cde3ff0ee83199ba7d5495bf22948996 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_017_Garbage.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff4ff21e02b2f5a6e607ac0374bd9946dc1b2c345c5b13485389b91458ee3e7 +size 39544 diff --git a/reference_images/1-cartoon/1-cartoon_018_Pascal.jpg b/reference_images/1-cartoon/1-cartoon_018_Pascal.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdbbb0d97ab433916139a8fb9c2badc497eb98ac --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_018_Pascal.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a23a17a70efb7ddce65f92cde70afd3155ab1eb483f144e1bb7e99a3880742 +size 60985 diff --git a/reference_images/1-cartoon/1-cartoon_018_Seth.jpg b/reference_images/1-cartoon/1-cartoon_018_Seth.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9ed25cf468f0e6d16da78e5a57c78081f2419e3 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_018_Seth.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4abe0955fe4a21a48458e98a151471c7eaf51b99487cd9e29b3bca3781c3345e +size 58660 diff --git a/reference_images/1-cartoon/1-cartoon_019_Elliott.jpg b/reference_images/1-cartoon/1-cartoon_019_Elliott.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36b9b8a8f4890fb419db18f31c4a3b67b8e9b659 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_019_Elliott.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9cb5270f48f2d067b36adc6faf1bde2a633755e58ad1992d7209554e27016e +size 33616 diff --git a/reference_images/1-cartoon/1-cartoon_019_Mo.jpg b/reference_images/1-cartoon/1-cartoon_019_Mo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..389a2d7037849e0b1358e4490250e4fa0654d191 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_019_Mo.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c4415b6fe542a9909e19c7bfedccabf6adbd2074ea327f26cd670f3920f5f6 +size 25633 diff --git a/reference_images/1-cartoon/1-cartoon_020_Barney_Guttman.jpg b/reference_images/1-cartoon/1-cartoon_020_Barney_Guttman.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6219d89401b2f084f2463062ca5f680a1572e788 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_020_Barney_Guttman.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c02e248d0752f8cce4ead321a7db2679a1253bee29a3339abfb033440c35b8 +size 35453 diff --git a/reference_images/1-cartoon/1-cartoon_020_Norma_Khan.jpg b/reference_images/1-cartoon/1-cartoon_020_Norma_Khan.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d5498ed1d77f8b9b27dee0288a3afd15d8b13d9 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_020_Norma_Khan.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de504e1f969b136c2e9598a9801d9f7c5d90ef0029bbc3abca1b7cd2af599b42 +size 23549 diff --git a/reference_images/1-cartoon/1-cartoon_021_Sprout.jpg b/reference_images/1-cartoon/1-cartoon_021_Sprout.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76661d07a64d301792d9bbaa57d37ebc5c51cd7e --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_021_Sprout.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df0288b3b3bf785b5b9956ff753b163d76bec91604fd6fbbf49869c709ce4aa +size 20165 diff --git a/reference_images/1-cartoon/1-cartoon_021_Wolfboy.jpg b/reference_images/1-cartoon/1-cartoon_021_Wolfboy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57420a574cf789f7b4ee2c2cb9ef361a971ad474 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_021_Wolfboy.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac228e29d69d03b11ac250ccfe57e47d8f25ee8bd81ba09c45a1e45062f5b377 +size 17898 diff --git a/reference_images/1-cartoon/1-cartoon_022_Daniel_Spellbound.jpg b/reference_images/1-cartoon/1-cartoon_022_Daniel_Spellbound.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb009e350dc1d8bff27fab615aa5ddda8afa68dc --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_022_Daniel_Spellbound.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d6ce4b260bc72f3a150eaceeb82915e4ec64ec061efefe554ccd03db5edfe2 +size 16123 diff --git a/reference_images/1-cartoon/1-cartoon_022_Hoagie.jpg b/reference_images/1-cartoon/1-cartoon_022_Hoagie.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a80b514e181d7d72ef071b663e55741e4ca514a3 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_022_Hoagie.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6786fa3a94ae6186c9d503b42c9de17fddcab227952d71d0fc57e07a987053 +size 19073 diff --git a/reference_images/1-cartoon/1-cartoon_023_Beebs.jpg b/reference_images/1-cartoon/1-cartoon_023_Beebs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d14743c4afcb733e85246c69ec53c0283281ca2 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_023_Beebs.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05036df26980db0d193de242d345e5cf094361329a0ecd8dc84c17b016fedb22 +size 133468 diff --git a/reference_images/1-cartoon/1-cartoon_023_Shrike_Sanchez.jpg b/reference_images/1-cartoon/1-cartoon_023_Shrike_Sanchez.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6da8244b6c077421a920c5c2b19a541da088596e --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_023_Shrike_Sanchez.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3fb39666b3c60ac56fcab37077504b93fb35272f22bbb133f49e8999958e2c +size 132445 diff --git a/reference_images/1-cartoon/1-cartoon_024_Pepper_Ann_Pearson.jpg b/reference_images/1-cartoon/1-cartoon_024_Pepper_Ann_Pearson.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f473a762e2f6d35272a01088d95a046ffce308ec --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_024_Pepper_Ann_Pearson.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30eb2b752f9fb892394e7e8e962aa806926e77ecb6550a3c9ec0d0b4fd32b862 +size 22770 diff --git a/reference_images/1-cartoon/1-cartoon_025_Milo_Murphy.jpg b/reference_images/1-cartoon/1-cartoon_025_Milo_Murphy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d34328f81a674a83df80de6af349c34aa0b8383 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_025_Milo_Murphy.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953f744fcdc4a0a63f4e2786f1207ecdbf04faa17daa1cbbc3f917bebc1a6b14 +size 74807 diff --git a/reference_images/1-cartoon/1-cartoon_026_Robotboy.jpg b/reference_images/1-cartoon/1-cartoon_026_Robotboy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09b5a05be46cb5e1b4f393d18f487d70f10a717c --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_026_Robotboy.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9295ea19a867724e8407eb36b7ff8a44c0b84487555a0382a696074b44bf9637 +size 13220 diff --git a/reference_images/1-cartoon/1-cartoon_027_Sheen_Estevez.jpg b/reference_images/1-cartoon/1-cartoon_027_Sheen_Estevez.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd5840f60e8e011cdf6f8ed3ed55572bc8a10c63 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_027_Sheen_Estevez.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b68049bea3101f01ab16ae58ee206b13bd13f388f497d8bdf30aedac78b689 +size 139340 diff --git a/reference_images/1-cartoon/1-cartoon_028_Dorg_Van_Dango.jpg b/reference_images/1-cartoon/1-cartoon_028_Dorg_Van_Dango.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd0575f34116dfea3d562abb3ffea3dcb175414a --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_028_Dorg_Van_Dango.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3837d1aaf3956d0af03658f8ed39279a0bfe5d2d0a9cc4ff5c6d97bdc0fc9596 +size 65024 diff --git a/reference_images/1-cartoon/1-cartoon_029_Ollie_Allen.jpg b/reference_images/1-cartoon/1-cartoon_029_Ollie_Allen.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2b3cb4ed4d88cb690ca9d28f4125cdc030d1608 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_029_Ollie_Allen.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694528cfe6af8de2834a66fe55809bbf0a72c4c8cb2636765b591faf541f208d +size 18863 diff --git a/reference_images/1-cartoon/1-cartoon_030_Angelo.jpg b/reference_images/1-cartoon/1-cartoon_030_Angelo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a5fd4a736234e6e3e7a71117949df5b2804ef51 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_030_Angelo.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7227e5fa42ca58d75afd6fbcf077b19074bd9813d0bc6fac3a58e5f5964ae0 +size 32812 diff --git a/reference_images/1-cartoon/1-cartoon_031_Cornelius_Fillmore.jpg b/reference_images/1-cartoon/1-cartoon_031_Cornelius_Fillmore.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3648cb760b96d27c3f75b2f50f637ed984d8f4ab --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_031_Cornelius_Fillmore.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df12892c481e97fb69a9537fd5fcc29066be367cc8da47cb5b0bff204dcae23 +size 120828 diff --git a/reference_images/1-cartoon/1-cartoon_032_Maggie_Pesky.jpg b/reference_images/1-cartoon/1-cartoon_032_Maggie_Pesky.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a8b9b1142e951a4539a8c629419a8381a555738 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_032_Maggie_Pesky.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17eacdb7a3e9177f42458999f0b076e6897ce635526c7fce5fb22c697657d34c +size 167773 diff --git a/reference_images/1-cartoon/1-cartoon_033_Dave_the_Barbarian.jpg b/reference_images/1-cartoon/1-cartoon_033_Dave_the_Barbarian.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f60c612341d3719df2b6358cbdbd03a558c89fa --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_033_Dave_the_Barbarian.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21dd8301525dd014e64ba973afa604d38939b036c56e447f57bbec3ea671634 +size 78099 diff --git a/reference_images/1-cartoon/1-cartoon_034_Bessie_Higgenbottom.jpg b/reference_images/1-cartoon/1-cartoon_034_Bessie_Higgenbottom.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41202b167e7eefc63293469683d17ad4d655d5a9 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_034_Bessie_Higgenbottom.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a8c96e744ba8253956df242f72ef81cd7a2667fd8ae407d5c14b832c3cd731 +size 36953 diff --git a/reference_images/1-cartoon/1-cartoon_035_Manny_Rivera.jpg b/reference_images/1-cartoon/1-cartoon_035_Manny_Rivera.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb9e4f0d88a294e46832bd7470b74a39bf064c99 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_035_Manny_Rivera.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a3e6e0a330e4ab054081cc80e950672661d716f4d6f5bcc88962f47e108162 +size 170080 diff --git a/reference_images/1-cartoon/1-cartoon_036_Zick_Barrymore.jpg b/reference_images/1-cartoon/1-cartoon_036_Zick_Barrymore.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f42be329ebdb89addaca09830e34a4ed1480822 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_036_Zick_Barrymore.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2113ab586ab6b4a1a4bf20cfbe7f43a780b2fce038415c8ebb4122a11748ddf3 +size 89094 diff --git a/reference_images/1-cartoon/1-cartoon_037_Eliot_Kid.jpg b/reference_images/1-cartoon/1-cartoon_037_Eliot_Kid.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48ee3a3027d0a1d02415942d2464317c3c43e756 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_037_Eliot_Kid.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9b20d947e67f96e39b2c7e5b269d72cd75d242ad6c48c7ad554572a65ba646 +size 26992 diff --git a/reference_images/1-cartoon/1-cartoon_038_Sally_Bollywood.jpg b/reference_images/1-cartoon/1-cartoon_038_Sally_Bollywood.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d24c7fb96ebe4ddea235d0de0e9dd961bc222dc --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_038_Sally_Bollywood.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de599e4a28bccccd4b58476c4c87c62c02be8355ad5783dffa95e75526f75bcd +size 70561 diff --git a/reference_images/1-cartoon/1-cartoon_039_Todd.jpg b/reference_images/1-cartoon/1-cartoon_039_Todd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76223efe81ad739fd4bfd9d913e85c70b5f7022b --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_039_Todd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc6fea30a14addcd23f837db64a4e7e557948820d3870401286cde7bd38f0e8 +size 22531 diff --git a/reference_images/1-cartoon/1-cartoon_040_Maya_Santos.jpg b/reference_images/1-cartoon/1-cartoon_040_Maya_Santos.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b67e5f72c28f62d2890c34809e443f0946448480 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_040_Maya_Santos.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19105737400fb7361a9c7b76cf9f75b4b74dcd9891564f238ba71f72ea8f512 +size 22450 diff --git a/reference_images/1-cartoon/1-cartoon_041_Mikey_Simon.jpg b/reference_images/1-cartoon/1-cartoon_041_Mikey_Simon.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db71ed1d812c3526bb87c8af8c605980fdb09837 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_041_Mikey_Simon.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c09fb1ecf3c11553307846b9af4e0e86c9b663a0c8421aca9c94fe860e92c12 +size 83457 diff --git a/reference_images/1-cartoon/1-cartoon_042_Chuck_McFarlane.jpg b/reference_images/1-cartoon/1-cartoon_042_Chuck_McFarlane.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4862ebca7dff5c291f8652779b00062ead973f3d --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_042_Chuck_McFarlane.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4432e12bb237b8477f266843bf386d186e6c9e59056d43ac4e2900bb3154e1f8 +size 64613 diff --git a/reference_images/1-cartoon/1-cartoon_043_Lance.jpg b/reference_images/1-cartoon/1-cartoon_043_Lance.jpg new file mode 100644 index 0000000000000000000000000000000000000000..893f6096377916b44c7aa5991c847d95b4cbf2e3 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_043_Lance.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9deea2efd7e10fc91931f5030d09fad247709426fed892566cc6b508767de8b +size 29839 diff --git a/reference_images/1-cartoon/1-cartoon_044_Zak_Saturday.jpg b/reference_images/1-cartoon/1-cartoon_044_Zak_Saturday.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93bf8890e34e7673caf4f026465e50a355c7d0b9 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_044_Zak_Saturday.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3c4504a3333d61439b22cbdf4d88179a5eb938369848535092f5dff49b8db42 +size 31660 diff --git a/reference_images/1-cartoon/1-cartoon_045_Ansi_Molina.jpg b/reference_images/1-cartoon/1-cartoon_045_Ansi_Molina.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00c5d5895247ea4ba4015c703aa878d412449f73 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_045_Ansi_Molina.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946dd724d31f99b1f3901e05698ae063ef216f33fea3e9183fbc3b9a94c5eb33 +size 49523 diff --git a/reference_images/1-cartoon/1-cartoon_046_Vendetta.jpg b/reference_images/1-cartoon/1-cartoon_046_Vendetta.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8b7c118e3033f0993602416726e3fb2231019c8 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_046_Vendetta.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ed1b7d7ae7d294a640c2407520f532d4d7b10579dad51ffc317f0daeeaa772 +size 87749 diff --git a/reference_images/1-cartoon/1-cartoon_047_Sanjay_Patel.jpg b/reference_images/1-cartoon/1-cartoon_047_Sanjay_Patel.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a4325aa953e5d3489c2075f7f7dd0b8fd86afff --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_047_Sanjay_Patel.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7441140b35f05ed06467913fe57c78abd5f24e7583d665695defaaa15a46ef +size 20013 diff --git a/reference_images/1-cartoon/1-cartoon_048_Bunsen.jpg b/reference_images/1-cartoon/1-cartoon_048_Bunsen.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5bfc5aebac5f58a3fd1f9ca2c541ca9c10fdb16 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_048_Bunsen.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3193dbd71adffa9a38be4f3b8f1b21a41835d102bc36b356482b9cfc92d325 +size 40001 diff --git a/reference_images/1-cartoon/1-cartoon_049_Fangbone.jpg b/reference_images/1-cartoon/1-cartoon_049_Fangbone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2dfe5c6b7d9595e76acd8b07ed056f945452001b --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_049_Fangbone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15eb0914adf8b65f5ddab57dfd618473788c53501b02ff9b0612ef3e629c3fe2 +size 15089 diff --git a/reference_images/1-cartoon/1-cartoon_050_Rudy_Tabootie.jpg b/reference_images/1-cartoon/1-cartoon_050_Rudy_Tabootie.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ef7219bac730c086653503ede916b13962b8e55 --- /dev/null +++ b/reference_images/1-cartoon/1-cartoon_050_Rudy_Tabootie.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fcbcd77e9d48738419f047435f1f6750f0cd41121ff14778cdb752fcb694e1a +size 31598 diff --git a/reference_images/2-game/2-game_001_Curly_Brace.jpg b/reference_images/2-game/2-game_001_Curly_Brace.jpg new file mode 100644 index 0000000000000000000000000000000000000000..895580b76de7efb5b9489177022171d74a939c2d --- /dev/null +++ b/reference_images/2-game/2-game_001_Curly_Brace.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e92cc4e60f78f1a114a18c8b33d5281705b2410d4f59c718e86148f4a9f761b +size 46006 diff --git a/reference_images/2-game/2-game_002_Ariane_Yeong.png b/reference_images/2-game/2-game_002_Ariane_Yeong.png new file mode 100644 index 0000000000000000000000000000000000000000..56c43334781a6a054e4378006c0bc4589baa33fd --- /dev/null +++ b/reference_images/2-game/2-game_002_Ariane_Yeong.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0bdbfd864a1ad004f592f7070c93a9bb79f39ecd8a68bf47f99b2619d7fde54 +size 96383 diff --git a/reference_images/2-game/2-game_002_Elster.jpg b/reference_images/2-game/2-game_002_Elster.jpg new file mode 100644 index 0000000000000000000000000000000000000000..050ebc053828b16b04d1cecb0365e311af47b93a --- /dev/null +++ b/reference_images/2-game/2-game_002_Elster.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859a17dcb1553d772bd78f4b95d8fbea91885c30f2f536ae076967d99ca08019 +size 71420 diff --git a/reference_images/2-game/2-game_003_Dana_Zane.jpg b/reference_images/2-game/2-game_003_Dana_Zane.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52641786d2c0b124692a5afcbf0e3cb632fcaa6f --- /dev/null +++ b/reference_images/2-game/2-game_003_Dana_Zane.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7d0f6a7306ecebb4c4adda2a3533b60406eeedc8d7fde8282352e6b41ae545 +size 292122 diff --git a/reference_images/2-game/2-game_003_Jill_Stingray.jpg b/reference_images/2-game/2-game_003_Jill_Stingray.jpg new file mode 100644 index 0000000000000000000000000000000000000000..334c622053cf48985ec230cf7f119f747e41c9d5 --- /dev/null +++ b/reference_images/2-game/2-game_003_Jill_Stingray.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7290e8901c740f2c0082be97072dee94fc1b448cee49930ab348bf116eb61da5 +size 247058 diff --git a/reference_images/2-game/2-game_004_Nemesis.jpg b/reference_images/2-game/2-game_004_Nemesis.jpg new file mode 100644 index 0000000000000000000000000000000000000000..856b1bb21796f25bc20067ff6878e469dac35217 --- /dev/null +++ b/reference_images/2-game/2-game_004_Nemesis.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca2ca2f6d16aea06e3b9648e6f0dca5fb3f6a783314d068b5d934b7eadbf229 +size 309400 diff --git a/reference_images/2-game/2-game_005_Sumireko_Usami.jpg b/reference_images/2-game/2-game_005_Sumireko_Usami.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc9a0b65811f864bd566879355eb87608eb7a363 --- /dev/null +++ b/reference_images/2-game/2-game_005_Sumireko_Usami.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d5342dbd723dde96c910c5441d3a2cec127facacd02c70cbb0837972fe54b7 +size 37046 diff --git a/reference_images/2-game/2-game_006_Shiki_Tohno.jpg b/reference_images/2-game/2-game_006_Shiki_Tohno.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c288625aadfadaaee7c474c16c9b3d4397f8fb10 --- /dev/null +++ b/reference_images/2-game/2-game_006_Shiki_Tohno.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066a4e3b894dc3f4ea53ab2be8713a48f92e010fe717198b87c12b4ef36558ca +size 29328 diff --git a/reference_images/2-game/2-game_007_Sill_Plain.jpg b/reference_images/2-game/2-game_007_Sill_Plain.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21b877e0a84226694761b946ffde3071a181deff --- /dev/null +++ b/reference_images/2-game/2-game_007_Sill_Plain.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9153a2293592cb96371e20dd05445847f7b50b6b1ab5fe878e34cab601c46e +size 101802 diff --git a/reference_images/2-game/2-game_008_Makoto_Sawatari.jpg b/reference_images/2-game/2-game_008_Makoto_Sawatari.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36940f6335e08e0c2ff2c0b9e8e165aa4a4f1883 --- /dev/null +++ b/reference_images/2-game/2-game_008_Makoto_Sawatari.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1336bc4009b4c154173d561d3b328b75f0291a770bbc08388f3ebb69db991b37 +size 17732 diff --git a/reference_images/2-game/2-game_008_Nayuki_Minase.jpg b/reference_images/2-game/2-game_008_Nayuki_Minase.jpg new file mode 100644 index 0000000000000000000000000000000000000000..752472767a169bd651393ecaaeb0ba358740adc4 --- /dev/null +++ b/reference_images/2-game/2-game_008_Nayuki_Minase.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ae9a2bd6f0fb379fb48695e2cc953b6e15bb99748ba8bbd3a8909525131e10 +size 17276 diff --git a/reference_images/2-game/2-game_009_Kano_Kirishima.jpg b/reference_images/2-game/2-game_009_Kano_Kirishima.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc0025821cfb0d1f95bcf59f5f28621c2ceae181 --- /dev/null +++ b/reference_images/2-game/2-game_009_Kano_Kirishima.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d82301d913149b3fb8cdc312471654a650b55096b220da2dc5ab2248fff985 +size 38912 diff --git a/reference_images/2-game/2-game_009_Minagi_Tohno.jpg b/reference_images/2-game/2-game_009_Minagi_Tohno.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54920122608103b7e60c6a62b88f8d5e5999fe5a --- /dev/null +++ b/reference_images/2-game/2-game_009_Minagi_Tohno.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34483cccc87e36d317485b7c6322fa742cdb296a5daf52c2c01998632f30c51d +size 34780 diff --git a/reference_images/2-game/2-game_009_Misuzu_Kamio.jpg b/reference_images/2-game/2-game_009_Misuzu_Kamio.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50cf1720a173d8db6ecbc1bd6e466c29818c7757 --- /dev/null +++ b/reference_images/2-game/2-game_009_Misuzu_Kamio.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa1381f1285a9c5d5755e8b4ec3dffe1d55b879ba74f59e17b3263df37caa81 +size 42062 diff --git a/reference_images/2-game/2-game_010_Suzuha_Amane.jpg b/reference_images/2-game/2-game_010_Suzuha_Amane.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67b328cf8ce4f1d7c9bf18a446163f9bd6051f1f --- /dev/null +++ b/reference_images/2-game/2-game_010_Suzuha_Amane.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb36c76739132c4b8429cdd694cedce0a6328207c14c10e709abc2a2f1d1f489 +size 25052 diff --git a/reference_images/2-game/2-game_011_Rimi_Sakihata.jpg b/reference_images/2-game/2-game_011_Rimi_Sakihata.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae07a07a27bda1250fb498c6f0c86bdd4811ac79 --- /dev/null +++ b/reference_images/2-game/2-game_011_Rimi_Sakihata.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f75c9e8693dccd733f859e00eb0281c5794876546520168273403d4411aca1 +size 22152 diff --git a/reference_images/2-game/2-game_011_Sena_Aoi.jpg b/reference_images/2-game/2-game_011_Sena_Aoi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c25528d998beb1295c1f0bad6012016c774b005a --- /dev/null +++ b/reference_images/2-game/2-game_011_Sena_Aoi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc374fd723d85ad018392bde0e9b45863f65a28aa3c4c9489fe6e98d40f702a6 +size 189762 diff --git a/reference_images/2-game/2-game_012_Hinae_Arimura.jpg b/reference_images/2-game/2-game_012_Hinae_Arimura.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a0edf4460a66ddc0e0822e5f767e6d7f45b6884 --- /dev/null +++ b/reference_images/2-game/2-game_012_Hinae_Arimura.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b86300a1788445ec48b849d50cb9e650f947b9412e2495606fd2e36a492b3f +size 194138 diff --git a/reference_images/2-game/2-game_012_Serika_Onoe.jpg b/reference_images/2-game/2-game_012_Serika_Onoe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..310855fb587a397bbac1e78777e65efee65d1f06 --- /dev/null +++ b/reference_images/2-game/2-game_012_Serika_Onoe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b60b406f5189ae61e86c1073cae76d2b1bc7cc63ac24724da418d74210e85a2 +size 67416 diff --git a/reference_images/2-game/2-game_013_Konomi_Yuzuhara.jpg b/reference_images/2-game/2-game_013_Konomi_Yuzuhara.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f44dcc647bc7c948e2351ce505bc7725a5a16304 --- /dev/null +++ b/reference_images/2-game/2-game_013_Konomi_Yuzuhara.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c8eb87f356519ec5e31bf86137b131774fb1144bb107a6fe0768fc1dba102a +size 14790 diff --git a/reference_images/2-game/2-game_013_Manaka_Komaki.jpg b/reference_images/2-game/2-game_013_Manaka_Komaki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b38a56cb535bcb3f3dff4fdcac8d2c07316b992 --- /dev/null +++ b/reference_images/2-game/2-game_013_Manaka_Komaki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078096f5e033a8b2a860906f1683944a8edc1e9bc806bd5375c5f10d1a0433be +size 7660 diff --git a/reference_images/2-game/2-game_013_Tamaki_Kousaka.jpg b/reference_images/2-game/2-game_013_Tamaki_Kousaka.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77458a61817f7ef88da8e21b1cc293e0b9e45b21 --- /dev/null +++ b/reference_images/2-game/2-game_013_Tamaki_Kousaka.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9832449efb8a4b20d3bcb50334a67da09d5f53048f5606716cc0b2e54d752102 +size 19338 diff --git a/reference_images/2-game/2-game_014_Erika_Sendo.jpg b/reference_images/2-game/2-game_014_Erika_Sendo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13289fade82843e6e0301bacb6f6527687ade795 --- /dev/null +++ b/reference_images/2-game/2-game_014_Erika_Sendo.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba09be896c7895c5184d6b36fced5acbf25339fae5c4a34ff4d400f6653cfa3 +size 84271 diff --git a/reference_images/2-game/2-game_015_Eustia_Astraea.jpg b/reference_images/2-game/2-game_015_Eustia_Astraea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c16b286c841758f5b1e666b8b6f2f80b0714868c --- /dev/null +++ b/reference_images/2-game/2-game_015_Eustia_Astraea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0395ace70e4140944cd447af49467a4e34d8681ff9d1649322665fde90e079a4 +size 16252 diff --git a/reference_images/2-game/2-game_015_Licia_de_novus_Yurii.jpg b/reference_images/2-game/2-game_015_Licia_de_novus_Yurii.jpg new file mode 100644 index 0000000000000000000000000000000000000000..794c7e661ec07f5f71fd2fa8c2b3592ea33e70a1 --- /dev/null +++ b/reference_images/2-game/2-game_015_Licia_de_novus_Yurii.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29ca4d25848be9f9ca6d71cc937dd974893a83fb91ec88ae80ba92ae02956ec +size 22698 diff --git a/reference_images/2-game/2-game_016_Tamamo_Sakuraba.jpg b/reference_images/2-game/2-game_016_Tamamo_Sakuraba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eaa93e63cf10a89ca485d748a5a5102d107648a0 --- /dev/null +++ b/reference_images/2-game/2-game_016_Tamamo_Sakuraba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965cb5fc04cf80683aae752a124c13bf045853466df92ed47b875768d33ec4c2 +size 29444 diff --git a/reference_images/2-game/2-game_016_Tsugumi_Shirasaki.jpg b/reference_images/2-game/2-game_016_Tsugumi_Shirasaki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c863be849909187890d3a814232055bebd746dd --- /dev/null +++ b/reference_images/2-game/2-game_016_Tsugumi_Shirasaki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358365b41cd566589e83489bea074b8d0e05a2f1cf1e10803cdebe7f30233540 +size 34766 diff --git a/reference_images/2-game/2-game_017_Kotori_Shirakawa.jpg b/reference_images/2-game/2-game_017_Kotori_Shirakawa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e4e0dfe1dd7cebe1a571273d61540e643940d26 --- /dev/null +++ b/reference_images/2-game/2-game_017_Kotori_Shirakawa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c47ff2bdf17b322bc030f5555be10606317336a9afb34fe08edba3c46139c0b +size 43710 diff --git a/reference_images/2-game/2-game_017_Nemu_Asakura.jpg b/reference_images/2-game/2-game_017_Nemu_Asakura.jpg new file mode 100644 index 0000000000000000000000000000000000000000..475c7ad1f8581b470ca0f611c53e4801ff567227 --- /dev/null +++ b/reference_images/2-game/2-game_017_Nemu_Asakura.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0402d71614f26b67631957ddc3a605bb7c3ab4e26be46dd60f6ec98bace1192 +size 17082 diff --git a/reference_images/2-game/2-game_017_Sakura_Yoshino.jpg b/reference_images/2-game/2-game_017_Sakura_Yoshino.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c1ef0a862af6d1106149c96632dbe38a961ac57 --- /dev/null +++ b/reference_images/2-game/2-game_017_Sakura_Yoshino.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519b37bf5fac8110b0e70fccef7253ab3d826c8c4bda156135e7803cffe546ab +size 24948 diff --git a/reference_images/2-game/2-game_018_Lisianthus.jpg b/reference_images/2-game/2-game_018_Lisianthus.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0eecdd1885e257af39ccbfcefc1186bfa578d92 --- /dev/null +++ b/reference_images/2-game/2-game_018_Lisianthus.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ec7e1948c4e077ea4a164c1f4a246405fbc61bd0ba387c4fc606d013112fe3 +size 97273 diff --git a/reference_images/2-game/2-game_018_Nerine.jpg b/reference_images/2-game/2-game_018_Nerine.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e947fd786b8f22bfcaf936b53d9ca5cb4b463ae --- /dev/null +++ b/reference_images/2-game/2-game_018_Nerine.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a183d999fa1c6e30ca42d494242868c676f444a470e03d9a9de57cf3e715e590 +size 58830 diff --git a/reference_images/2-game/2-game_019_Makina_Irisu.jpg b/reference_images/2-game/2-game_019_Makina_Irisu.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5da12ad369a5ae1a9d8afa17dbbd131aec28a09 --- /dev/null +++ b/reference_images/2-game/2-game_019_Makina_Irisu.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72510f3825cbcbca85805a8ab4c481963399899c72ca7f0263dc6c352186f7f9 +size 22938 diff --git a/reference_images/2-game/2-game_019_Sachi_Komine.jpg b/reference_images/2-game/2-game_019_Sachi_Komine.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bea7f6e274bd1ae3f3c4962041aa3abff3a4ec56 --- /dev/null +++ b/reference_images/2-game/2-game_019_Sachi_Komine.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55716db8b6fbeb9dae3a64e369fa6aac380d4cb6d258346d4e49d674e61e3d42 +size 20222 diff --git a/reference_images/2-game/2-game_020_Asuka_Kurashina.jpg b/reference_images/2-game/2-game_020_Asuka_Kurashina.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4504617133f25f08493fe1a33a6818f1768b697a --- /dev/null +++ b/reference_images/2-game/2-game_020_Asuka_Kurashina.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2479a97c38f41f4643b43d5e555cf62fa0fbad66e73712462b160ee6a3fd04f1 +size 17224 diff --git a/reference_images/2-game/2-game_020_Misaki_Tobisawa.webp b/reference_images/2-game/2-game_020_Misaki_Tobisawa.webp new file mode 100644 index 0000000000000000000000000000000000000000..e10a2adf3edd8944a3b1ede456f1161d2228caae --- /dev/null +++ b/reference_images/2-game/2-game_020_Misaki_Tobisawa.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a422a242dfec7bd01f393bb125b034ba02d80e73202ffdf2e5cb4bae6cf4d4 +size 68920 diff --git a/reference_images/2-game/2-game_021_Mashiro_Mito.jpg b/reference_images/2-game/2-game_021_Mashiro_Mito.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d19d80a903e2317fec1435ccd4993682ad2d73d7 --- /dev/null +++ b/reference_images/2-game/2-game_021_Mashiro_Mito.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a762687451db638ef5cd4dab4bd17f242f750db80de266ace00e5a29d9f25977 +size 88207 diff --git a/reference_images/2-game/2-game_022_Mare_S_Ephemeral.jpg b/reference_images/2-game/2-game_022_Mare_S_Ephemeral.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e1c60cdf58b4db33e7a1ddb8d04dcb340f2d0d5 --- /dev/null +++ b/reference_images/2-game/2-game_022_Mare_S_Ephemeral.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2eb0b64b35885a360e6d3e63c4ebe16a7676c108dd478e85abd36e03545bdf8 +size 1485974 diff --git a/reference_images/2-game/2-game_023_Komari_Kamikita.jpg b/reference_images/2-game/2-game_023_Komari_Kamikita.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6e63470dddec135948357e8a30f38a774aa0794 --- /dev/null +++ b/reference_images/2-game/2-game_023_Komari_Kamikita.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0dc92d01e21f5cd53d3d2e9a590d61a15778de10db3661baf9ba83dc5b32a7 +size 55840 diff --git a/reference_images/2-game/2-game_023_Kudryavka_Noumi.jpg b/reference_images/2-game/2-game_023_Kudryavka_Noumi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ee39da7a0c28b9a63f120ce56a0abc432c1a3e2 --- /dev/null +++ b/reference_images/2-game/2-game_023_Kudryavka_Noumi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd65302cc533a12fba0dcfb7ca86f06d06f4de890a7bd47fa76ee9a47fc40f87 +size 117268 diff --git a/reference_images/2-game/2-game_023_Rin_Natsume.jpg b/reference_images/2-game/2-game_023_Rin_Natsume.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9502f3c5b1d8794fee161310322ffee3d9d5e9e --- /dev/null +++ b/reference_images/2-game/2-game_023_Rin_Natsume.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:099352e8e39096921ed566fffeefc11e66c1665e67457a8250125fb2c5f8af5e +size 19012 diff --git a/reference_images/2-game/2-game_024_Akane_Senri.jpg b/reference_images/2-game/2-game_024_Akane_Senri.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a24365877457483b212940dbfb6f8778d39cd2f --- /dev/null +++ b/reference_images/2-game/2-game_024_Akane_Senri.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:422dfffecf5c0b1fb852b9b6da40f92cfe4e0adb17954133112eac9558b5cf23 +size 16306 diff --git a/reference_images/2-game/2-game_024_Chihaya_Ohtori.jpg b/reference_images/2-game/2-game_024_Chihaya_Ohtori.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3eeacb12cc000ce6393745dd4f0e9861f5b49acc --- /dev/null +++ b/reference_images/2-game/2-game_024_Chihaya_Ohtori.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9ad666b1f86bcc49669bb4c59cbd681ed0287d58335128c5ea47ab90d9c57 +size 71836 diff --git a/reference_images/2-game/2-game_024_Kotori_Kanbe.jpg b/reference_images/2-game/2-game_024_Kotori_Kanbe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd181d3ea14dfa00e1d9e86999bb530407df2c8b --- /dev/null +++ b/reference_images/2-game/2-game_024_Kotori_Kanbe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550ae68167f2d66234b81107219100718c1e967611d1f2f39aff50cfd5f09003 +size 97974 diff --git a/reference_images/2-game/2-game_025_Akiho_Senomiya.jpg b/reference_images/2-game/2-game_025_Akiho_Senomiya.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1494f2f4bd42b6e0824617da8a80cbb1d1d991e2 --- /dev/null +++ b/reference_images/2-game/2-game_025_Akiho_Senomiya.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be202ed234280ccf2e2e6de5729b1c67614677e1bb8132d8d6cfb776147bec5 +size 33236 diff --git a/reference_images/2-game/2-game_025_Frau_Koujiro.jpg b/reference_images/2-game/2-game_025_Frau_Koujiro.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8e5274fac05b0388fd375d242dbe0706f0754ca --- /dev/null +++ b/reference_images/2-game/2-game_025_Frau_Koujiro.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75ce2e4afa92327d3c3bcf777976f7b13e4e34d7b6458de758eb1acaacfe61 +size 13900 diff --git a/reference_images/2-game/2-game_026_Setsuna_Ogiso.jpg b/reference_images/2-game/2-game_026_Setsuna_Ogiso.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e881b3e125a22e6390c8ba1810f273145a8a9b9 --- /dev/null +++ b/reference_images/2-game/2-game_026_Setsuna_Ogiso.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63706f552aa9129b652a19489820e84b6a0cee962e79cd27497751ced8e3d3a +size 18978 diff --git a/reference_images/2-game/2-game_027_Asumi_Nishiki.jpg b/reference_images/2-game/2-game_027_Asumi_Nishiki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57abdf2f85e2631810b6f5ef818d40ab5ad8cfc1 --- /dev/null +++ b/reference_images/2-game/2-game_027_Asumi_Nishiki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad519799a6e7b17c72696406ca0e3f93c7649d1541beb9f03f431a9a927a406 +size 17697 diff --git a/reference_images/2-game/2-game_027_Hiyori_Izumi.jpg b/reference_images/2-game/2-game_027_Hiyori_Izumi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..552250f440f40571fa21087b5b0b42d99e4b0b2c --- /dev/null +++ b/reference_images/2-game/2-game_027_Hiyori_Izumi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc2c43d78cd5eca80db8f91eb1cdfd0fd37c494be6c7575d9e4810f8638c0d2 +size 21671 diff --git a/reference_images/2-game/2-game_027_Kano_Tokiwa.jpg b/reference_images/2-game/2-game_027_Kano_Tokiwa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d6c17595ccd673afd1e93af28ce119267f854f8 --- /dev/null +++ b/reference_images/2-game/2-game_027_Kano_Tokiwa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f3dd7d89e1d72d5289faf417aaecb2f210df6702e8f804f1a1d9204fad5b2b +size 6868 diff --git a/reference_images/2-game/2-game_028_Kisaki_Tsukiyashiro.jpg b/reference_images/2-game/2-game_028_Kisaki_Tsukiyashiro.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bab9c661dcf6aad8ad6fa2461288d4d2caa263e --- /dev/null +++ b/reference_images/2-game/2-game_028_Kisaki_Tsukiyashiro.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4d7763bf601bcece3183c309a125fb8efb8d56626eae06ef55daec87d41296 +size 25022 diff --git a/reference_images/2-game/2-game_028_Rio_Fushimi.jpg b/reference_images/2-game/2-game_028_Rio_Fushimi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b527bf850ab1a9e4a68a3ef07f4cbd8423e99af8 --- /dev/null +++ b/reference_images/2-game/2-game_028_Rio_Fushimi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2372c3af4021799b8def004e0faec1f3a950aa115da8a6da8e01d36950dc325b +size 10696 diff --git a/reference_images/2-game/2-game_028_Yoruko_Yuugyouji.jpg b/reference_images/2-game/2-game_028_Yoruko_Yuugyouji.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12ee0e65f159bc25f054802d16b92fa5a11cc603 --- /dev/null +++ b/reference_images/2-game/2-game_028_Yoruko_Yuugyouji.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af38d1c3dcb846bd283370d32af1cf152a689e2e357979fa3c02bac32762825 +size 30552 diff --git a/reference_images/2-game/2-game_029_Ayase_Mitsukasa.jpg b/reference_images/2-game/2-game_029_Ayase_Mitsukasa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31cf4bbe30ddc5b329556fe8cae0693ebc83b217 --- /dev/null +++ b/reference_images/2-game/2-game_029_Ayase_Mitsukasa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f56399ff5a31723b9423a0ac672943c49ef4a4ca537bd601033f14a953fd159 +size 29446 diff --git a/reference_images/2-game/2-game_029_Hazuki_Nijouin.jpg b/reference_images/2-game/2-game_029_Hazuki_Nijouin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc0ac29d94ac43aa064aac0e91cacaaf0d6969b5 --- /dev/null +++ b/reference_images/2-game/2-game_029_Hazuki_Nijouin.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4baf0b6966a3cf353e01dbcb7ec14405b53180eff07603d45feddf1c4d47f575 +size 20820 diff --git a/reference_images/2-game/2-game_029_Nanami_Arihara.jpg b/reference_images/2-game/2-game_029_Nanami_Arihara.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5093fc615e9ad699f14e9e21cf4aef5f71f1916 --- /dev/null +++ b/reference_images/2-game/2-game_029_Nanami_Arihara.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129eba7ff3ab72f552db149b00bda2b3301746e2bac30563ce55c9c3ef2b31ad +size 8330 diff --git a/reference_images/2-game/2-game_030_Haruka_Kousaka.jpg b/reference_images/2-game/2-game_030_Haruka_Kousaka.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0491ce9ebcd09d1c6af25e6044a5b713402e25c8 --- /dev/null +++ b/reference_images/2-game/2-game_030_Haruka_Kousaka.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c395bab418b9d0aeed66a42d9dcc4b4eefd038f6626640b9191913acf6d9157a +size 111200 diff --git a/reference_images/2-game/2-game_030_Miyako_Kujou.jpg b/reference_images/2-game/2-game_030_Miyako_Kujou.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc6ba300930e3ae441f5b5617f86066d2d1edf80 --- /dev/null +++ b/reference_images/2-game/2-game_030_Miyako_Kujou.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b795cf0a1db35c1c0be399db848b54b0a515683293f95d94ef931db7071e02f +size 95837 diff --git a/reference_images/2-game/2-game_030_Sora_Niimi.jpg b/reference_images/2-game/2-game_030_Sora_Niimi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbc95d55fe5690d6d42c83623ceb23cefcb32efb --- /dev/null +++ b/reference_images/2-game/2-game_030_Sora_Niimi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf9d35c7d27d4e69757a5b19ce0c4b5c550ce74a75db82356ee4b359c8c5230 +size 72404 diff --git a/reference_images/2-game/2-game_031_ATRI.jpg b/reference_images/2-game/2-game_031_ATRI.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d84a5651b604cb3b6ce091491e7de11b52efa43a --- /dev/null +++ b/reference_images/2-game/2-game_031_ATRI.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0565f340aecca561c31dce99e03ae688282720e96d8eb4b4daf4cd2797c467 +size 336234 diff --git a/reference_images/2-game/2-game_032_Goldenglow.jpg b/reference_images/2-game/2-game_032_Goldenglow.jpg new file mode 100644 index 0000000000000000000000000000000000000000..199f67a5c8c7a596f3ee86e9a7870750aaca1138 --- /dev/null +++ b/reference_images/2-game/2-game_032_Goldenglow.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260d25abfb5926b064b6fcb377a59c105394b3ab4cb6b75552e7ae5f0075f075 +size 13912 diff --git a/reference_images/2-game/2-game_033_Meguru_Inaba.jpg b/reference_images/2-game/2-game_033_Meguru_Inaba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8994c7e5ce4ad874bbf5f72bccedf3941d9fc80d --- /dev/null +++ b/reference_images/2-game/2-game_033_Meguru_Inaba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8817af88552595f01901a932d382758b17a0a8dd3e9238e17a264812e3e27ea3 +size 121137 diff --git a/reference_images/2-game/2-game_033_Nene_Ayachi.jpg b/reference_images/2-game/2-game_033_Nene_Ayachi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1aec0c9121336fb0ef3bd944eeb317664ed090f --- /dev/null +++ b/reference_images/2-game/2-game_033_Nene_Ayachi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5cb66a0687c86535f3ae32ad39c4eeaa16b5f3953b646d1370a874dc99a6d72 +size 9730 diff --git a/reference_images/2-game/2-game_033_Touko_Hiiragi.jpg b/reference_images/2-game/2-game_033_Touko_Hiiragi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aea1166c6c3e668493b88e7d727bf5be273df3d2 --- /dev/null +++ b/reference_images/2-game/2-game_033_Touko_Hiiragi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de80b71b6d099b66dd8519bd312ddbae685c92be6d8ad49fb7ddf4c70fa5d78a +size 11542 diff --git a/reference_images/2-game/2-game_034_Mako_Hitachi.jpg b/reference_images/2-game/2-game_034_Mako_Hitachi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af72a3cd2bcb42c8f47707c8ac74f3e9e7af6f13 --- /dev/null +++ b/reference_images/2-game/2-game_034_Mako_Hitachi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db092bc95df0476f57209f56ca6f60df8d83690eb72559f32ad3d48436f83925 +size 1853519 diff --git a/reference_images/2-game/2-game_034_Murasame.jpg b/reference_images/2-game/2-game_034_Murasame.jpg new file mode 100644 index 0000000000000000000000000000000000000000..924257a0d243144daa69bad43328cfdc22090d36 --- /dev/null +++ b/reference_images/2-game/2-game_034_Murasame.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e85788fb642ca017470cdee4246563f05486e084b8b6cd13f5135fb7e98776 +size 1305223 diff --git a/reference_images/2-game/2-game_034_Yoshino_Tomotake.jpg b/reference_images/2-game/2-game_034_Yoshino_Tomotake.jpg new file mode 100644 index 0000000000000000000000000000000000000000..696ffc68aea962ac248c558ded016a405e308af1 --- /dev/null +++ b/reference_images/2-game/2-game_034_Yoshino_Tomotake.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6a2b8d8732573065092266cd7f484bdba14699397d6c57107379cb5fb4aea3 +size 2363089 diff --git a/reference_images/2-game/2-game_035_Kanna_Akizuki.jpg b/reference_images/2-game/2-game_035_Kanna_Akizuki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1eb2bb6f52fd0b89d5c9f201c4de2721139f1627 --- /dev/null +++ b/reference_images/2-game/2-game_035_Kanna_Akizuki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede3e21b3e3c8764727b954777b4243f8b874880d0ff0afc52f6555aea5c5022 +size 10748 diff --git a/reference_images/2-game/2-game_035_Natsume_Shiki.jpg b/reference_images/2-game/2-game_035_Natsume_Shiki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04fdf517ef8e537f1996c27ae713c0146ebe709d --- /dev/null +++ b/reference_images/2-game/2-game_035_Natsume_Shiki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2783b24b1daedce5943b73c214f776c43dad2e30115bbfda3f50335835d5e82c +size 39892 diff --git a/reference_images/2-game/2-game_035_Nozomi_Sumizome.jpg b/reference_images/2-game/2-game_035_Nozomi_Sumizome.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bddd66c3714d0489fcf9f20a22a50cd6f1d5a79c --- /dev/null +++ b/reference_images/2-game/2-game_035_Nozomi_Sumizome.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492856d20dd763d4fc7e1bbd49cea23804e335fd148f00fdce4e5ed5c73de4e0 +size 9260 diff --git a/reference_images/2-game/2-game_036_Ao_Sorakado.jpg b/reference_images/2-game/2-game_036_Ao_Sorakado.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96a3fb44980c4147284c54f7ae06eba7203508fc --- /dev/null +++ b/reference_images/2-game/2-game_036_Ao_Sorakado.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62c137c67a38f8f052e9e192cfcf9be5af0f7f4044a7ee08e1c8a5c41c887af +size 15664 diff --git a/reference_images/2-game/2-game_036_Kamome_Kushima.jpg b/reference_images/2-game/2-game_036_Kamome_Kushima.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e37c50cbd5ba8b2463088fb258b23c5a87379dea --- /dev/null +++ b/reference_images/2-game/2-game_036_Kamome_Kushima.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59c96fbf647853a035c7c9b73669fb297862fd41abac31c7a38969d422ffed0 +size 131532 diff --git a/reference_images/2-game/2-game_036_Shiroha_Naruse.jpg b/reference_images/2-game/2-game_036_Shiroha_Naruse.jpg new file mode 100644 index 0000000000000000000000000000000000000000..676c4ed8398282a7b8293422b58e21f7cca47303 --- /dev/null +++ b/reference_images/2-game/2-game_036_Shiroha_Naruse.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f6912161caa8d9bbde73c9155b54bd660cd86ad7a9482cd3b41d44bc6391f9 +size 11804 diff --git a/reference_images/2-game/2-game_037_Amane_Suou.jpg b/reference_images/2-game/2-game_037_Amane_Suou.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e7b6586dd12a6ee5be5455020c14071399eb20a --- /dev/null +++ b/reference_images/2-game/2-game_037_Amane_Suou.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4ef259e87de94835ed4d73a6805e4554b441c7931ef2e88efad5900365737e +size 18960 diff --git a/reference_images/2-game/2-game_038_Rinne_Ohara.jpg b/reference_images/2-game/2-game_038_Rinne_Ohara.jpg new file mode 100644 index 0000000000000000000000000000000000000000..561e4d114ae032efbd46abea7d31f1672cb0c960 --- /dev/null +++ b/reference_images/2-game/2-game_038_Rinne_Ohara.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b485e6ffe6811c11b5507232b1e1fd162cbd816777fbd4de0b0a963c220c963c +size 21760 diff --git a/reference_images/2-game/2-game_039_Iori_Fuyusaka.jpg b/reference_images/2-game/2-game_039_Iori_Fuyusaka.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd4913fce56e6a141a0d85bed8037cec97af6248 --- /dev/null +++ b/reference_images/2-game/2-game_039_Iori_Fuyusaka.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8363f06c0c32370fe4baed7c37cd321ed838ead6dd76c7e0f5a02a2032121c04 +size 163628 diff --git a/reference_images/2-game/2-game_039_Megumi_Yakushiji.jpg b/reference_images/2-game/2-game_039_Megumi_Yakushiji.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7e1e8b773d514f4232dcaff6b60ca3bee4c98d7 --- /dev/null +++ b/reference_images/2-game/2-game_039_Megumi_Yakushiji.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad64a3b2bb3bb51b12f020d8a20596182b96c9082253e4fd68889c39d20a9b8 +size 244058 diff --git a/reference_images/2-game/2-game_039_Natsuno_Minami.jpg b/reference_images/2-game/2-game_039_Natsuno_Minami.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5aadc3de85d3cf7e83e3c82d8c740eade689862 --- /dev/null +++ b/reference_images/2-game/2-game_039_Natsuno_Minami.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0282549f3724171d6bd5ad0a29ea6ffca2f6f9473804a6df9c8c04425390aef4 +size 292876 diff --git a/reference_images/2-game/2-game_040_Chizuru_Sakaki.jpg b/reference_images/2-game/2-game_040_Chizuru_Sakaki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9d9f781fddd6ba3de7ca141aed92a22d7af38cf --- /dev/null +++ b/reference_images/2-game/2-game_040_Chizuru_Sakaki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64dcd7d20fca9af6784b92a3c21cf859976d91d71f10c1dc9a4158969f202172 +size 22588 diff --git a/reference_images/2-game/2-game_040_Meiya_Mitsurugi.jpg b/reference_images/2-game/2-game_040_Meiya_Mitsurugi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d416524bf3030da47da773d124089d7e0655365f --- /dev/null +++ b/reference_images/2-game/2-game_040_Meiya_Mitsurugi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5667dd864d1db3e6cd661322be0a26c60cc5e0212954d320b52c0bf4efc0dfa4 +size 21520 diff --git a/reference_images/2-game/2-game_040_Sumika_Kagami.jpg b/reference_images/2-game/2-game_040_Sumika_Kagami.jpg new file mode 100644 index 0000000000000000000000000000000000000000..081a20af880c9a0b959e56b34f108546a3f9ee2f --- /dev/null +++ b/reference_images/2-game/2-game_040_Sumika_Kagami.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90bd06249d7d768a0667a085b50eef1ecaaf036306dece085d62c5c943eaabd +size 15724 diff --git a/reference_images/2-game/2-game_041_Amane_Tanikaze.jpg b/reference_images/2-game/2-game_041_Amane_Tanikaze.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63a63d3608281c0617f8889d89d9ab710904b3cf --- /dev/null +++ b/reference_images/2-game/2-game_041_Amane_Tanikaze.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c9cca11a9077984a923ee9d4e7b62dab1e27c3e733d07267fc54720bf6bb45 +size 83734 diff --git a/reference_images/2-game/2-game_041_Kurumi_Kohibari.jpg b/reference_images/2-game/2-game_041_Kurumi_Kohibari.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3c0b7052f28bed0f6c13e00e623be2eca94c649 --- /dev/null +++ b/reference_images/2-game/2-game_041_Kurumi_Kohibari.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab53154f19c7031498f86cbb7dac8a8e14f1c13e30c7dde92ec6bc8204a4f791 +size 14750 diff --git a/reference_images/2-game/2-game_041_Noa_Shirayuki.jpg b/reference_images/2-game/2-game_041_Noa_Shirayuki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85e1fcfd0b77669fcd1b08377b23f0e8bb55a613 --- /dev/null +++ b/reference_images/2-game/2-game_041_Noa_Shirayuki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0626398f7cc1c53ff821118d21e72e8b3bfac9716e404d707b863132d0e0c6b +size 11850 diff --git a/reference_images/2-game/2-game_042_Midori_Saiba.jpg b/reference_images/2-game/2-game_042_Midori_Saiba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61894d96749e7955a9b362c2be8a9ca84a822f6a --- /dev/null +++ b/reference_images/2-game/2-game_042_Midori_Saiba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761bc17fe9813044b6b8eb04abd8ac63de3efbdc5119c0df2a173def24ce89d4 +size 21684 diff --git a/reference_images/2-game/2-game_042_Momoi_Saiba.jpg b/reference_images/2-game/2-game_042_Momoi_Saiba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8913fbd80c377d55b18e208fb019a0c92598ca8 --- /dev/null +++ b/reference_images/2-game/2-game_042_Momoi_Saiba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d48a0f7234cb7caa86480f520a005ce810669862c0fa53f60badb50023bf1d +size 18900 diff --git a/reference_images/2-game/2-game_042_Yuzu_Hanaoka.jpg b/reference_images/2-game/2-game_042_Yuzu_Hanaoka.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a169d05b64b21a266b32300d6189324c22a143e6 --- /dev/null +++ b/reference_images/2-game/2-game_042_Yuzu_Hanaoka.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c816b50ffe33982043ad3f1b1e64820fa0726d676decb4c57053b77e9e140eee +size 28208 diff --git a/reference_images/2-game/2-game_043_Anri_Takakura.jpg b/reference_images/2-game/2-game_043_Anri_Takakura.jpg new file mode 100644 index 0000000000000000000000000000000000000000..783fd196feabd09b1eb430ab7f3a6b4638ab228f --- /dev/null +++ b/reference_images/2-game/2-game_043_Anri_Takakura.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c182784c91fe83fe7844d6ce7c4e645d6cfe0592f0f9fcad27c2385ad2f054a +size 38246 diff --git a/reference_images/2-game/2-game_043_Anzu_Takakura.jpg b/reference_images/2-game/2-game_043_Anzu_Takakura.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb45ed230248af147e25ccde972be301dafcf401 --- /dev/null +++ b/reference_images/2-game/2-game_043_Anzu_Takakura.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e098e027488ecb9e343ff411769da512d09a8b2d72c384950df94f4825b5fd75 +size 40853 diff --git a/reference_images/2-game/2-game_043_Tsubame_Rindou.jpg b/reference_images/2-game/2-game_043_Tsubame_Rindou.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3b1ab1eb9a178ce0f3b6d75c1dc81dfa301d6be --- /dev/null +++ b/reference_images/2-game/2-game_043_Tsubame_Rindou.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260c51ec6a7ee27407d8fd61a6e81b2052c628998d619d9a21292a599e3decbc +size 41344 diff --git a/reference_images/2-game/2-game_044_Heroina_di_Caballero_Istaa.jpg b/reference_images/2-game/2-game_044_Heroina_di_Caballero_Istaa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1e1da26b2e5afd8fdb808d63070ae2bd0ed825c --- /dev/null +++ b/reference_images/2-game/2-game_044_Heroina_di_Caballero_Istaa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93c4fc74b8d6e64895f559150c714281bfcabf8b261193f9328655906382cfc +size 27128 diff --git a/reference_images/2-game/2-game_044_Reina_Kisaki.jpg b/reference_images/2-game/2-game_044_Reina_Kisaki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98b49d1502586889899f30cdbcdf7955d1576c12 --- /dev/null +++ b/reference_images/2-game/2-game_044_Reina_Kisaki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90b69a406bd4c3e19ced2e8ec6a5eea0f206b5e3832dbf4eac5cb8d0004b9c10 +size 209620 diff --git a/reference_images/2-game/2-game_044_Sylvia_le_Cruzcrown_Sortil_ge_Sisua.jpg b/reference_images/2-game/2-game_044_Sylvia_le_Cruzcrown_Sortil_ge_Sisua.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e170177db2db2a9b75680eb97e2bd8fe52e02892 --- /dev/null +++ b/reference_images/2-game/2-game_044_Sylvia_le_Cruzcrown_Sortil_ge_Sisua.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a2862097b0753a1d481f637e0dc0a927b11105f941476dc9b11bfbdec3aa7c +size 11014 diff --git a/reference_images/2-game/2-game_045_Ginka.jpg b/reference_images/2-game/2-game_045_Ginka.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59879fb4ea9ca6dfa214faa1a968a8f4361a29bb --- /dev/null +++ b/reference_images/2-game/2-game_045_Ginka.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e640c9d55317b9b781c9eb89cb114fd6009c34b60cc5e95f44eb2c8c6820b2a +size 79988 diff --git a/reference_images/2-game/2-game_046_Luna_Sakurakouji.jpg b/reference_images/2-game/2-game_046_Luna_Sakurakouji.jpg new file mode 100644 index 0000000000000000000000000000000000000000..338e60368c64162826ce5fef64a99807b4b04cdc --- /dev/null +++ b/reference_images/2-game/2-game_046_Luna_Sakurakouji.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c9eb14d731117fb105ea635a4128db82fe1519521a4efbb1df97e034070924 +size 23018 diff --git a/reference_images/2-game/2-game_047_Bluette_Nicolette_Planquette.jpg b/reference_images/2-game/2-game_047_Bluette_Nicolette_Planquette.jpg new file mode 100644 index 0000000000000000000000000000000000000000..478b87132551af79af740ca3af80f0574cd5fad0 --- /dev/null +++ b/reference_images/2-game/2-game_047_Bluette_Nicolette_Planquette.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1de724a6d8b57e50333d3a66a928d07d970912b874d79f434eda14a79d450a0 +size 40570 diff --git a/reference_images/2-game/2-game_047_Risono_Ohkura.jpg b/reference_images/2-game/2-game_047_Risono_Ohkura.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e944ea30f5be123b0fe31008f23ef59354115881 --- /dev/null +++ b/reference_images/2-game/2-game_047_Risono_Ohkura.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859af9a850576f83c2db4b4b2dc2c4a5c40258d847b4af1e8b36fa65bc5b1366 +size 67026 diff --git a/reference_images/2-game/2-game_048_Hikari.jpg b/reference_images/2-game/2-game_048_Hikari.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29c40cf8abe2211a0c8966be4f29e0d75aa69a23 --- /dev/null +++ b/reference_images/2-game/2-game_048_Hikari.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e548c59ea3394bca9e23ce2e3d3ea3ee6925eb4597e53bc707cd3db3593c0f7c +size 16376 diff --git a/reference_images/2-game/2-game_049_Buro.jpg b/reference_images/2-game/2-game_049_Buro.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2bf12fa838f4e9b48fee8df3cddee9afa51e169 --- /dev/null +++ b/reference_images/2-game/2-game_049_Buro.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fab53601c355dfa83d1074e2a25444a3c95e8a30321792930667db9075055b +size 72340 diff --git a/reference_images/2-game/2-game_049_Marija.jpg b/reference_images/2-game/2-game_049_Marija.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e4adba6e6de2b7ba220a544476ac0c8ed6bf3fb --- /dev/null +++ b/reference_images/2-game/2-game_049_Marija.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93bdb2725a4f20c0d415cdafd316f9a7d917ea51af38f3e4a62bff70cd4cb1c +size 98330 diff --git a/reference_images/2-game/2-game_049_Rin.jpg b/reference_images/2-game/2-game_049_Rin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c2beae60f416bd7fd106066505889726bc3721b --- /dev/null +++ b/reference_images/2-game/2-game_049_Rin.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a062a80f24e566a9a2ee535d0ce6b4ff15ee790c40885ef1a61c8a375eea1cc +size 73981 diff --git a/reference_images/2-game/2-game_050_Groal_the_Great.jpg b/reference_images/2-game/2-game_050_Groal_the_Great.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7d679016601a5cb0486ff1dc691a65108141dda --- /dev/null +++ b/reference_images/2-game/2-game_050_Groal_the_Great.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca94be80d258f674a8e6944a66df0e4a9ca49bf98be5573ba8369c828e42eb3 +size 161364 diff --git a/reference_images/2-game/2-game_shared_Michiru_Matsushima.jpg b/reference_images/2-game/2-game_shared_Michiru_Matsushima.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1d466b87c2a6f4cfc2694e52d2dc2ae4c3d3cda --- /dev/null +++ b/reference_images/2-game/2-game_shared_Michiru_Matsushima.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d1d4246ace620d3b21ae17c81b5bef93bb2bc84cf2aa995c853e34e6e4ab9e +size 68364 diff --git a/reference_images/3-sports/3-sports_001_Natalia_Grossman.jpg b/reference_images/3-sports/3-sports_001_Natalia_Grossman.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2ceda69dabd2b2f9dab3433ea58d88c0a4e40d3 --- /dev/null +++ b/reference_images/3-sports/3-sports_001_Natalia_Grossman.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85619af5474d5990670af0fefd3c5eb5668330ed186cb33469302e49c9d332f +size 200356 diff --git a/reference_images/3-sports/3-sports_002_Toby_Roberts.jpg b/reference_images/3-sports/3-sports_002_Toby_Roberts.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58be37fde830c95cf4ec26ed3648822f8a51f77d --- /dev/null +++ b/reference_images/3-sports/3-sports_002_Toby_Roberts.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81963697254383859514829d89f9e2cb5c139b5a67c10f5e438a92ee70ad7e1 +size 18584 diff --git a/reference_images/3-sports/3-sports_003_Sorato_Anraku.jpg b/reference_images/3-sports/3-sports_003_Sorato_Anraku.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c6993d7f8825449a2fb10b8b2b4b416ba514c13 --- /dev/null +++ b/reference_images/3-sports/3-sports_003_Sorato_Anraku.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac32e11a4aebf72e4864856954a84d5c48bc171d12fc956c747c23de8f8ec06 +size 474818 diff --git a/reference_images/3-sports/3-sports_004_Brooke_Raboutou.jpg b/reference_images/3-sports/3-sports_004_Brooke_Raboutou.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28f8567494e9b76993439bab3152fd40c9d3030b --- /dev/null +++ b/reference_images/3-sports/3-sports_004_Brooke_Raboutou.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ffe49cbb51800de1a01e1b047e55051e64b3ddf402d49866716e6659d09caac +size 8184 diff --git a/reference_images/3-sports/3-sports_005_Ai_Mori.jpg b/reference_images/3-sports/3-sports_005_Ai_Mori.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a54b3c744096c7113e81934b4549886ec66496b --- /dev/null +++ b/reference_images/3-sports/3-sports_005_Ai_Mori.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d38e74c0cc78fded825fd555e9c1d8dcce062c009962994f7cc2b8e9ac6ffe +size 7394 diff --git a/reference_images/3-sports/3-sports_006_Paul_Coll.jpg b/reference_images/3-sports/3-sports_006_Paul_Coll.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f410eb1393a8c73cfce27fdd9763f2c0704e7489 --- /dev/null +++ b/reference_images/3-sports/3-sports_006_Paul_Coll.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b0adcce30541afe188f9dfcbf4d054fc5358f611f92bcbbc5158d3c0271bf44 +size 37730 diff --git a/reference_images/3-sports/3-sports_007_Diego_Elias.jpg b/reference_images/3-sports/3-sports_007_Diego_Elias.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b6d64488e8e3d4cac12ab30340a0c86bf694d15 --- /dev/null +++ b/reference_images/3-sports/3-sports_007_Diego_Elias.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6503a1aca1cb804e885430a172762f3952e9380b7afb58049a6317d894a4d955 +size 283622 diff --git a/reference_images/3-sports/3-sports_008_Hania_El_Hammamy.jpg b/reference_images/3-sports/3-sports_008_Hania_El_Hammamy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce4abd99dacace1b796fa2fb7a2b6d3042397e4e --- /dev/null +++ b/reference_images/3-sports/3-sports_008_Hania_El_Hammamy.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5795ed2f4cff1896f927f93d0b21d545cf6e82fb366ba2192512d9faec86f03 +size 14390 diff --git a/reference_images/3-sports/3-sports_009_Nouran_Gohar.jpg b/reference_images/3-sports/3-sports_009_Nouran_Gohar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..846fb66260ec1ef15f5a73ebb7fc1a3d91da069c --- /dev/null +++ b/reference_images/3-sports/3-sports_009_Nouran_Gohar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5151ab4f91bb511d069371eab72daa2c68e1ba497fbe49db5a59ff80e03c0022 +size 268409 diff --git a/reference_images/3-sports/3-sports_010_Amanda_Sobhy.jpg b/reference_images/3-sports/3-sports_010_Amanda_Sobhy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a7a16fcdfda2dc2df4d761d8eb910d969560d37 --- /dev/null +++ b/reference_images/3-sports/3-sports_010_Amanda_Sobhy.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312f17f48b9d4bd0ca61a6ba588a1b4596f330936e040b7c4205bf0bf0d138cf +size 11811 diff --git a/reference_images/3-sports/3-sports_011_Anders_Antonsen.jpg b/reference_images/3-sports/3-sports_011_Anders_Antonsen.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6658615b767531f5cc7d1295f9bf082c8d8e86e4 --- /dev/null +++ b/reference_images/3-sports/3-sports_011_Anders_Antonsen.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b3f04f9a98cc6aefcd98d034e79fe75887ddbe4c17882c3823871a21fc8187 +size 6329 diff --git a/reference_images/3-sports/3-sports_012_Kim_Astrup.jpg b/reference_images/3-sports/3-sports_012_Kim_Astrup.jpg new file mode 100644 index 0000000000000000000000000000000000000000..949f673186f92e3dfc2586f6e4048b95a74c3fdb --- /dev/null +++ b/reference_images/3-sports/3-sports_012_Kim_Astrup.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18605777e005e36a3e9cb9b3d3bae265ebb01245c7ab2d02ef2f93a912bfee2 +size 30402 diff --git a/reference_images/3-sports/3-sports_013_Anders_Skaarup_Rasmussen.jpg b/reference_images/3-sports/3-sports_013_Anders_Skaarup_Rasmussen.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b7fc4e0057c74fccadf92c421e73014e0a106cd --- /dev/null +++ b/reference_images/3-sports/3-sports_013_Anders_Skaarup_Rasmussen.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ecdf396cfc0337f9ae9bbb7189e35e9123cf9a998c5e6c6521a945aac1ccc9 +size 13458 diff --git a/reference_images/3-sports/3-sports_014_Seo_Seung_jae.jpg b/reference_images/3-sports/3-sports_014_Seo_Seung_jae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49ecfad7cf55107e6e35c1a7cdba8fc808a3f18f --- /dev/null +++ b/reference_images/3-sports/3-sports_014_Seo_Seung_jae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098d741fe3d1cb7081687e317bc47f17f11a7dd05e1200f22e417dad69986db8 +size 13822 diff --git a/reference_images/3-sports/3-sports_015_Beiwen_Zhang.jpg b/reference_images/3-sports/3-sports_015_Beiwen_Zhang.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db707d0e078e51a631279fef5275dd37029e637b --- /dev/null +++ b/reference_images/3-sports/3-sports_015_Beiwen_Zhang.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc4ecdfcdb7502aed9d5612b5afa39294b3c6e2cc5dd54609a9f7e89b644eda +size 16571 diff --git a/reference_images/3-sports/3-sports_016_Adriana_Diaz.jpg b/reference_images/3-sports/3-sports_016_Adriana_Diaz.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2df6ec725d3b5eabd3c16d5d88c9912a4cef6bec --- /dev/null +++ b/reference_images/3-sports/3-sports_016_Adriana_Diaz.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b69b22e91c3c7be698c9e4f60e777b46188f04c92f297fff6fc71edb8976f6 +size 8387 diff --git a/reference_images/3-sports/3-sports_017_Hugo_Calderano.jpg b/reference_images/3-sports/3-sports_017_Hugo_Calderano.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64e5eab11709942464dd2fe0f3386aad476c46c4 --- /dev/null +++ b/reference_images/3-sports/3-sports_017_Hugo_Calderano.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0015f59b1215b23043c9aa59088216ba805e27f6dccd9510c63d83891a17f905 +size 5637 diff --git a/reference_images/3-sports/3-sports_018_Shin_Yubin.jpg b/reference_images/3-sports/3-sports_018_Shin_Yubin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b1029c64dc7370c40fb96cced42ff1e7cd0d908 --- /dev/null +++ b/reference_images/3-sports/3-sports_018_Shin_Yubin.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f1d495e7a7def9ed803ecacdafcd2099cc95c7eb15a07b23302c57b09a6a76 +size 293815 diff --git a/reference_images/3-sports/3-sports_019_Bernadette_Szocs.jpg b/reference_images/3-sports/3-sports_019_Bernadette_Szocs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b37a660d4f93943fa51ca36ccb20635cd4d597f --- /dev/null +++ b/reference_images/3-sports/3-sports_019_Bernadette_Szocs.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09764efa21346e0a9567d86db8350f5f2da9063e151ad94279cfbd6fc34ec7eb +size 10839 diff --git a/reference_images/3-sports/3-sports_020_Truls_Moregardh.jpg b/reference_images/3-sports/3-sports_020_Truls_Moregardh.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15d5bb89b5c575b656ce2f8e4d9e239952c3e7ab --- /dev/null +++ b/reference_images/3-sports/3-sports_020_Truls_Moregardh.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851e7fcda2ec9cc552ef2a9a24b6d996684668c170ed5d7781894acccb9e30a0 +size 289964 diff --git a/reference_images/3-sports/3-sports_021_Koki_Kano.jpg b/reference_images/3-sports/3-sports_021_Koki_Kano.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdb0ca3763d79f9592f9f06cc1b7ffc03ee6b620 --- /dev/null +++ b/reference_images/3-sports/3-sports_021_Koki_Kano.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:313b7bb1cc3f1552109f9fc39dec859531702956515eb3121d839801c65e4ec1 +size 16300 diff --git a/reference_images/3-sports/3-sports_022_Sara_Balzer.jpg b/reference_images/3-sports/3-sports_022_Sara_Balzer.jpg new file mode 100644 index 0000000000000000000000000000000000000000..681d9dba7e792b41dfee6e2655ba321d761970a5 --- /dev/null +++ b/reference_images/3-sports/3-sports_022_Sara_Balzer.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dea7cb661c4521c508083bdfb9b5750e77c105413f4b99a50dc072a871add50 +size 6263 diff --git a/reference_images/3-sports/3-sports_023_Tommaso_Marini.jpg b/reference_images/3-sports/3-sports_023_Tommaso_Marini.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98870a0f8a402ce621be1e123f4c31096045c6ca --- /dev/null +++ b/reference_images/3-sports/3-sports_023_Tommaso_Marini.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130041ff2107acdfe12da87af32ef194d5a6c74b75e09fea2c3073ce83700ad7 +size 15186 diff --git a/reference_images/3-sports/3-sports_024_Lee_Kiefer.jpg b/reference_images/3-sports/3-sports_024_Lee_Kiefer.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9599c32978c993f7676ee63af839c9177f5b826 --- /dev/null +++ b/reference_images/3-sports/3-sports_024_Lee_Kiefer.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9f00c24f113442d9e9f7d4e01b68af9dc17d53250fbce656500fcd14297f92 +size 2998 diff --git a/reference_images/3-sports/3-sports_025_Vivian_Kong.jpg b/reference_images/3-sports/3-sports_025_Vivian_Kong.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c9c6f136cb73f8104b2ddbd5da4516bf1e85a50 --- /dev/null +++ b/reference_images/3-sports/3-sports_025_Vivian_Kong.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20eea62eddf31d4540ebc556e2c0a35111e406c24fb603699ccdb7cf2ee87189 +size 904708 diff --git a/reference_images/3-sports/3-sports_026_Matthias_Casse.jpg b/reference_images/3-sports/3-sports_026_Matthias_Casse.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d53dc233c4cd717aa8dc9927acc3f4581c3e451c --- /dev/null +++ b/reference_images/3-sports/3-sports_026_Matthias_Casse.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c1d1480ab10eb1e91eae99b24f1afc60ad810c8de29526dd22bae4abec8158 +size 6557 diff --git a/reference_images/3-sports/3-sports_027_Christa_Deguchi.jpg b/reference_images/3-sports/3-sports_027_Christa_Deguchi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d7024f04a0cb575e760cf9a8bdb0bd64a3a779f --- /dev/null +++ b/reference_images/3-sports/3-sports_027_Christa_Deguchi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36865b79e473029e0b2655dc15e353d92b667ed61276db0c132707e3720e8c93 +size 78442 diff --git a/reference_images/3-sports/3-sports_028_Barbara_Matic.jpg b/reference_images/3-sports/3-sports_028_Barbara_Matic.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df6f6482241e37d057f20be0a416ed400818b0ab --- /dev/null +++ b/reference_images/3-sports/3-sports_028_Barbara_Matic.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a7f0ff11695a6f4a623f1d5bbdeb7ffc7e6a51717a0c1a1bd23577d78cb6ba +size 17068 diff --git a/reference_images/3-sports/3-sports_029_Tato_Grigalashvili.jpg b/reference_images/3-sports/3-sports_029_Tato_Grigalashvili.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fd70704fba3d2d2907a2d7a10ef28a56bcdd2d4 --- /dev/null +++ b/reference_images/3-sports/3-sports_029_Tato_Grigalashvili.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7c7b8ce2e5acd44f97ff40265b361f3d1361b7e2bd9a72aaaefdb237aa82c1 +size 6377 diff --git a/reference_images/3-sports/3-sports_030_Distria_Krasniqi.jpg b/reference_images/3-sports/3-sports_030_Distria_Krasniqi.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a50fc3d29750bb8f5048d929b2b01bf3dcf660be --- /dev/null +++ b/reference_images/3-sports/3-sports_030_Distria_Krasniqi.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36dd036b1a1a76b31c2b978b9596bf5c0a42ca6e5d8ddd2729ad8681d06818e +size 16657 diff --git a/reference_images/3-sports/3-sports_031_Sarah_Hildebrandt.jpg b/reference_images/3-sports/3-sports_031_Sarah_Hildebrandt.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e09a2b719848a57f43e451bc27dc721626dcfc0 --- /dev/null +++ b/reference_images/3-sports/3-sports_031_Sarah_Hildebrandt.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ec71c0b63e2750d468ae509d8be874534ef3429bc0bc933d263a025ff383d1 +size 198834 diff --git a/reference_images/3-sports/3-sports_032_Kyle_Dake.jpg b/reference_images/3-sports/3-sports_032_Kyle_Dake.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e2c6e5f5e8f0efb3a9cf032acf1e94d828785ad --- /dev/null +++ b/reference_images/3-sports/3-sports_032_Kyle_Dake.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94904813a2507be1bf7e069f1601b7ed4067dbd73b935b61c2eb82dc7d3ad17c +size 4934 diff --git a/reference_images/3-sports/3-sports_033_Helen_Maroulis.jpg b/reference_images/3-sports/3-sports_033_Helen_Maroulis.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a91017217840a53f7816a211a3b60fa50dac7b23 --- /dev/null +++ b/reference_images/3-sports/3-sports_033_Helen_Maroulis.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb929de66bb707555d3b5a14b987f7faf798165250ca10fb46f0e2ce7d2ba6d +size 190246 diff --git a/reference_images/3-sports/3-sports_034_Buse_Tosun_Cavusoglu.jpg b/reference_images/3-sports/3-sports_034_Buse_Tosun_Cavusoglu.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3dab98f2abc87983085cb6b8ed6f3039a5251d1 --- /dev/null +++ b/reference_images/3-sports/3-sports_034_Buse_Tosun_Cavusoglu.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ee95898ea05a2f79e85d222a7b251dcc3ba54f14a2169cfc8b3761aa5f58f7 +size 20354 diff --git a/reference_images/3-sports/3-sports_035_Vinesh_Phogat.jpg b/reference_images/3-sports/3-sports_035_Vinesh_Phogat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db22e6e7f4b33e9cb54860d6b6467aed00cd5922 --- /dev/null +++ b/reference_images/3-sports/3-sports_035_Vinesh_Phogat.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e26454d7e43ac3623f04b62e930b8cbc07cabcb3e12d19e337e0048f7355d43 +size 6274 diff --git a/reference_images/3-sports/3-sports_036_Ricarda_Funk.jpg b/reference_images/3-sports/3-sports_036_Ricarda_Funk.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ed88b7efac7dece6d5b945f715776e04351f62c --- /dev/null +++ b/reference_images/3-sports/3-sports_036_Ricarda_Funk.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b3c29d94e1722ba377947a32ad4fb12ce408c3769ab05dcc34ffd0984aae5f +size 21542 diff --git a/reference_images/3-sports/3-sports_037_Joe_Clarke.jpg b/reference_images/3-sports/3-sports_037_Joe_Clarke.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25b90177ab7032f39bc79ec42066c855321808f1 --- /dev/null +++ b/reference_images/3-sports/3-sports_037_Joe_Clarke.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9879fe10d2321acaa5c7de3271d6bafa32f2218f4a04a47e0fcaa86492f0e67b +size 9464 diff --git a/reference_images/3-sports/3-sports_038_Mallory_Franklin.jpg b/reference_images/3-sports/3-sports_038_Mallory_Franklin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a8ac97541f836595c611ce4e9db9f6124d7cdc0 --- /dev/null +++ b/reference_images/3-sports/3-sports_038_Mallory_Franklin.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22641ace935452fff613b01f1709e72aacb1f71f683192e14bef1be1c61ca207 +size 18302 diff --git a/reference_images/3-sports/3-sports_039_Nevin_Harrison.jpg b/reference_images/3-sports/3-sports_039_Nevin_Harrison.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fd19f5590778c048cd6d6e46b98522bdb5bf378 --- /dev/null +++ b/reference_images/3-sports/3-sports_039_Nevin_Harrison.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d5fd2a7ff97a82d68f9cb18a78228f47d45fe817def2baafb4ae0b53488ae9 +size 1336770 diff --git a/reference_images/3-sports/3-sports_040_Fernando_Pimenta.jpg b/reference_images/3-sports/3-sports_040_Fernando_Pimenta.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df48c6c12b483601e2a007000e3f431d2d27f67a --- /dev/null +++ b/reference_images/3-sports/3-sports_040_Fernando_Pimenta.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad58269eab530f35a5652946219bd877a55e98eb992fa9a0053d1ad64063aac2 +size 73765 diff --git a/reference_images/3-sports/3-sports_041_Oliver_Zeidler.jpg b/reference_images/3-sports/3-sports_041_Oliver_Zeidler.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbd5844e6229a09c738864fb8464ebf3b59f60d2 --- /dev/null +++ b/reference_images/3-sports/3-sports_041_Oliver_Zeidler.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c994252c5b2250c5252a0efd8376c22a5eb5cf93b55f18b0163177c08f6eaf +size 5803 diff --git a/reference_images/3-sports/3-sports_042_Karolien_Florijn.jpg b/reference_images/3-sports/3-sports_042_Karolien_Florijn.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e339b0ccc49736af652930611f7505d67a170cb --- /dev/null +++ b/reference_images/3-sports/3-sports_042_Karolien_Florijn.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cedc8c7b2fdc1de7d9affb5b24e06a6a0f3e3d5904e463b06c0a824b56dc45e +size 19611 diff --git a/reference_images/3-sports/3-sports_043_Emma_Twigg.jpg b/reference_images/3-sports/3-sports_043_Emma_Twigg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7059c06b90825cf88fb920c70d31e39623b373a --- /dev/null +++ b/reference_images/3-sports/3-sports_043_Emma_Twigg.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b008ca4c89b5dd1790fda9b48d55416c7f508738647cc2fa26e46c0b40bf4b +size 132347 diff --git a/reference_images/3-sports/3-sports_044_Sverri_Nielsen.jpg b/reference_images/3-sports/3-sports_044_Sverri_Nielsen.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f583ea489e2b28759d50e950cdc9053de68ba776 --- /dev/null +++ b/reference_images/3-sports/3-sports_044_Sverri_Nielsen.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da1ca5fe44eaca00f142a6dd08a600ecb86d45f22f2774a614f49cf66c1e11f +size 5994 diff --git a/reference_images/3-sports/3-sports_045_Grace_Prendergast.jpg b/reference_images/3-sports/3-sports_045_Grace_Prendergast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18ffa6c0f9a74071e45074af2401c6324c54de74 --- /dev/null +++ b/reference_images/3-sports/3-sports_045_Grace_Prendergast.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6309898b3f80721f2db471b274fe98b407b929753e885871869a88f99f3d89a +size 4822 diff --git a/reference_images/3-sports/3-sports_046_Henny_Reistad.jpg b/reference_images/3-sports/3-sports_046_Henny_Reistad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6463ff74c093ce850d9bd2523aff2b317318420d --- /dev/null +++ b/reference_images/3-sports/3-sports_046_Henny_Reistad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a91870fbd573922e0424570629390961be5bd5df66afdd9866e800296a7ccc80 +size 14404 diff --git a/reference_images/3-sports/3-sports_047_Mathias_Gidsel.jpg b/reference_images/3-sports/3-sports_047_Mathias_Gidsel.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57920d678aad0d4c6f77af4eb7ec792ae81973ec --- /dev/null +++ b/reference_images/3-sports/3-sports_047_Mathias_Gidsel.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1fa8858b05ca5f0c969cdadfaa90fdd2a2aeee958d9a6bd28d4a038afee3332 +size 7436 diff --git a/reference_images/3-sports/3-sports_048_Sandra_Toft.jpg b/reference_images/3-sports/3-sports_048_Sandra_Toft.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09c322a548a7df39594a31080c2433f2b69652f5 --- /dev/null +++ b/reference_images/3-sports/3-sports_048_Sandra_Toft.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f520c21051570828f926a4d016da2b4cb0c19bc32264e04416e48e62a4770ac +size 18185 diff --git a/reference_images/3-sports/3-sports_049_Bruce_Mouat.jpg b/reference_images/3-sports/3-sports_049_Bruce_Mouat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f92923354b00fe5e586dee4e394dda9ee1efaac1 --- /dev/null +++ b/reference_images/3-sports/3-sports_049_Bruce_Mouat.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172b309b47a0b47ab1b35b76bede6e3bd337e7a4dac2d7395e589db1d5c2f19e +size 430710 diff --git a/reference_images/3-sports/3-sports_050_Silvana_Tirinzoni.jpg b/reference_images/3-sports/3-sports_050_Silvana_Tirinzoni.jpg new file mode 100644 index 0000000000000000000000000000000000000000..836ffbb04fcc198030d0b77a8cf7d7c4f7f055d5 --- /dev/null +++ b/reference_images/3-sports/3-sports_050_Silvana_Tirinzoni.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547e27db7fff0ff735d73b1f34feb06400194df539751a1fbff6835bf6177c97 +size 430710 diff --git a/reference_images/4-entertainment/4-entertainment_001_Tom_Blyth.jpg b/reference_images/4-entertainment/4-entertainment_001_Tom_Blyth.jpg new file mode 100644 index 0000000000000000000000000000000000000000..440214441129eea2492dcfacdefb8f59fc24e25b --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_001_Tom_Blyth.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab1929f1af2323faa5f627be96daeb3ce1f0bdd325b8f268110f5835e259265 +size 76791 diff --git a/reference_images/4-entertainment/4-entertainment_002_PinkPantheress.jpg b/reference_images/4-entertainment/4-entertainment_002_PinkPantheress.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ba65f0ca21afe12f2c64862d03243edc0e5f61b --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_002_PinkPantheress.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2cee4810bae63726fb017a9520c5ce295598c7e7b3b36c612e2b69a6d7da4a2 +size 340155 diff --git a/reference_images/4-entertainment/4-entertainment_003_Xyla_Foxlin.jpg b/reference_images/4-entertainment/4-entertainment_003_Xyla_Foxlin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..960a0d121c0990a55de1735ab29b2d86be1b3d88 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_003_Xyla_Foxlin.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3df11f026daa06b971f365604b6ff885966784f273716b7e4edafefda336296 +size 138527 diff --git a/reference_images/4-entertainment/4-entertainment_004_Joe_Mele.jpg b/reference_images/4-entertainment/4-entertainment_004_Joe_Mele.jpg new file mode 100644 index 0000000000000000000000000000000000000000..905e402fd2dae478e0a538f9cea2f0b1b8ed1862 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_004_Joe_Mele.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36d33d97fd73b491a94a7a51ad9131e2571cb2faed3dbc6ec53acc2b802ba6a +size 198630 diff --git a/reference_images/4-entertainment/4-entertainment_005_Monica_Ravichandran.jpg b/reference_images/4-entertainment/4-entertainment_005_Monica_Ravichandran.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa24b3c4d7b38ed1361c397fee7aa76cd2684f8b --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_005_Monica_Ravichandran.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d82d88f49fd76b189557658a3a5cadac4bb1ef56e421843cf97a8bcd314c5eb +size 102733 diff --git a/reference_images/4-entertainment/4-entertainment_006_Aaron_Parnas.jpg b/reference_images/4-entertainment/4-entertainment_006_Aaron_Parnas.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f3475ca79c3fc3fbd0dd89948a628e322ba77bb --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_006_Aaron_Parnas.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7c36b4052d4f111873f89f3272b85ebc8981750c32f983662789956fa3f41b +size 31768 diff --git a/reference_images/4-entertainment/4-entertainment_007_Achieng_Agutu.jpg b/reference_images/4-entertainment/4-entertainment_007_Achieng_Agutu.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bfe9d7faf83fe7c8c13b4987119e35c2e50771c --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_007_Achieng_Agutu.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f4e2cdb7a9ec41d5f0afb18dd3dab4dd47b32749f950c6d628b56d4154a7b25 +size 65838 diff --git a/reference_images/4-entertainment/4-entertainment_008_Sabrina_Brier.jpg b/reference_images/4-entertainment/4-entertainment_008_Sabrina_Brier.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5744bc25f9d269c77278f6f62555017d876adc4 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_008_Sabrina_Brier.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545fb65cfb16a13fe853c02bcbc8fb08bd636c363a0a48f4f76244e0615347dc +size 245697 diff --git a/reference_images/4-entertainment/4-entertainment_009_Quenlin_Blackwell.jpg b/reference_images/4-entertainment/4-entertainment_009_Quenlin_Blackwell.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f716ad3cc292e709c728884964e83dfb700366a --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_009_Quenlin_Blackwell.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4cf4fc848073522c93333a4812e7e90abe8454029a8724402130c5ebfe24101 +size 80718 diff --git a/reference_images/4-entertainment/4-entertainment_010_Mina_Le.jpg b/reference_images/4-entertainment/4-entertainment_010_Mina_Le.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59a51d52d99312c19e5d202b2bb89fe0ea04bda3 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_010_Mina_Le.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc7a9790cd4cdf4b846817f892baf1189bf7b712442b204e6f8b0d70f0a3b2c +size 241087 diff --git a/reference_images/4-entertainment/4-entertainment_011_Meredith_Hayden.jpg b/reference_images/4-entertainment/4-entertainment_011_Meredith_Hayden.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a695f5761ecd8ddd1144fa5637ec9c28682cc7e --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_011_Meredith_Hayden.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e357967a4b8ecafa023e61d9187235cae75258ef671cc11b9069d2ffe11d793a +size 40417 diff --git a/reference_images/4-entertainment/4-entertainment_012_Bri_Morales.jpg b/reference_images/4-entertainment/4-entertainment_012_Bri_Morales.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a232074625d88b8c49b2a516f0be55ec75b8399f --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_012_Bri_Morales.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1847e07be48240b7cf5bda11a28687ed6773d7aa089f60cf93c5abc762549fc3 +size 180596 diff --git a/reference_images/4-entertainment/4-entertainment_013_Brandon_Edelman.jpg b/reference_images/4-entertainment/4-entertainment_013_Brandon_Edelman.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2c3ccfbc6f0a684bbcbcda9e9cba596afb65388 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_013_Brandon_Edelman.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f95225101831058809343a379c02bc591b046736ae73766eb5f129b46500ef7 +size 52386 diff --git a/reference_images/4-entertainment/4-entertainment_014_Katie_Fang.jpg b/reference_images/4-entertainment/4-entertainment_014_Katie_Fang.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cdd3873fe7f3802ca48fc1cefa860d0fe218242 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_014_Katie_Fang.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bc810c7ebe5afdb024248435db03cc008a0e4aff382bb2a9013bb84f2cd512 +size 1366132 diff --git a/reference_images/4-entertainment/4-entertainment_015_Hailey_Sani.jpg b/reference_images/4-entertainment/4-entertainment_015_Hailey_Sani.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15f95692954ab68e23748b99d6eb2b8b50466ca9 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_015_Hailey_Sani.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a8f5232a3695f3fa4fb6b0e54f6b4f2a3a8b3e390c35ecfef8d2beee80c957 +size 242289 diff --git a/reference_images/4-entertainment/4-entertainment_016_Sofia_Camara.jpg b/reference_images/4-entertainment/4-entertainment_016_Sofia_Camara.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7371b02cf2b653a39eebb75aaec09286e20bfef9 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_016_Sofia_Camara.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad700099bd38cb3fe6634dba58db34245c8e92d3d76e21a28ee518857e8c1158 +size 817383 diff --git a/reference_images/4-entertainment/4-entertainment_017_Nectar_Woode.jpg b/reference_images/4-entertainment/4-entertainment_017_Nectar_Woode.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09ed114554582f6f7a1a14690553b9f898b20c86 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_017_Nectar_Woode.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdda41a6fa6ce530a1a3c8377d16d6e584c95e634964e0b8dbd0f94d155ff194 +size 568116 diff --git a/reference_images/4-entertainment/4-entertainment_018_Sean_Trelford.jpg b/reference_images/4-entertainment/4-entertainment_018_Sean_Trelford.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a49a313400041883e74d25a2c08c30fb9ee7ff8 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_018_Sean_Trelford.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a009e8d988d2dff5e6e3e3fada0635a4cdfe1ec2e9ecf8b8fb05a5d69b561bd +size 288002 diff --git a/reference_images/4-entertainment/4-entertainment_019_Skye_Newman.jpg b/reference_images/4-entertainment/4-entertainment_019_Skye_Newman.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce4f8ee17d1062131440aba96b99b13524af1e55 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_019_Skye_Newman.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8101d400591e2e234df9c663bc0edce2c2f0d8c320db1bdc7ea0ccaa305fafa +size 100295 diff --git a/reference_images/4-entertainment/4-entertainment_020_Kay_Poyer.jpg b/reference_images/4-entertainment/4-entertainment_020_Kay_Poyer.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ee3fa82b438889be5c58c94f1077d77eb55a3f2 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_020_Kay_Poyer.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1800472f8d47c9e6fbaf7ddd39587e2c54e1250b33564433415bf5760d87fc6a +size 239012 diff --git a/reference_images/4-entertainment/4-entertainment_021_Ava_Wong_Davies.jpg b/reference_images/4-entertainment/4-entertainment_021_Ava_Wong_Davies.jpg new file mode 100644 index 0000000000000000000000000000000000000000..985e5b812b3f2899f638a37e624d663a3fde86c9 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_021_Ava_Wong_Davies.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a4420c1f7366703ebb30834a93947f659d1bc4d9a25e185244173f6d11c8c4 +size 599902 diff --git a/reference_images/4-entertainment/4-entertainment_022_Chase_Infiniti.jpg b/reference_images/4-entertainment/4-entertainment_022_Chase_Infiniti.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52f4666cca40bcb9c6ab84c6c7a57505182a3d14 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_022_Chase_Infiniti.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e4c529ab58f2411f8d04a528a971242c8ec88291f106c10d4b3be77706488e +size 268083 diff --git a/reference_images/4-entertainment/4-entertainment_023_True_Whitaker.jpg b/reference_images/4-entertainment/4-entertainment_023_True_Whitaker.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f03c7ce41fc6c6ebb773097eb1aab48c05276f4 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_023_True_Whitaker.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09dd90dba8f9c3f1c77e45fca2af6dc84df9447c0852b2328df54b96739e361f +size 456138 diff --git a/reference_images/4-entertainment/4-entertainment_024_Connor_Storrie.jpg b/reference_images/4-entertainment/4-entertainment_024_Connor_Storrie.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67155bc49dafec75b36584e075b295966598afed --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_024_Connor_Storrie.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4422dbfa2df1f18f4287b883bb6ff31a4654ca5b0758939fc0b06c4cebee02f3 +size 2574433 diff --git a/reference_images/4-entertainment/4-entertainment_025_Audrey_Hobert.jpg b/reference_images/4-entertainment/4-entertainment_025_Audrey_Hobert.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebc6178d13e32dfcfebdd407839ec88d9ee3e0aa --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_025_Audrey_Hobert.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5951a236e8a34327eafa30b119ca55c12b4c4a94698498965faff5955ece89a4 +size 49318 diff --git a/reference_images/4-entertainment/4-entertainment_026_Myhala.jpg b/reference_images/4-entertainment/4-entertainment_026_Myhala.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0326709bfb589184373b183ad803f0eed9ec5915 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_026_Myhala.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61621cc5030f5948ce58b275c789814845cf8107d22f5c76bef45b5265f3b3aa +size 246180 diff --git a/reference_images/4-entertainment/4-entertainment_027_Michelle_de_Swarte.jpg b/reference_images/4-entertainment/4-entertainment_027_Michelle_de_Swarte.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b895fc11550b488f790621024f2650d2884ebfef --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_027_Michelle_de_Swarte.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9983d6a94982d1e1328ee9a2bc42afd2d935aac9566622dec04e642db2f292e1 +size 136874 diff --git a/reference_images/4-entertainment/4-entertainment_028_Havana_Rose_Liu.jpg b/reference_images/4-entertainment/4-entertainment_028_Havana_Rose_Liu.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c1941b556d755cc03b33404a0793e32e4ceb905 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_028_Havana_Rose_Liu.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809b1ca626c2fed33a4a99f47d7a91447693f1097bfe5c4dbc6c34c38adc4955 +size 505099 diff --git a/reference_images/4-entertainment/4-entertainment_029_Miles_Caton.jpg b/reference_images/4-entertainment/4-entertainment_029_Miles_Caton.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28c90cc7254fc39f5fe32ad86461fb3ae2349199 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_029_Miles_Caton.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f03001e87682838bbcab9b7cb72324e92fc8185ef52a875748b9f622519851 +size 46805 diff --git a/reference_images/4-entertainment/4-entertainment_030_Ella_Anderson.jpg b/reference_images/4-entertainment/4-entertainment_030_Ella_Anderson.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01cf35d353716c177707ef93de9e770d1e140fe2 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_030_Ella_Anderson.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e56c9921cf43b7ad6c56f53097f5430754f77bbd6c1e0950bbf21a51856eba44 +size 276071 diff --git a/reference_images/4-entertainment/4-entertainment_031_Edmund_Donovan.jpg b/reference_images/4-entertainment/4-entertainment_031_Edmund_Donovan.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec679b1168c8f50e723a59915b65aec6d62bc186 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_031_Edmund_Donovan.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09620ffb80b0f4201627f52fae0f2650f271d560d5315d38d7922789f3ab6a84 +size 2687765 diff --git a/reference_images/4-entertainment/4-entertainment_032_Inga_Ibsdotter_Lilleaas.jpg b/reference_images/4-entertainment/4-entertainment_032_Inga_Ibsdotter_Lilleaas.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b00049478ad7333bb8be908ea6ada18a9a6d2b57 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_032_Inga_Ibsdotter_Lilleaas.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0000cd0636808756ae40ca9fdf6627ec832157016e48006bc9693371a24735c8 +size 128849 diff --git a/reference_images/4-entertainment/4-entertainment_033_Esther_McGregor.jpg b/reference_images/4-entertainment/4-entertainment_033_Esther_McGregor.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a554474d99ee39d1e22b43a67805bcd9502c091 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_033_Esther_McGregor.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a13d223d7dcd0479e1588651698ebab63310cc234922616252b829f54ac1ea +size 258718 diff --git a/reference_images/4-entertainment/4-entertainment_034_Guillaume_Marbeck.jpg b/reference_images/4-entertainment/4-entertainment_034_Guillaume_Marbeck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fc8e7753d94a597cf5f325d6362344fee838770 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_034_Guillaume_Marbeck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5439db1208fa675af5ca9a3362739b86296165b546b238a6277500e4d6343d91 +size 1913342 diff --git a/reference_images/4-entertainment/4-entertainment_035_Lola_Young.jpg b/reference_images/4-entertainment/4-entertainment_035_Lola_Young.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bedc4915eec4887b8fcc5d61947d1fd21ba71802 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_035_Lola_Young.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b914d1193d1923956b08edd447ae7e1da1035e38306ca59aa5f1dd67ab672d2 +size 91430 diff --git a/reference_images/4-entertainment/4-entertainment_036_Owen_Cooper.jpg b/reference_images/4-entertainment/4-entertainment_036_Owen_Cooper.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4a90f2ce0708069cbd5d78bfd7eef6e600a140a --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_036_Owen_Cooper.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c48c38748b7f56e1d807535ef7109491e6012b1db2766c0e035c40396556572 +size 412798 diff --git a/reference_images/4-entertainment/4-entertainment_037_Sienna_Spiro.jpg b/reference_images/4-entertainment/4-entertainment_037_Sienna_Spiro.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92403bcd0af38a0d496321e61433ce3c564ca997 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_037_Sienna_Spiro.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794776f3e29392dabd9711d265ff2e67804a6c7d4282ed32da498ab84cfc6055 +size 163780 diff --git a/reference_images/4-entertainment/4-entertainment_038_Mau_P.jpg b/reference_images/4-entertainment/4-entertainment_038_Mau_P.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7dec23dc7c6c0eb11517f638e136670074fc12c --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_038_Mau_P.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8749ebbdb6d1f4bc228a3091d9bb37ba40130e7607cbbab66d28466b5fb3ced +size 68818 diff --git a/reference_images/4-entertainment/4-entertainment_039_Nicky_Campbell.jpg b/reference_images/4-entertainment/4-entertainment_039_Nicky_Campbell.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68dcad4e9f60c50b4e804915c7834c6513b1bd8f --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_039_Nicky_Campbell.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bec4ca357b4c4fba8a1d02bbb03aef13b6ac5d6dee20ca22b47d35315d1fe3 +size 1129448 diff --git a/reference_images/4-entertainment/4-entertainment_040_Anayka_She.jpg b/reference_images/4-entertainment/4-entertainment_040_Anayka_She.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eb8b8331339b207c6833e19c35b11ec919ffa20 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_040_Anayka_She.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab5707076c848e34b455c7b0c0d4540a8f3900dbf919c588a3b0335b084891e +size 180976 diff --git a/reference_images/4-entertainment/4-entertainment_041_Vinny_Thomas.jpg b/reference_images/4-entertainment/4-entertainment_041_Vinny_Thomas.jpg new file mode 100644 index 0000000000000000000000000000000000000000..410caa3705909e9fc4cbac9edee76e6e0a763451 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_041_Vinny_Thomas.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11d5fd75c9df5053fb4226fe030d271ae8fbad869f8dbb6ebc6d415db4bd3d7 +size 7863045 diff --git a/reference_images/4-entertainment/4-entertainment_042_Krit_Amnuaydechkorn.jpg b/reference_images/4-entertainment/4-entertainment_042_Krit_Amnuaydechkorn.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d9ae49c344607b97774bb99cb4d27310b69a4b9 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_042_Krit_Amnuaydechkorn.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b596536a4477fed71258734491a50eae46d2b043ae20ad631f4d002a4771441 +size 19516 diff --git a/reference_images/4-entertainment/4-entertainment_043_Saura_Lightfoot_Leon.jpg b/reference_images/4-entertainment/4-entertainment_043_Saura_Lightfoot_Leon.jpg new file mode 100644 index 0000000000000000000000000000000000000000..364b71b80d953e25ee86c80b06ebd67c93ee2aa9 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_043_Saura_Lightfoot_Leon.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8574c6d784c2ccbc7a59f22a8083c2d1a988f65cd8fde4b94d7833e749ab0a +size 211752 diff --git a/reference_images/4-entertainment/4-entertainment_044_Mari_Yamamoto.jpg b/reference_images/4-entertainment/4-entertainment_044_Mari_Yamamoto.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8a66c6f9eadd9030e984d720631ba60e4ca6f52 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_044_Mari_Yamamoto.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e58f36e528e01e51971729b4b395be878522e9bdac04c3779db7726cda00649 +size 673838 diff --git a/reference_images/4-entertainment/4-entertainment_045_Jordan_Adetunji.jpg b/reference_images/4-entertainment/4-entertainment_045_Jordan_Adetunji.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f29c01e824ecb0ea6dd75b859b66474e0201ed5 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_045_Jordan_Adetunji.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b4d461826e3dc8e19f82f1b1cb087c258364357a5166794a39cbfd051e4b3d +size 157099 diff --git a/reference_images/4-entertainment/4-entertainment_046_Leana_Deeb.jpg b/reference_images/4-entertainment/4-entertainment_046_Leana_Deeb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..519b0d20c37ce520e5bf3b7831ecb418d27380a6 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_046_Leana_Deeb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03751338c54a4f81045e5b1c4f82f5c025f684852c9fac43dc760e8c432561f +size 44662 diff --git a/reference_images/4-entertainment/4-entertainment_047_Sam_Eckholm.jpg b/reference_images/4-entertainment/4-entertainment_047_Sam_Eckholm.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd9677768051cdf5205c28336b2e923590f778c2 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_047_Sam_Eckholm.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46cba87ad90cb510a49fe712dffdd78b90e364e226c5cb8cf059f946b6f4e7f9 +size 175854 diff --git a/reference_images/4-entertainment/4-entertainment_048_Eloise_Dufka.jpg b/reference_images/4-entertainment/4-entertainment_048_Eloise_Dufka.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba4f5df8d98af0ee2d41677caf0ff63c46c30f83 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_048_Eloise_Dufka.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab082d1664756a7012668cbe28b74c218daf4ded4275c9546f2bc37c0ec7d0bb +size 44892 diff --git a/reference_images/4-entertainment/4-entertainment_049_Sylvester_Brewster.jpg b/reference_images/4-entertainment/4-entertainment_049_Sylvester_Brewster.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a855f2368a5a24e4ab7d3e226833103c63be8413 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_049_Sylvester_Brewster.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6dd7a44819ef2553524da60a3c89e07e1e19ef2fc3d2d72f290b0f4c042d745 +size 48708 diff --git a/reference_images/4-entertainment/4-entertainment_050_Heidi_Wong.jpg b/reference_images/4-entertainment/4-entertainment_050_Heidi_Wong.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4df8d7c0ba8406d950a2cd42630227fc214dca01 --- /dev/null +++ b/reference_images/4-entertainment/4-entertainment_050_Heidi_Wong.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3710bc8b24ed8dbabc8c00caf968f5f8f22a53129ba49912e63ab3c662c3c495 +size 205299 diff --git a/reference_images/6-ceremony/6-ceremony_024_Paul_Giamatti.jpg b/reference_images/6-ceremony/6-ceremony_024_Paul_Giamatti.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88c7aa5b6bcf32d5262a00b78c3f6220f267e05d --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_024_Paul_Giamatti.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8fa2ed84484088382e391b0336e098be685708d4869f480ae80b0a062a1c41a +size 950320 diff --git a/reference_images/6-ceremony/6-ceremony_029_Kieran_Culkin.jpg b/reference_images/6-ceremony/6-ceremony_029_Kieran_Culkin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f36f0262eef228a54827fc110fecd8d24bf6d977 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_029_Kieran_Culkin.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63704fb12409824eb8d515ca2d76f30d4e34122a91207853311601a355b59aca +size 1685442 diff --git a/reference_images/6-ceremony/6-ceremony_030_Sarah_Snook.jpg b/reference_images/6-ceremony/6-ceremony_030_Sarah_Snook.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55a81d0b84e9d2287d5cdb5ba1d924b5b78a18c7 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_030_Sarah_Snook.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb529796a39e4872bc290b3bffd6ea4c7290b1a344211543c41e0b196046548 +size 58622 diff --git a/reference_images/6-ceremony/6-ceremony_031_Hiroyuki_Sanada.jpg b/reference_images/6-ceremony/6-ceremony_031_Hiroyuki_Sanada.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c02adf2ed0661cc952ce78c6e97637b61230427 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_031_Hiroyuki_Sanada.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d4d19e625396f956af992db77cdca1753212e77f4eca136a776ea0cf74206f8 +size 28609 diff --git a/reference_images/6-ceremony/6-ceremony_032_Anna_Sawai.jpg b/reference_images/6-ceremony/6-ceremony_032_Anna_Sawai.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d4fa26bc317d2e67a6fd4be06a5e1615a874fd6 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_032_Anna_Sawai.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a24ef737a6e06b66ab63bd97eb34d55a008d5028b51bd55809832f1166c0af5 +size 101620 diff --git a/reference_images/6-ceremony/6-ceremony_033_Billy_Crudup.jpg b/reference_images/6-ceremony/6-ceremony_033_Billy_Crudup.jpg new file mode 100644 index 0000000000000000000000000000000000000000..021310b92265dff78820dc18e71176c1dbedb872 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_033_Billy_Crudup.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700149046683d6fe2ef8a92789360577cc0b3e1fde57faa28215b53c0ae9c56b +size 1890891 diff --git a/reference_images/6-ceremony/6-ceremony_034_Elizabeth_Debicki.jpg b/reference_images/6-ceremony/6-ceremony_034_Elizabeth_Debicki.jpg new file mode 100644 index 0000000000000000000000000000000000000000..211a26bcb9d267259bf36ca01f4f26ef9bf5482a --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_034_Elizabeth_Debicki.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f26cc36992bb8cc2e28debeda19b67d87618804d0191edcf8240795c2212fa6 +size 2449308 diff --git a/reference_images/6-ceremony/6-ceremony_035_Jeremy_Allen_White.jpg b/reference_images/6-ceremony/6-ceremony_035_Jeremy_Allen_White.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c3ce9305a9e43ca307e396127e10bc3bcccb07c --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_035_Jeremy_Allen_White.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11088172cd6a4efcf71657954aa17b4679e7905424d4591c368ee6dca671f3b5 +size 1827512 diff --git a/reference_images/6-ceremony/6-ceremony_036_Jean_Smart.jpg b/reference_images/6-ceremony/6-ceremony_036_Jean_Smart.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ab46c39c945f01c4ea2ff67ade0129dcd2401c4 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_036_Jean_Smart.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8da643473b8072b2248d0501e1ce7ac73cdafbbf2047a7022b19e8e13cbf9db +size 2510667 diff --git a/reference_images/6-ceremony/6-ceremony_037_Ebon_Moss_Bachrach.jpg b/reference_images/6-ceremony/6-ceremony_037_Ebon_Moss_Bachrach.jpg new file mode 100644 index 0000000000000000000000000000000000000000..094ace623d4c88311005b6daa0fd6b0ae4d9c7e3 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_037_Ebon_Moss_Bachrach.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4606a9588513871ca4fa674b350ae1da79f858c306ef4d4c4a52454dbfeed7 +size 2537441 diff --git a/reference_images/6-ceremony/6-ceremony_038_Liza_Colon_Zayas.jpg b/reference_images/6-ceremony/6-ceremony_038_Liza_Colon_Zayas.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7882489a055912194cc93212962371126e84a4df --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_038_Liza_Colon_Zayas.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b002fd313defcf900214c76a79e15c49cb38cc44a5e9c943e7ba6b772c47316 +size 106783 diff --git a/reference_images/6-ceremony/6-ceremony_039_Richard_Gadd.jpg b/reference_images/6-ceremony/6-ceremony_039_Richard_Gadd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43e0101ea4a584fbdba306c67cada749fc347640 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_039_Richard_Gadd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1939e1ceace2593a5efafd704e76faa25e17aed118141fa4b8a73b6c114d660 +size 160257 diff --git a/reference_images/6-ceremony/6-ceremony_040_Jodie_Foster.jpg b/reference_images/6-ceremony/6-ceremony_040_Jodie_Foster.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc745617ad90be92b9ddbb1b8258fbf929dcd841 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_040_Jodie_Foster.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220a224f2c57ad937d12851cb8d15e813c7682dc433ecfab0a119bf57b55caf2 +size 5881773 diff --git a/reference_images/6-ceremony/6-ceremony_041_Victoria_Monet.jpg b/reference_images/6-ceremony/6-ceremony_041_Victoria_Monet.jpg new file mode 100644 index 0000000000000000000000000000000000000000..878d25e6701cfc68e828645b50e011b7c847eea2 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_041_Victoria_Monet.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f34f8601b154faec3a06265fe54307a42bc0d8e47edfb4634759870264dfb6 +size 608814 diff --git a/reference_images/6-ceremony/6-ceremony_042_Miley_Cyrus.jpg b/reference_images/6-ceremony/6-ceremony_042_Miley_Cyrus.jpg new file mode 100644 index 0000000000000000000000000000000000000000..737772294330558795f14e287d31bbe9a6ccbc85 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_042_Miley_Cyrus.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4d57b3a21c5f74a080b77e4d112224bb4a821bb7a005dfc280efbf52c52520 +size 999904 diff --git a/reference_images/6-ceremony/6-ceremony_043_Coco_Jones.jpg b/reference_images/6-ceremony/6-ceremony_043_Coco_Jones.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e20ad858bc881927d8abede87ef8cc47be1d02e0 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_043_Coco_Jones.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2341159cded2b7b178456c1a3b81e0a3a8d0bcdd6e676747600a5943ec29c61 +size 3176965 diff --git a/reference_images/6-ceremony/6-ceremony_044_Chris_Stapleton.jpg b/reference_images/6-ceremony/6-ceremony_044_Chris_Stapleton.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a552120a0877d5474ca33cad701f66a250e7779 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_044_Chris_Stapleton.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2f85895e64f65616ab00b718a3cf93251e78c9c13956fed16ec132897d9b3a +size 1133418 diff --git a/reference_images/6-ceremony/6-ceremony_045_Tyla.jpg b/reference_images/6-ceremony/6-ceremony_045_Tyla.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2771e03d348a2ee9b302bf2cb8b0f66ccbf33dc --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_045_Tyla.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52ccf3b2214af026b2c4813c3aa708528afc1bd6740ea28e9775d65fc335f87 +size 263776 diff --git a/reference_images/6-ceremony/6-ceremony_050_Pedro_Pascal.jpg b/reference_images/6-ceremony/6-ceremony_050_Pedro_Pascal.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d500f42b9c36c690f9c1cb6835fec2386725ff65 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_050_Pedro_Pascal.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701919717d463fbdb040b1030cd28fceab27cc8c8169805c5437198f28526453 +size 3949857 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg b/reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cb3dc8a5ede8b12e4325be2cadf82200c3811ca --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Christopher_Nolan.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856199e997128aa08336868621be86f4eed9644664729f41804f71d96e573c74 +size 191844 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg b/reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..779fc40fe9d271d0a80b48806133e91871b1e3f1 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Cillian_Murphy.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcb8f99a822552fff32437550151ea0d95c0d6621efc33d80a3ef8de312f6ec +size 301187 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Cord_Jefferson.jpg b/reference_images/6-ceremony/6-ceremony_shared_Cord_Jefferson.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8468e9fd318627abc188214b430a507e48ff3600 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Cord_Jefferson.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604fa1b387b5f56c0fcb80a56b097c0d19674cb5e5378e7b2604d6859a47a3bc +size 212502 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg b/reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b34396b222c92f51078c55372191a1616210730c --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Da_Vine_Joy_Randolph.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1059909943ca61366444b5d169374a145de1df3c2ae595a64e97669138ca2522 +size 391165 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg b/reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71e986fb5ba781d7254dc88ed82134a69770f8c8 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Emma_Stone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ab0ea2b1acfe5ea9b3b0326201bfdfd52f759c753295bfac11001a9e35f7af +size 6345035 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Holly_Waddington.jpg b/reference_images/6-ceremony/6-ceremony_shared_Holly_Waddington.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1f0a54b6eece973aaff618d877991520488c4e3 --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Holly_Waddington.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd8194fab4a9147c47e0ffc366245bb10de83114eb4d75bd4e57a305624ca72 +size 183180 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Hoyte_van_Hoytema.jpg b/reference_images/6-ceremony/6-ceremony_shared_Hoyte_van_Hoytema.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c8891873532cb99e90639158761940272ac7eca --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Hoyte_van_Hoytema.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad5dd6447e3f35dc3982f3ecf3d3f52e14d433932bdb0af193f4d8cd5cb5904 +size 131232 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Jennifer_Lame.jpg b/reference_images/6-ceremony/6-ceremony_shared_Jennifer_Lame.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04c60b1e7cb7f05589f3e7145d3f24fc3569c91c --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Jennifer_Lame.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0a80e9d876cca47a35c852e4fa0a5e4f993598bebdc34fbd2c88ef2ec90277 +size 114424 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Lily_Gladstone.jpg b/reference_images/6-ceremony/6-ceremony_shared_Lily_Gladstone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd79fc2e6ad359adf1108995e1b3c90e694d462b --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Lily_Gladstone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9beb486a14b58301ea04097037ad3c3c89945e9daa37fce1cdad427be1050dfa +size 31126 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg b/reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg new file mode 100644 index 0000000000000000000000000000000000000000..657a2451fe348b1451fd3de1847d84a8fb38315c --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Ludwig_Goransson.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74fdc36c2bc6db582d0ba39b168c553bf5fe2518ff12a7be05cf4e423974a3f3 +size 125233 diff --git a/reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg b/reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf188555ec3698610233499c9b36c1cee00bf05c --- /dev/null +++ b/reference_images/6-ceremony/6-ceremony_shared_Robert_Downey_Jr.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3aa0a74afedc26b5debc60367a50323917fcdcddca053ce40f78828e11df783 +size 2693096 diff --git a/upload_to_hf.py b/upload_to_hf.py new file mode 100644 index 0000000000000000000000000000000000000000..9257d4289c72ed8b0c1e062a8522678e6c1a9f87 --- /dev/null +++ b/upload_to_hf.py @@ -0,0 +1,138 @@ +from __future__ import annotations + +import argparse +import hashlib +import json +import os +from collections import Counter, defaultdict +from pathlib import Path + + +IMAGE_SUFFIXES = {".jpg", ".jpeg", ".png", ".webp"} + + +def validate_dataset(root: Path) -> None: + data_file = root / "data" / "gen_arena.jsonl" + reference_root = root / "reference_images" + if not data_file.exists(): + raise FileNotFoundError(f"Missing metadata file: {data_file}") + if not reference_root.exists(): + raise FileNotFoundError(f"Missing reference image root: {reference_root}") + if not (root / "README.md").exists(): + raise FileNotFoundError("Missing README.md dataset card") + if not (root / ".gitattributes").exists(): + raise FileNotFoundError("Missing .gitattributes for Git LFS") + + rows = [] + errors = [] + for line_no, line in enumerate(data_file.read_text(encoding="utf-8").splitlines(), 1): + if not line.strip(): + continue + try: + row = json.loads(line) + except json.JSONDecodeError as exc: + errors.append(f"{data_file}:{line_no}: {exc}") + continue + rows.append(row) + + ref_paths = [ref.get("path") for ref in row.get("reference_images", [])] + if ref_paths != row.get("reference_image_paths", []): + errors.append(f"{row.get('id')}: reference_images paths do not match reference_image_paths") + + for image_path in row.get("reference_image_paths", []): + if not isinstance(image_path, str) or not image_path.startswith("reference_images/"): + errors.append(f"{row.get('id')}: image path is not under reference_images/: {image_path}") + continue + target = root / image_path + if not target.exists(): + errors.append(f"{row.get('id')}: missing image {image_path}") + + ids = Counter(row.get("id") for row in rows) + duplicate_ids = [sample_id for sample_id, count in ids.items() if count > 1] + if duplicate_ids: + errors.append(f"Duplicate sample ids: {duplicate_ids[:10]}") + + image_files = sorted( + str(path.relative_to(root)).replace("\\", "/") + for path in reference_root.glob("*/*") + if path.is_file() and path.suffix.lower() in IMAGE_SUFFIXES + ) + referenced = [] + for row in rows: + referenced.extend(row.get("reference_image_paths", [])) + + missing = sorted(set(referenced) - set(image_files)) + unreferenced = sorted(set(image_files) - set(referenced)) + if missing: + errors.append(f"Missing referenced image files: {missing[:10]}") + if unreferenced: + errors.append(f"Unreferenced image files: {unreferenced[:10]}") + + by_hash: dict[str, list[str]] = defaultdict(list) + for rel_path in image_files: + by_hash[hashlib.sha256((root / rel_path).read_bytes()).hexdigest()].append(rel_path) + duplicate_hash_groups = [paths for paths in by_hash.values() if len(paths) > 1] + if duplicate_hash_groups: + errors.append(f"Duplicate image hash groups remain: {duplicate_hash_groups[:3]}") + + if errors: + raise RuntimeError("Dataset validation failed:\n" + "\n".join(errors)) + + category_counts = Counter(row.get("category") for row in rows) + print("Validation passed") + print(f"Rows: {len(rows)}") + print(f"Categories: {dict(sorted(category_counts.items()))}") + print(f"Image files: {len(image_files)}") + print(f"Referenced image slots: {len(referenced)}") + print(f"Unique referenced images: {len(set(referenced))}") + + +def main() -> None: + parser = argparse.ArgumentParser(description="Validate and upload Gen-Arena to Hugging Face Hub.") + parser.add_argument("--repo-id", required=True, help="Dataset repo id, e.g. username/Gen-Arena") + parser.add_argument("--root", default=".", help="Dataset root directory") + parser.add_argument("--private", action="store_true", help="Create or update the dataset as private") + parser.add_argument("--dry-run", action="store_true", help="Only validate files; do not upload") + parser.add_argument( + "--token", + default=None, + help="Optional Hugging Face token. Prefer setting HF_TOKEN instead of passing it on the command line.", + ) + args = parser.parse_args() + + root = Path(args.root).resolve() + validate_dataset(root) + if args.dry_run: + print("Dry run complete; no upload performed.") + return + + token = args.token or os.environ.get("HF_TOKEN") or os.environ.get("HUGGINGFACE_HUB_TOKEN") + + from huggingface_hub import HfApi, create_repo, upload_folder + + try: + whoami = HfApi(token=token).whoami() + except Exception as exc: + raise RuntimeError( + "Hugging Face authentication failed. Run `hf auth login` with a write token, " + "or set `$env:HF_TOKEN='hf_...'` in PowerShell before running this script. " + "Do not paste your token into chat." + ) from exc + + username = whoami.get("name") or whoami.get("fullname") or "" + print(f"Authenticated as: {username}") + + create_repo(args.repo_id, repo_type="dataset", private=args.private, exist_ok=True, token=token) + upload_folder( + repo_id=args.repo_id, + repo_type="dataset", + folder_path=str(root), + path_in_repo=".", + commit_message="Upload Gen-Arena dataset", + token=token, + ) + print(f"Uploaded Gen-Arena to https://huggingface.co/datasets/{args.repo_id}") + + +if __name__ == "__main__": + main()