diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..2b663acfa6ac7a03037437aa569c418da9090c4a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,61 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow 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 +*.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 +BSA_datasets/Spatial[[:space:]]Orientation_MRMT/MRMT.psd filter=lfs diff=lfs merge=lfs -text +BSA_datasets/Spatial[[:space:]]Relation_NCIT/NCIT_5.psd filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..5d3267a17c076877f0d720f17169f5ad4912712b --- /dev/null +++ b/README.md @@ -0,0 +1,117 @@ +--- +license: mit +task_categories: +- visual-question-answering +language: +- en +tags: +- video +- text +- embodied +- spatial +- multimodal +size_categories: +- n<1K +--- + +# [ACL'25 Main] Defining and Evaluating Visual Language Models’ Basic Spatial Abilities: A Perspective from Psychometrics +[![Published Paper](https://img.shields.io/badge/Published-ACL_Paper-red)](https://aclanthology.org/2025.acl-long.567/) +[![Arxiv](https://img.shields.io/badge/arXiv-2502.11859-darkred?logo=arxiv)](https://arxiv.org/abs/2502.11859) +[![Code](https://img.shields.io/badge/Github-Code-blue?logo=github)](https://github.com/EmbodiedCity/BasicSpatialAbility.code) +[![Dataset](https://img.shields.io/badge/Hugging_Face-Dataset-yellow?logo=huggingface)](https://huggingface.co/datasets/EmbodiedCity/BasicSpatialAbility) + +> [!IMPORTANT] +> **You can find the sample testing code on GitHub!** + +This dataset is a benchmark designed for evaluating Multimodal Large Language Models' Basic Spatial Abilities based on authentic Psychometric theories. It is structured specifically to support both **Zero-shot** and **Few-shot** evaluation protocols. + +| Split Name | Role | Description | +| :--- | :--- | :--- | +| **`test`** | **Query Set** | Contains the actual benchmark questions (images & queries) to be evaluated.
⚠️ **Evaluation Only.** Do not use for training or as few-shot examples. | +| **`validation`** | **Support Set** | Contains high-quality examples intended to be used as **Few-shot Prompts (In-Context Learning)**.
These samples should be prepended to the test queries to demonstrate the task to the model. | + +# ⚙️ Usage & Evaluation Protocol +You can load the dataset using the Hugging Face `datasets` library. + +### 1. Zero-Shot Evaluation +**Logic:** Directly evaluate the model on the `test` split without any prior examples. + +```python +from datasets import load_dataset + +# Load the evaluation queries +test_dataset = load_dataset("EmbodiedCity/BasicSpatialAbility", split="test") + +for sample in test_dataset: + image = sample['image'] + question = sample['question'] + # Model inference... +``` + +### 2. Few-Shot Evaluation +**Logic:** Use examples from the validation split as the context (demonstrations), followed by the query from the test split. +1. Load the validation split. +2. Format them into the prompt history. +3. Append the target question from the test split. + +```python +from datasets import load_dataset + +# 1. Load the support set (demonstrations) +support_set = load_dataset("EmbodiedCity/BasicSpatialAbility", split="validation") + +# 2. Load the query set (evaluation) +test_set = load_dataset("EmbodiedCity/BasicSpatialAbility", split="test") + +# Pseudo-code for prompt construction +prompt_context = [] +for ex in support_set: + prompt_context.append(f"User: {ex['question']}\nAssistant: {ex['answer']}") + +# 3. Evaluate on Test Set +for sample in test_set: + # Combine context + current test question + final_prompt = prompt_context + [f"User: {sample['question']}"] + + # Model inference... +``` + +# 🔬 Underlying Theory +The Theory of Multiple Intelligences underscores the hierarchical nature of cognitive capabilities. To advance Spatial Artificial Intelligence, we pioneer a psychometric framework defining five Basic Spatial Abilities (BSAs) in Visual Language Models (VLMs): Spatial Perception, Spatial Relation, Spatial Orientation, Mental Rotation, and Spatial Visualization. Benchmarking 13 mainstream VLMs through nine validated psychometric experiments reveals significant gaps versus humans, with three key findings: 1) VLMs mirror human hierarchies (strongest in 2D orientation, weakest in 3D rotation) with independent BSAs; 2) Many smaller models surpass larger counterparts, with Qwen leading and InternVL2 lagging; 3) Interventions like CoT and few-shot training show limits from architectural constraints, while ToT demonstrates the most effective enhancement. Identified barriers include weak geometry encoding and missing dynamic simulation. By linking Psychometrics to VLMs, we provide a comprehensive BSA evaluation benchmark, a methodological perspective for embodied AI development, and a cognitive science-informed roadmap for achieving human-like spatial intelligence. +| Type | Definition | Tests | +|:----------------------:|:---------------------------------------------------------------------------------------------------------------------:|:-----------------------:| +| Spatial Perception | The ability to perceive horizontal and vertical orientations without interference from miscellaneous information. | SVT | +| Spatial Relation | The ability of recognizing relationships between parts of an entity. | NCIT DAT:SR R-Cube-SR | +| Spatial Orientation | The ability to navigate or enter a given spatial state. | MRMT | +| Mental Rotation | The ability to mentally rotate 3D objects. | MRT PSVT:R | +| Spatial Visualization | The ability to mentally manipulate and transform 2D and 3D objects. | SBST R-Cube-Vis |**** + +

+ +

+ +

+ The Framework of Basic Spatial Abilities (Image sources are cited in the paper) +

+ +# Citation +If you use this project in your research, please cite the following paper: +```bibtex +@inproceedings{xu-etal-2025-defining, + title = "Defining and Evaluating Visual Language Models' Basic Spatial Abilities: A Perspective from Psychometrics", + author = "Xu, Wenrui and + Lyu, Dalin and + Wang, Weihang and + Feng, Jie and + Gao, Chen and + Li, Yong", + booktitle = "Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)", + month = jul, + year = "2025", + address = "Vienna, Austria", + publisher = "Association for Computational Linguistics", + url = "https://aclanthology.org/2025.acl-long.567/", + doi = "10.18653/v1/2025.acl-long.567", + pages = "11571--11590", + ISBN = "979-8-89176-251-0" +} \ No newline at end of file diff --git a/test/DATSR_1.png b/test/DATSR_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6b1bf19cc3eff7017af6bfac763292ec200e1a3f --- /dev/null +++ b/test/DATSR_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c56b5d10c48f9f5b02ffa54d72afde307aab7c818e2dd3e06a4a089b7ec7e01 +size 99463 diff --git a/test/DATSR_10.png b/test/DATSR_10.png new file mode 100644 index 0000000000000000000000000000000000000000..ef49ed860a8404de1b5633f534de457a6c6f5c13 --- /dev/null +++ b/test/DATSR_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3676499aad1820466c0a975a70a669f89ee4b931693b8a203bc7c2f438b757e +size 75050 diff --git a/test/DATSR_11.png b/test/DATSR_11.png new file mode 100644 index 0000000000000000000000000000000000000000..cec0ae26826e93457bffa9b9f4aa9d50163b92dd --- /dev/null +++ b/test/DATSR_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63db538177b001c7046e34159a44e610eecacb38d7df4acdd1319be896349291 +size 106031 diff --git a/test/DATSR_12.png b/test/DATSR_12.png new file mode 100644 index 0000000000000000000000000000000000000000..c4f3b0160e7539e0fcc8629d6611b38537718d66 --- /dev/null +++ b/test/DATSR_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00aff98b10cc33ad11e518652f512be0784f48838a25504f9097fd067944de06 +size 108621 diff --git a/test/DATSR_13.png b/test/DATSR_13.png new file mode 100644 index 0000000000000000000000000000000000000000..8a3f3ca7a415f221e25ebf17344c84413c0f9a7b --- /dev/null +++ b/test/DATSR_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9768d8af52aca075d6df128d0094ebe6adfa9a005be380ea6cbe2f1356bf10 +size 77735 diff --git a/test/DATSR_14.png b/test/DATSR_14.png new file mode 100644 index 0000000000000000000000000000000000000000..80e5e373c12e32d676515c470eb215409a64788e --- /dev/null +++ b/test/DATSR_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7a4c5a32ebbcef71a073dddc75a4ab58e6af44f2c098cb45bac0386dc469f7 +size 103495 diff --git a/test/DATSR_15.png b/test/DATSR_15.png new file mode 100644 index 0000000000000000000000000000000000000000..7ecb35c099b7c01b4f69460ed380220f4e6c2942 --- /dev/null +++ b/test/DATSR_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e968572212809976278b096e31eb7525f13b7e64fa285bd5ab53c834689bdf3f +size 92115 diff --git a/test/DATSR_16.png b/test/DATSR_16.png new file mode 100644 index 0000000000000000000000000000000000000000..826918e8bf0b0e4fa452079d7f2703a968c7a0bf --- /dev/null +++ b/test/DATSR_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:320ef4c034ce8cd40f6f060e3eae8ec80aa2d3bca8ae4ae23d6c163ba982b626 +size 100207 diff --git a/test/DATSR_17.png b/test/DATSR_17.png new file mode 100644 index 0000000000000000000000000000000000000000..2973f5fa8554697f3b8cd6df0e4d8f095f27f4f5 --- /dev/null +++ b/test/DATSR_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c119d58c2bceea057ca11c517540b5197deaf4a41f87c0e232732a8ac27ca8f +size 119554 diff --git a/test/DATSR_18.png b/test/DATSR_18.png new file mode 100644 index 0000000000000000000000000000000000000000..411c5ebc698eebf5bd10f1942f94a8559559f6dd --- /dev/null +++ b/test/DATSR_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd20ddb8758adf47988c0074a2906308b67d49cc1d06bbdc1cfe047f000000a3 +size 73731 diff --git a/test/DATSR_19.png b/test/DATSR_19.png new file mode 100644 index 0000000000000000000000000000000000000000..1acc8b0516d3ace3730d5c960513ae04480281b3 --- /dev/null +++ b/test/DATSR_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa354163a0d7b4f17c97b65d5dada981b1b3ed26a882c0dbcb5243357045441 +size 148183 diff --git a/test/DATSR_2.png b/test/DATSR_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9492f9c30cf3079f17a24111f0a7a1ce7eaaa11c --- /dev/null +++ b/test/DATSR_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02bc46df9fc21d551822b4d04ecb28fd6b2fdaf0df06cf2910a1cf375810257f +size 70875 diff --git a/test/DATSR_20.png b/test/DATSR_20.png new file mode 100644 index 0000000000000000000000000000000000000000..2a26cd9634a0fc8221e0824ae7b6e7944dfe8511 --- /dev/null +++ b/test/DATSR_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b146a2469121b120275d2807edbe6684eeefa3ab1c127402c619bf62e80a22 +size 94338 diff --git a/test/DATSR_21.png b/test/DATSR_21.png new file mode 100644 index 0000000000000000000000000000000000000000..a8abfa6725daf27e01e75038665aeb03021a1754 --- /dev/null +++ b/test/DATSR_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d077523b597270acacbb25519edfd6cb87263f8545ec7c283665fb21d7cf22f9 +size 109570 diff --git a/test/DATSR_22.png b/test/DATSR_22.png new file mode 100644 index 0000000000000000000000000000000000000000..9b1cdead6c7ba9ab5a17f41a38852830ecc07363 --- /dev/null +++ b/test/DATSR_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac62f035a8dcfb5c3ea6b144035628b598138d1b4b2b9f6ea6a780c16bf37b8 +size 72420 diff --git a/test/DATSR_23.png b/test/DATSR_23.png new file mode 100644 index 0000000000000000000000000000000000000000..5af27afc78e743b4459fdc0ebc1a275a9092e558 --- /dev/null +++ b/test/DATSR_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0e28cf22b72b6e6591d5975f863619289e5362a7fffed0e105f6e79b975ed21 +size 129606 diff --git a/test/DATSR_24.png b/test/DATSR_24.png new file mode 100644 index 0000000000000000000000000000000000000000..db9be0170adad7230c94458b61e9dca704777e0e --- /dev/null +++ b/test/DATSR_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907e84b5de65e7bdbe92c2412ace48a85994d4d956cca4ac3a295306fec7bf12 +size 87058 diff --git a/test/DATSR_25.png b/test/DATSR_25.png new file mode 100644 index 0000000000000000000000000000000000000000..024445f8c43bc797d4f445e59c1d67a2dec4b52f --- /dev/null +++ b/test/DATSR_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15878881757da5212defd6b5df2053019e23abcb17bea4d29ecdd6e6d89c8e5 +size 98577 diff --git a/test/DATSR_26.png b/test/DATSR_26.png new file mode 100644 index 0000000000000000000000000000000000000000..43ede76ec265de42f10edc35ce0ae2e75163b829 --- /dev/null +++ b/test/DATSR_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d19d2f0fdc09b456e6fbfd3e59d8205ce958eb3c18b65a68d8256e944e12634 +size 75176 diff --git a/test/DATSR_27.png b/test/DATSR_27.png new file mode 100644 index 0000000000000000000000000000000000000000..0bb0d0df00df1e18d77337c0726dbdbb14b1ef6d --- /dev/null +++ b/test/DATSR_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c3cff824e7e84f58fabd8254ea25dec13c83643542ca4ecd4ab0240c9f76dc +size 110009 diff --git a/test/DATSR_28.png b/test/DATSR_28.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d4474c3b9d7ebd086a4a8a2b0d4697a7d8ea74 --- /dev/null +++ b/test/DATSR_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df98dd233a790ac4d5967fffc2ec8973dc31d643d5611d02bf39d1b6f364a96a +size 76832 diff --git a/test/DATSR_29.png b/test/DATSR_29.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5829a0fee056ef714f05892a9c333a80df29ad --- /dev/null +++ b/test/DATSR_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba057e93ec213938ad18bd3b9839505d8519bfbd3c0321b051bb8275f7aadbcf +size 75740 diff --git a/test/DATSR_3.png b/test/DATSR_3.png new file mode 100644 index 0000000000000000000000000000000000000000..13dd4b10a0645a49243f181b4c9f913215b6ed96 --- /dev/null +++ b/test/DATSR_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abae137613aca267d9eaa2f85350646eb363c16a39f07eb8434e93f60c7d908f +size 105321 diff --git a/test/DATSR_30.png b/test/DATSR_30.png new file mode 100644 index 0000000000000000000000000000000000000000..ac01a253e3133951f82e7be10054e2bbb3910739 --- /dev/null +++ b/test/DATSR_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9f365c4341faba6d6dc2fbeedd9f818f84458be637d6bad4031cb5b3cf5570 +size 118326 diff --git a/test/DATSR_31.png b/test/DATSR_31.png new file mode 100644 index 0000000000000000000000000000000000000000..e796eb3c713b4fd3c1c004d03a4402334c8b01d1 --- /dev/null +++ b/test/DATSR_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e525517f012924f1aef2f0453ab1b2c06c5347ca5eb2f45d74d8ab3c7bc43b +size 75084 diff --git a/test/DATSR_32.png b/test/DATSR_32.png new file mode 100644 index 0000000000000000000000000000000000000000..25a79f7db2e00c65c381dd6a15c54e9c403233ad --- /dev/null +++ b/test/DATSR_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2ffd1c5aa31cf5e642566463b9eb76e450574e7898a17cd4431034abda17c5 +size 110414 diff --git a/test/DATSR_33.png b/test/DATSR_33.png new file mode 100644 index 0000000000000000000000000000000000000000..e06a634bb2429583b72cfb6558bf34e2ecb793b3 --- /dev/null +++ b/test/DATSR_33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6b9e697e00a240cc044c69a4abf17b76c71c9b73bd44cd7581eb868384ef8d +size 141124 diff --git a/test/DATSR_34.png b/test/DATSR_34.png new file mode 100644 index 0000000000000000000000000000000000000000..540e0a1b6f333cd0b6760525af10cc5ae87093a2 --- /dev/null +++ b/test/DATSR_34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52cae40477d02ee9f7b5060a82aed41cfe7f844acc15c53aa5058068282f4e2a +size 125753 diff --git a/test/DATSR_35.png b/test/DATSR_35.png new file mode 100644 index 0000000000000000000000000000000000000000..a7fcbe343b687953d8d0c4c4501d22f5e3dacb25 --- /dev/null +++ b/test/DATSR_35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c425c65e7e5e63826f1439c101f206b02900c260c81e453b4d8e903ada5b6ca +size 104639 diff --git a/test/DATSR_36.png b/test/DATSR_36.png new file mode 100644 index 0000000000000000000000000000000000000000..209fc815055ca58af8d93f11eefa555957aece8c --- /dev/null +++ b/test/DATSR_36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de59ea25b6f697f6914520adc3bafd0685a057b596b5eb5df360379b0bc685a3 +size 103040 diff --git a/test/DATSR_37.png b/test/DATSR_37.png new file mode 100644 index 0000000000000000000000000000000000000000..6eb74866bcf70b6001c8097ef2d7554d3f69154c --- /dev/null +++ b/test/DATSR_37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f481cd090ce980c3cc24f47bf708251c0c06db7e0b163cc84cf7d1f2542ee39a +size 91135 diff --git a/test/DATSR_38.png b/test/DATSR_38.png new file mode 100644 index 0000000000000000000000000000000000000000..0ff5754ef6757eee85a9835d8e5d71e5e37abd34 --- /dev/null +++ b/test/DATSR_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8774e285650b056747dd214948c65603cd25da25a8c8aaccf7b83eced01b73a +size 118064 diff --git a/test/DATSR_39.png b/test/DATSR_39.png new file mode 100644 index 0000000000000000000000000000000000000000..09cf1a8597c8ea2ab1f7fba09c1439ee52e70419 --- /dev/null +++ b/test/DATSR_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83cec626ca0830bec7df9f791b36c87e0e610c6a17da7db029221591f1c4e2a8 +size 141153 diff --git a/test/DATSR_4.png b/test/DATSR_4.png new file mode 100644 index 0000000000000000000000000000000000000000..94f04bb93686ec216589a8c97b8aa5321ea1c652 --- /dev/null +++ b/test/DATSR_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572e1af0e10801e635e045c0bf2fb9a1d84cc7c5c385a5bf65abf06754d13709 +size 81692 diff --git a/test/DATSR_40.png b/test/DATSR_40.png new file mode 100644 index 0000000000000000000000000000000000000000..8f1768399a1c89023f56a8c7203c1ae75f57f1d2 --- /dev/null +++ b/test/DATSR_40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3f5e95bf2016ed3531c66780abd6996cc7fe3fa122925a2fe3bdd5fe89d4d0 +size 86604 diff --git a/test/DATSR_5.png b/test/DATSR_5.png new file mode 100644 index 0000000000000000000000000000000000000000..84c11c1c96962dc0e0ed26e50082ecc6441fae44 --- /dev/null +++ b/test/DATSR_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92938d0733ee43316088842e9df1f2893ec6f9eb63747eaf547fe0fa250343df +size 93439 diff --git a/test/DATSR_6.png b/test/DATSR_6.png new file mode 100644 index 0000000000000000000000000000000000000000..6cbe55d13eba4b4e5aa4dc02c0f4163c08a9e83d --- /dev/null +++ b/test/DATSR_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc69ee8e4876f2a9f148cb903521035e8ae06999e63eb49b0830cfd51ade45d9 +size 65572 diff --git a/test/DATSR_7.png b/test/DATSR_7.png new file mode 100644 index 0000000000000000000000000000000000000000..5db5f87751106dd152ea81b2c68625f331705196 --- /dev/null +++ b/test/DATSR_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:792d8326877810847883dec9eb886412f4b37a19a7a1374aa2591f2dac736f3b +size 110979 diff --git a/test/DATSR_8.png b/test/DATSR_8.png new file mode 100644 index 0000000000000000000000000000000000000000..44e7e051146d4c08e7d2785cd6017c514c3f73bd --- /dev/null +++ b/test/DATSR_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c857eed74b939bd189c75861f5b3c628412e026e8661ab90a185efa9f5e26bf6 +size 93696 diff --git a/test/DATSR_9.png b/test/DATSR_9.png new file mode 100644 index 0000000000000000000000000000000000000000..4a9105a64979c80b2ef8f339875e931975488d2f --- /dev/null +++ b/test/DATSR_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9261e8643010904a494cde6f90a13bc84cdf99ce43febfd994b3e86fd7bb7d89 +size 145412 diff --git a/test/LappanTest_1.png b/test/LappanTest_1.png new file mode 100644 index 0000000000000000000000000000000000000000..0171349ea747abdf133c82537f59cf24a6449c99 --- /dev/null +++ b/test/LappanTest_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23998c213c6ed3436c12bf0869078681d4595b90220ee8fc0427f8fe588dee31 +size 273908 diff --git a/test/LappanTest_10.png b/test/LappanTest_10.png new file mode 100644 index 0000000000000000000000000000000000000000..a36c42413f9f65aee37fd1681cac878d884d6bb8 --- /dev/null +++ b/test/LappanTest_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0981c458c50ac40b854a3d30b86d287108f57c49e608d804b411d682680eda +size 145165 diff --git a/test/LappanTest_11.png b/test/LappanTest_11.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f7391cbabbc5a38f2c3fc7f2579a1c972d4f89 --- /dev/null +++ b/test/LappanTest_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ced9f32377cc7e6add2764fa0efb223dd0d412ebfa5e529df2ebcae997cb34 +size 110140 diff --git a/test/LappanTest_12.png b/test/LappanTest_12.png new file mode 100644 index 0000000000000000000000000000000000000000..62d2b3ebeaaffb1cf420daf34e69376451fcf231 --- /dev/null +++ b/test/LappanTest_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf8a6ead5a1ca896972180ef51c7efe77f661e9e851476760e8cd5d082d69e7 +size 120734 diff --git a/test/LappanTest_13.png b/test/LappanTest_13.png new file mode 100644 index 0000000000000000000000000000000000000000..1f8a69ac91e80a84be1038dc7feb1a4c3bff79ac --- /dev/null +++ b/test/LappanTest_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b6979f6f66a6d95dc3f31d3c404be83565bdca3e3415475f6feb4d6a537a41 +size 94113 diff --git a/test/LappanTest_14.png b/test/LappanTest_14.png new file mode 100644 index 0000000000000000000000000000000000000000..763bd2e4d31006fbee3575ecbd9541505823467d --- /dev/null +++ b/test/LappanTest_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b422f5a388e6fd966ee9e69387d6543aafab2a41bfe26439b3d05a91ecc3be +size 92719 diff --git a/test/LappanTest_15.png b/test/LappanTest_15.png new file mode 100644 index 0000000000000000000000000000000000000000..69d0d4d5fc47e50062452ec62efb81b544806a12 --- /dev/null +++ b/test/LappanTest_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fe1e28b85d97e29356eb9f7b5e1da6eec609df7cb967e70c1f508a8e4733dd0 +size 73945 diff --git a/test/LappanTest_16.png b/test/LappanTest_16.png new file mode 100644 index 0000000000000000000000000000000000000000..aa315f90e4ebae99c7521d8d7f842f848644a847 --- /dev/null +++ b/test/LappanTest_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6711663ffbe6aaaf176eb30d646925f7399df75675be7ffa0021de760d91497 +size 84305 diff --git a/test/LappanTest_17.png b/test/LappanTest_17.png new file mode 100644 index 0000000000000000000000000000000000000000..0819b58859a2d75597450e6ee23daac23431db39 --- /dev/null +++ b/test/LappanTest_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639e0b49a23a8a5d08a94d93d4d8c3c8ffbda5251d3a94e39fcdae13fc42cb55 +size 108556 diff --git a/test/LappanTest_18.png b/test/LappanTest_18.png new file mode 100644 index 0000000000000000000000000000000000000000..954602ac9ae4bdc0890e8e791d07d31ea1f0fa3a --- /dev/null +++ b/test/LappanTest_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05e8d62e7b27d1ab68526c53bebb5e85e88674aaa41a9a7a252a59ce9cbd9dd +size 82984 diff --git a/test/LappanTest_19.png b/test/LappanTest_19.png new file mode 100644 index 0000000000000000000000000000000000000000..9242b34ef3a9e9ce8136ead75f2685648598af28 --- /dev/null +++ b/test/LappanTest_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071f766c71aaae605f8e80522f6eeab85ce89815b8d1561db385c4b2f486deb0 +size 79525 diff --git a/test/LappanTest_2.png b/test/LappanTest_2.png new file mode 100644 index 0000000000000000000000000000000000000000..20ec2d421fe23798889a1b8f778471a3abe56156 --- /dev/null +++ b/test/LappanTest_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42717695424389094c4f8a5066ba0146d4d1ee01fc4b3164c28bf3d9abbec6f +size 254553 diff --git a/test/LappanTest_20.png b/test/LappanTest_20.png new file mode 100644 index 0000000000000000000000000000000000000000..c71a9fb54efcd9b01ce92914767578a8af0d1986 --- /dev/null +++ b/test/LappanTest_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9754e17152b32ebc1c6fe7b10d0d4abbce396f23c85ff63d73d5a19182e1f50 +size 176437 diff --git a/test/LappanTest_21.png b/test/LappanTest_21.png new file mode 100644 index 0000000000000000000000000000000000000000..134cd3ff82b826ae223c41e3a204a9b89aae1d1d --- /dev/null +++ b/test/LappanTest_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d4058437f4e1d5c7afc9be6ae0da28b5fdcb82e4b7966f27ee4edb4227ee86 +size 104446 diff --git a/test/LappanTest_22.png b/test/LappanTest_22.png new file mode 100644 index 0000000000000000000000000000000000000000..0a751a842a79a518a17f9a1209c807366c81e531 --- /dev/null +++ b/test/LappanTest_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74bea56eee0cf9699d934860b01fc85c41a4999057fe113999710e1a17d00661 +size 143464 diff --git a/test/LappanTest_23.png b/test/LappanTest_23.png new file mode 100644 index 0000000000000000000000000000000000000000..3c57e406ed9a0f746da0032fec805cbe088044b8 --- /dev/null +++ b/test/LappanTest_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba716626ea7edc4304a99cb6ec30fcb332df2834158c8a3c049e60ce3f93c14d +size 185216 diff --git a/test/LappanTest_24.png b/test/LappanTest_24.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb5e1aaec856ad518990fc9e0e492a9cd198c19 --- /dev/null +++ b/test/LappanTest_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f120ab654c273a6dcd058e9b3523eebb6cdd4e63bc085d17362459028438a63 +size 233813 diff --git a/test/LappanTest_25.png b/test/LappanTest_25.png new file mode 100644 index 0000000000000000000000000000000000000000..487deafe868ba5b8b269d5cebf10e760afa5d2d7 --- /dev/null +++ b/test/LappanTest_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79720d7b4b9e592af01bd8bfc0b66e33e49dad7dd1fcc2842e1000e977cf1c51 +size 210437 diff --git a/test/LappanTest_26.png b/test/LappanTest_26.png new file mode 100644 index 0000000000000000000000000000000000000000..13cb0233537914b2d6571c687162202e277c7679 --- /dev/null +++ b/test/LappanTest_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de909e241cfc4b6f1ae7ae1ebf6a223bf00f0b00c0695eb479951d74bee9a2b4 +size 198369 diff --git a/test/LappanTest_27.png b/test/LappanTest_27.png new file mode 100644 index 0000000000000000000000000000000000000000..8912ee94468b73f46593c9f15c8760289828725e --- /dev/null +++ b/test/LappanTest_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d980753e8f3e1107bd3e8d1fb984ea2bdf11c0b619821d1334b36f38d4df9c2b +size 261815 diff --git a/test/LappanTest_28.png b/test/LappanTest_28.png new file mode 100644 index 0000000000000000000000000000000000000000..08e38989731107c3b12f36acf62b012db6312474 --- /dev/null +++ b/test/LappanTest_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6549886437389eb8f98f9372e572dc4250a8b44ff19cafb31fff43c0354b2b69 +size 210084 diff --git a/test/LappanTest_29.png b/test/LappanTest_29.png new file mode 100644 index 0000000000000000000000000000000000000000..16ee7b5135fa0b52cf3d3e0c2a93e26887658a11 --- /dev/null +++ b/test/LappanTest_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be053df156607212679945cc374edda35b003e617e6047badd4b253de54bfcbf +size 180970 diff --git a/test/LappanTest_3.png b/test/LappanTest_3.png new file mode 100644 index 0000000000000000000000000000000000000000..810ee9fc51559d3eb34bf7cd5b7890d52e33c21b --- /dev/null +++ b/test/LappanTest_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2e8ba6c4ff30a82673988a90072c8dd9a1d9e12045946902682cb949f8efe2 +size 264862 diff --git a/test/LappanTest_30.png b/test/LappanTest_30.png new file mode 100644 index 0000000000000000000000000000000000000000..d134b174771d8b6a4916dc402a10c0df7171086a --- /dev/null +++ b/test/LappanTest_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69606f215645f1b2b962771c183c868829a21c2d30ea0bcc0d8d8ddf6666ad86 +size 198453 diff --git a/test/LappanTest_31.png b/test/LappanTest_31.png new file mode 100644 index 0000000000000000000000000000000000000000..92d0b674d1392f970a286a20c170d78c647f08d7 --- /dev/null +++ b/test/LappanTest_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0f3dbc80ded343a25955a0880642b57d0ddc9d7f0ef15cf97faea4a51cb294 +size 252916 diff --git a/test/LappanTest_32.png b/test/LappanTest_32.png new file mode 100644 index 0000000000000000000000000000000000000000..13efec61b256d080af775572e6f9996d475fe6f5 --- /dev/null +++ b/test/LappanTest_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404dd2ac7ef76ffbea32a94d456b6f3670a2d8a0c95fbae1e0a1b76e80ca09e6 +size 217850 diff --git a/test/LappanTest_4.png b/test/LappanTest_4.png new file mode 100644 index 0000000000000000000000000000000000000000..96a53e043883803ec80d2409b51c8c447f88fd21 --- /dev/null +++ b/test/LappanTest_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8afd0b07ad9f86524e96bb92c2375d3b6600026f3560f560f3cf2041b43cb72 +size 188863 diff --git a/test/LappanTest_5.png b/test/LappanTest_5.png new file mode 100644 index 0000000000000000000000000000000000000000..3b4383e152af1306d428ff944e3dc9462e85babe --- /dev/null +++ b/test/LappanTest_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d924f3f5ad09700f464f70acadf0aefffc8d76482620c87e97c49c357969e6fd +size 211871 diff --git a/test/LappanTest_6.png b/test/LappanTest_6.png new file mode 100644 index 0000000000000000000000000000000000000000..e9e24920d493efc64461c0016108404d3c3e2d62 --- /dev/null +++ b/test/LappanTest_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd4f84bfc76ff95b929c86c7c37bb4d59ea394b3397b72ef0f31edf2cbf1934 +size 220382 diff --git a/test/LappanTest_7.png b/test/LappanTest_7.png new file mode 100644 index 0000000000000000000000000000000000000000..68766dc3f6cc34330b605ab9c5dac01ae08d82b8 --- /dev/null +++ b/test/LappanTest_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced08b053bbf13a0e7e2e94f9ed9a412d3f0bb2dfc20c9efa38fd2149d841d9c +size 83041 diff --git a/test/LappanTest_8.png b/test/LappanTest_8.png new file mode 100644 index 0000000000000000000000000000000000000000..17deb289284da3c9607a6d33aee9fdc13419b253 --- /dev/null +++ b/test/LappanTest_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e9ea62f68e7aa198bed5e5b2ae27ff3431764cd79f77be6db7afa3ee97ebfb +size 206721 diff --git a/test/LappanTest_9.png b/test/LappanTest_9.png new file mode 100644 index 0000000000000000000000000000000000000000..e8b8bcdd796d7c0ac14e1aa654c1959ce35707b4 --- /dev/null +++ b/test/LappanTest_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b66686646352ab452d4375d7a31f5d519f4fcb153b08f48d078702d5efa9190 +size 173909 diff --git a/test/MRMT.png b/test/MRMT.png new file mode 100644 index 0000000000000000000000000000000000000000..2805ba5d60a0f3860c5db6a30855c03fe3633d63 --- /dev/null +++ b/test/MRMT.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0088f0d979d9565d226c31c644511806115fa43f9fb9ccc9150aa5bed9f8c0d +size 723063 diff --git a/test/NCIT_1.png b/test/NCIT_1.png new file mode 100644 index 0000000000000000000000000000000000000000..8ccd8ffbedb999f1743ebd7118fa13bea60b60bf --- /dev/null +++ b/test/NCIT_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0578853aa760e88f9abc4ad8b6836cf8ab2e064ca5c294fc1a1bc19402e591ba +size 68763 diff --git a/test/NCIT_10.png b/test/NCIT_10.png new file mode 100644 index 0000000000000000000000000000000000000000..19d92353c96b37e7b70ecdf7afbe8c72719b44b4 --- /dev/null +++ b/test/NCIT_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23598eaf4407c035f538f75e3d22eb1270aa299f57ddce0868ba5323e8e41d8 +size 95589 diff --git a/test/NCIT_11.png b/test/NCIT_11.png new file mode 100644 index 0000000000000000000000000000000000000000..62594ce9a2ac6e3ca846fc3fe6adf836ac8e7afe --- /dev/null +++ b/test/NCIT_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0493a79f87ae65dadf073085f0a6bf0f198483fb2d71aafa6da5423b2557d995 +size 68170 diff --git a/test/NCIT_12.png b/test/NCIT_12.png new file mode 100644 index 0000000000000000000000000000000000000000..cf268d46c41c2490d03b3b2acd8b351d5b7184eb --- /dev/null +++ b/test/NCIT_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12471e8a546ac1e7c153b82ab25c8faeefd97604aa983241bbcb59554a593d4f +size 63778 diff --git a/test/NCIT_13.png b/test/NCIT_13.png new file mode 100644 index 0000000000000000000000000000000000000000..c24112baf51525d184f92f33400a5b4c8fdd454a --- /dev/null +++ b/test/NCIT_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:125fd6e23310bd3d69d39bb788ff36aafb586c09ded3763d21138e4256386697 +size 63598 diff --git a/test/NCIT_14.png b/test/NCIT_14.png new file mode 100644 index 0000000000000000000000000000000000000000..071e0606b9ec78b69d79eef91975c8befba1e502 --- /dev/null +++ b/test/NCIT_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d80e67cf61365aa16538824566f475d2f7de2350771dee5e0921b4fca8a8438 +size 63113 diff --git a/test/NCIT_15.png b/test/NCIT_15.png new file mode 100644 index 0000000000000000000000000000000000000000..0111451f37333fb189a20a1694fa54457ab318e6 --- /dev/null +++ b/test/NCIT_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfb4a633cb15fe180680d27905a8ef6d482b576bf45b8406d9685df254e19ff +size 82211 diff --git a/test/NCIT_16.png b/test/NCIT_16.png new file mode 100644 index 0000000000000000000000000000000000000000..7b2b0e8695c7b33d04bac3d6e8b668f3d23888be --- /dev/null +++ b/test/NCIT_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e2b2159efb02e70aff7bb269e57a6698a1160b2fc515bf599a8504272ad611 +size 76330 diff --git a/test/NCIT_2.png b/test/NCIT_2.png new file mode 100644 index 0000000000000000000000000000000000000000..93a72a1d967c220442cc2fdd549a721720a740f3 --- /dev/null +++ b/test/NCIT_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab7d403798e440bf88eec9501ba0880b3572b25026c3b121f0d76d511757e81 +size 75016 diff --git a/test/NCIT_3.png b/test/NCIT_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9d603162e46369b5172419992f7e046b3b83be37 --- /dev/null +++ b/test/NCIT_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae40de5806cea0068dc6c14b60cc6c748072c3cf9c23755a5b0a3a66989bac03 +size 73804 diff --git a/test/NCIT_4.png b/test/NCIT_4.png new file mode 100644 index 0000000000000000000000000000000000000000..22543a97f19f4e026a0e531214e74fc5649eb9d8 --- /dev/null +++ b/test/NCIT_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e67d6a82ed662cb2713dde700997e4355ccb177e7c7373637f5de17867df70 +size 71287 diff --git a/test/NCIT_5.png b/test/NCIT_5.png new file mode 100644 index 0000000000000000000000000000000000000000..fdc4b88d5b363dae7a87cec68b2b814c91b85592 --- /dev/null +++ b/test/NCIT_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a4af7fe310f5746d106586cde4bc092409f66a19e4c35e12c14aa0a823dc4e +size 75386 diff --git a/test/NCIT_6.png b/test/NCIT_6.png new file mode 100644 index 0000000000000000000000000000000000000000..e0ea7341f675b242b5fb6e08cf97096889f4f771 --- /dev/null +++ b/test/NCIT_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5477872002c74e0c6ef4f65497a5d04c1d32409b69bcf622ab5dee56b192248a +size 81851 diff --git a/test/NCIT_7.png b/test/NCIT_7.png new file mode 100644 index 0000000000000000000000000000000000000000..a5197cda34a6fa79fbaa80c199683af80a737b38 --- /dev/null +++ b/test/NCIT_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5352a5b4d2aef8c1d4c1dc53faea86a9287e7e473161baf018ae165406c457 +size 89399 diff --git a/test/NCIT_8.png b/test/NCIT_8.png new file mode 100644 index 0000000000000000000000000000000000000000..71b0041d231d7c4d1244b29344f47ee792d24638 --- /dev/null +++ b/test/NCIT_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ea7c630cdae0518b5a82a6be602edba44be735e9e682eb0f8996e91ee38cea +size 89342 diff --git a/test/NCIT_9.png b/test/NCIT_9.png new file mode 100644 index 0000000000000000000000000000000000000000..0b18eb394e5c03e423f919d49cb9a3d649a7449e --- /dev/null +++ b/test/NCIT_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef8f263f44d66ac218528ac4892855c43afc74ea05a8a834ff46cbf478bff72 +size 92805 diff --git a/test/PSVTR_1.png b/test/PSVTR_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbbad94dc7ed02e50417f0c3338257437fc03b5 --- /dev/null +++ b/test/PSVTR_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e3e46be40eab8f6cacca9ece6a5454aca095b2e533152816849ef04cc3dfc0 +size 97289 diff --git a/test/PSVTR_10.png b/test/PSVTR_10.png new file mode 100644 index 0000000000000000000000000000000000000000..79a3f024f7a493ffa21cbf71e0be17c3cbcf7172 --- /dev/null +++ b/test/PSVTR_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cc3ad0e001bd8d11e916b118bd95f660227231a58a66a91f43267b526743c3 +size 115177 diff --git a/test/PSVTR_11.png b/test/PSVTR_11.png new file mode 100644 index 0000000000000000000000000000000000000000..147dbdc277823d994efd2b547015218d6f5964e1 --- /dev/null +++ b/test/PSVTR_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f7459058a4b1f15a3f81c65311e46a0729ba6bb62ef234929f4e1c579969d6 +size 102301 diff --git a/test/PSVTR_12.png b/test/PSVTR_12.png new file mode 100644 index 0000000000000000000000000000000000000000..29dfdd9ef4a9f31977d34e06d8134a6affd5c700 --- /dev/null +++ b/test/PSVTR_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:885e53568ae5dd584525565128aff0f54a77ae21e6af41c5dbfe3462540e39a9 +size 121477 diff --git a/test/PSVTR_13.png b/test/PSVTR_13.png new file mode 100644 index 0000000000000000000000000000000000000000..4800c15c720af279bc778ff1bb396532adae35f0 --- /dev/null +++ b/test/PSVTR_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:675a9a76e0d182e6703a0dfcf0eb164dac9e569ff2f4d39080a86e46505ee61c +size 103651 diff --git a/test/PSVTR_14.png b/test/PSVTR_14.png new file mode 100644 index 0000000000000000000000000000000000000000..57c6da259374d1f4102fea0063a4f366727255a5 --- /dev/null +++ b/test/PSVTR_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02d53b70f0428353597ee27feec3dca65254039ae2af2d1a2f546ad409705e7d +size 94416 diff --git a/test/PSVTR_15.png b/test/PSVTR_15.png new file mode 100644 index 0000000000000000000000000000000000000000..8c048aed5d054ccd380ab94f7474078b07617f95 --- /dev/null +++ b/test/PSVTR_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3272c59a87a1f32ecd99a1da85fc63e21adbf346f624de3c630a06d4670f9f +size 101410 diff --git a/test/PSVTR_16.png b/test/PSVTR_16.png new file mode 100644 index 0000000000000000000000000000000000000000..f585f45eefdf031c772d20713687315087991894 --- /dev/null +++ b/test/PSVTR_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7fa8dfb1cb589a737ea7bb981b843b936df9323c2809a5f34d4c72165bcb38 +size 107838 diff --git a/test/PSVTR_17.png b/test/PSVTR_17.png new file mode 100644 index 0000000000000000000000000000000000000000..f57e3310749b1764b7ea9617c362dfa21d075606 --- /dev/null +++ b/test/PSVTR_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d7b7b54045ff412483dc0fbeb098fa248945acf9a60d6afeb371334d5ed6c9 +size 134933 diff --git a/test/PSVTR_18.png b/test/PSVTR_18.png new file mode 100644 index 0000000000000000000000000000000000000000..52d38bc82e7d0580e0ddb52ce655eed87df7c8e4 --- /dev/null +++ b/test/PSVTR_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d9fdf1990094e7ec9b1cbf2dd0d8061447a6698934a2f1f15b0b3e2bf16fe0 +size 100158 diff --git a/test/PSVTR_19.png b/test/PSVTR_19.png new file mode 100644 index 0000000000000000000000000000000000000000..2ab6f1827f6794c5a68b8f133abd12167df38664 --- /dev/null +++ b/test/PSVTR_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8390c1f5daf5a0980b2b37902cf492bd99de9b8d2025eb0c60086225347be7 +size 114300 diff --git a/test/PSVTR_2.png b/test/PSVTR_2.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbbad94dc7ed02e50417f0c3338257437fc03b5 --- /dev/null +++ b/test/PSVTR_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e3e46be40eab8f6cacca9ece6a5454aca095b2e533152816849ef04cc3dfc0 +size 97289 diff --git a/test/PSVTR_20.png b/test/PSVTR_20.png new file mode 100644 index 0000000000000000000000000000000000000000..72730c30badbd4bafbd8261e4dc7aad8e72146cd --- /dev/null +++ b/test/PSVTR_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99d5685c668dd691679ba23ca69e47dbae5b4a81173c2841ae4d4b37e5f8ab1 +size 117219 diff --git a/test/PSVTR_21.png b/test/PSVTR_21.png new file mode 100644 index 0000000000000000000000000000000000000000..f8668feee83de5feea6cf09b4b8fce44e3abc3b0 --- /dev/null +++ b/test/PSVTR_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:235e33fd9f677dbd266e754d37d27e24bf38f08784045eb5c48d8a24d7bf348e +size 107017 diff --git a/test/PSVTR_22.png b/test/PSVTR_22.png new file mode 100644 index 0000000000000000000000000000000000000000..4adad76de27a7d64422b6c1249d05425035182de --- /dev/null +++ b/test/PSVTR_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac09b4c0de8209599d5235de08939aaf33c3f1218b5ddb2499d15ce41d3aede +size 113192 diff --git a/test/PSVTR_23.png b/test/PSVTR_23.png new file mode 100644 index 0000000000000000000000000000000000000000..7239ef42b3d40c84f246ecf7ffe7305939de197a --- /dev/null +++ b/test/PSVTR_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b6b648eed0901678a865cbfc3a7f72ceb382747d545cbd9bdb98094c1ded0f +size 116485 diff --git a/test/PSVTR_24.png b/test/PSVTR_24.png new file mode 100644 index 0000000000000000000000000000000000000000..bb013192cbcff3dcda25ae1bb4eedcbf98198f06 --- /dev/null +++ b/test/PSVTR_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d82740628597801f2c9a3c7dc2e84053e31e0f5352f777a9aca250340470c306 +size 98041 diff --git a/test/PSVTR_25.png b/test/PSVTR_25.png new file mode 100644 index 0000000000000000000000000000000000000000..e275b9f81cdd3e0d2724c64e4b2a01ca20838da5 --- /dev/null +++ b/test/PSVTR_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb0dbe3a4ac58e2bdc6519693cf6486a0fe1f210961d0e3c539df74a8279047 +size 116662 diff --git a/test/PSVTR_26.png b/test/PSVTR_26.png new file mode 100644 index 0000000000000000000000000000000000000000..313223b055889b3464cac0cbd01e1553546e6727 --- /dev/null +++ b/test/PSVTR_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d546444ec98cdabdc1cce1f7029669db065b2420a1668d6a453395ce8e9ef4f +size 98331 diff --git a/test/PSVTR_27.png b/test/PSVTR_27.png new file mode 100644 index 0000000000000000000000000000000000000000..4524a55c2f3a6ab8981a6e75b43122a936721a6f --- /dev/null +++ b/test/PSVTR_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3836b0ce56244363163fde7e4ce3ff95481f496f6d2818886ed2f75dd1e295f7 +size 95146 diff --git a/test/PSVTR_28.png b/test/PSVTR_28.png new file mode 100644 index 0000000000000000000000000000000000000000..27275fa23fd0540b6aa23f7b76a0d949cbbca742 --- /dev/null +++ b/test/PSVTR_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a882238163d45acb59e982f902f644c0851f5ddbd5c087bf424d3a0c6088c7 +size 124174 diff --git a/test/PSVTR_29.png b/test/PSVTR_29.png new file mode 100644 index 0000000000000000000000000000000000000000..d21abffdd2ae73fde454b25bf4a5aabcabd909fc --- /dev/null +++ b/test/PSVTR_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ed34f7fef5ad42c87bf02d754cfbbe1949c1a934147f552c06235d17b0cb17 +size 112756 diff --git a/test/PSVTR_3.png b/test/PSVTR_3.png new file mode 100644 index 0000000000000000000000000000000000000000..84b3c84ce641fc3f71a097fec226c6f66e474594 --- /dev/null +++ b/test/PSVTR_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd65890c9e1aff7af1501b68630c2dc05e6896c5ded345da5e673817b745c6fd +size 113720 diff --git a/test/PSVTR_30.png b/test/PSVTR_30.png new file mode 100644 index 0000000000000000000000000000000000000000..63b820ec4280257a2bce1921cfa9caab9f79fc00 --- /dev/null +++ b/test/PSVTR_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0661325adf3beecba00e7c054ec98dd21570806967fe0eac1e377d0193cbfa6 +size 105778 diff --git a/test/PSVTR_4.png b/test/PSVTR_4.png new file mode 100644 index 0000000000000000000000000000000000000000..b4fd4b2dbf3c75547144f032f81c44db9f18690c --- /dev/null +++ b/test/PSVTR_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd76eb6121393129f4ffc200145ce9774215ec0560dfb2693f6a20593e75079 +size 109918 diff --git a/test/PSVTR_5.png b/test/PSVTR_5.png new file mode 100644 index 0000000000000000000000000000000000000000..afd8c674a5ebf7b1deff4680c7027452865dba13 --- /dev/null +++ b/test/PSVTR_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687441f98f21cf0cf8f805f121618eb7812581e24475e27cdef952b80035459b +size 111673 diff --git a/test/PSVTR_6.png b/test/PSVTR_6.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbbad94dc7ed02e50417f0c3338257437fc03b5 --- /dev/null +++ b/test/PSVTR_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e3e46be40eab8f6cacca9ece6a5454aca095b2e533152816849ef04cc3dfc0 +size 97289 diff --git a/test/PSVTR_7.png b/test/PSVTR_7.png new file mode 100644 index 0000000000000000000000000000000000000000..fb5a5c9f7899f192d098d27af660caadff4eb4a4 --- /dev/null +++ b/test/PSVTR_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ba840a41a76e0214e1fd49ad3bfefa52fbfaf4fad223876edcb70b447229f5b +size 109287 diff --git a/test/PSVTR_8.png b/test/PSVTR_8.png new file mode 100644 index 0000000000000000000000000000000000000000..1ea0b1f67718d7436fa8faa5945c65ad3239fa29 --- /dev/null +++ b/test/PSVTR_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de225c8dad55d415735ce1e34bf809a8afe77b5281bcd353079e9571862bdac1 +size 120832 diff --git a/test/PSVTR_9.png b/test/PSVTR_9.png new file mode 100644 index 0000000000000000000000000000000000000000..f228f545666a09fc2b7dc55056499bf8b951ce3a --- /dev/null +++ b/test/PSVTR_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ba07539de39715dc669ab50756e25387c68bb991d9f14472fe9103bb9fd1d5 +size 116328 diff --git a/test/RCubeSR_1.png b/test/RCubeSR_1.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8e4ffc6538750df71434ebe1b32cb7dc935a32 --- /dev/null +++ b/test/RCubeSR_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065dbe04c7b871f9e27a8c647cf0e987fd6cbdef574d1d678f4e7aae926be1d5 +size 165798 diff --git a/test/RCubeSR_10.png b/test/RCubeSR_10.png new file mode 100644 index 0000000000000000000000000000000000000000..d4e63cd476b685eccc63268a587f0b955e1e5efc --- /dev/null +++ b/test/RCubeSR_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5479d17dd88bbc4a065c001bf95d4f9aff57132fd4fb76309bf61401b671b1e +size 162186 diff --git a/test/RCubeSR_11.png b/test/RCubeSR_11.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d5a53764d0bd8e9ed8ed2b2daf31e8d1927b6b --- /dev/null +++ b/test/RCubeSR_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec18e2632ba724ab5e9b2a5654cb5879ebfbaba12216b0df48ab9402f76f761e +size 176473 diff --git a/test/RCubeSR_12.png b/test/RCubeSR_12.png new file mode 100644 index 0000000000000000000000000000000000000000..cd1ddb001dc6660000d29d0e111e9e4efa646a2f --- /dev/null +++ b/test/RCubeSR_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c47bcbff2d12d8fb3e1a96db3cc59f947e124325936a601bc7aa0c9f76acec +size 174952 diff --git a/test/RCubeSR_13.png b/test/RCubeSR_13.png new file mode 100644 index 0000000000000000000000000000000000000000..b93f842ce331ada169855889e0e94388a4f4f9f9 --- /dev/null +++ b/test/RCubeSR_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cde7f25b847050320f5e79b15b5d8861f562ce68e01446267f349fc7f972613 +size 174492 diff --git a/test/RCubeSR_14.png b/test/RCubeSR_14.png new file mode 100644 index 0000000000000000000000000000000000000000..22ea7c0a1249b2c49e8ba7932419e2ea0a22bb2f --- /dev/null +++ b/test/RCubeSR_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b281a49f0fdb01c6e973398f44f9c78cdacdd58c65f26b7575d96eebf4b13188 +size 160272 diff --git a/test/RCubeSR_15.png b/test/RCubeSR_15.png new file mode 100644 index 0000000000000000000000000000000000000000..e8312a4d05ee610e088be1d2a90e9c2b1dc25d19 --- /dev/null +++ b/test/RCubeSR_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff24462b9256617203887e6726b8e60bdaa2eb1b38f25ef89e2dfc3bdceb23c +size 170775 diff --git a/test/RCubeSR_16.png b/test/RCubeSR_16.png new file mode 100644 index 0000000000000000000000000000000000000000..5553e1719c16c2ae14530d3fcf63947077ea7a7d --- /dev/null +++ b/test/RCubeSR_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc84c5353f1e8780d37797808f938e8c1dae1216eacc4af0ac10e68ba4bb323 +size 171302 diff --git a/test/RCubeSR_17.png b/test/RCubeSR_17.png new file mode 100644 index 0000000000000000000000000000000000000000..8f6793daac3accf62e6395a95b0c2a6cc208ed42 --- /dev/null +++ b/test/RCubeSR_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a76c7f159b2ef86c0576e68d55fb8f1c2c0a06855516b806c1ca1065e5bcdcf +size 167113 diff --git a/test/RCubeSR_18.png b/test/RCubeSR_18.png new file mode 100644 index 0000000000000000000000000000000000000000..0ecae0bbfe7f083fcff20b2dde1a4265f7e46067 --- /dev/null +++ b/test/RCubeSR_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84aeb9cf69ef2ab36b238330b661c911353400da3ffa4cb5d8ca010edbd83516 +size 163543 diff --git a/test/RCubeSR_19.png b/test/RCubeSR_19.png new file mode 100644 index 0000000000000000000000000000000000000000..2fec9379b6a28c2374dd14aa1a30e46ffdcd51cb --- /dev/null +++ b/test/RCubeSR_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5a49a86f9f3dd68961541d9961a384c493d9e1f72bfd703aa1746b14762450 +size 159099 diff --git a/test/RCubeSR_2.png b/test/RCubeSR_2.png new file mode 100644 index 0000000000000000000000000000000000000000..64cc1c81851010595b40e78795a997ae929cbce7 --- /dev/null +++ b/test/RCubeSR_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9958f0d84ada753e83682cb3ca7651a15ffa9ef30f14496dc79cdd6342e710f3 +size 162075 diff --git a/test/RCubeSR_20.png b/test/RCubeSR_20.png new file mode 100644 index 0000000000000000000000000000000000000000..8361bf467b76023a2910f8be5e6f00bd5809b0f6 --- /dev/null +++ b/test/RCubeSR_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7bc7a43bc5236b0d3df840be2d99ea399be3d47b450e4dd5be108bd8b6a84f +size 172843 diff --git a/test/RCubeSR_21.png b/test/RCubeSR_21.png new file mode 100644 index 0000000000000000000000000000000000000000..d3334665872e24ce31747b2080c6e0cf0c49aaee --- /dev/null +++ b/test/RCubeSR_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbd97203d6cdf6ca5e0f642c96e524f4ffead022a80820d46ca7da2553565c9 +size 170744 diff --git a/test/RCubeSR_22.png b/test/RCubeSR_22.png new file mode 100644 index 0000000000000000000000000000000000000000..fcfccea9e6636300784e328576d46088f9afbeb7 --- /dev/null +++ b/test/RCubeSR_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53381c4e64973dc5257eea16842445c4721dfab575a1afce392564e0077762f +size 159828 diff --git a/test/RCubeSR_23.png b/test/RCubeSR_23.png new file mode 100644 index 0000000000000000000000000000000000000000..fc065ebb421f4d4428abf34667e8575d9563dcff --- /dev/null +++ b/test/RCubeSR_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf8efc8d747d4f0ef04f3242511c0194c986e4d30d412ea8a08c13a6dd8ed82 +size 158022 diff --git a/test/RCubeSR_24.png b/test/RCubeSR_24.png new file mode 100644 index 0000000000000000000000000000000000000000..d5d1b50666a8e11d789a041fd2b4ffa3ca52b9fb --- /dev/null +++ b/test/RCubeSR_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc5ce73d6fccbc88806e6302f469a2dfc145c36a79a47720b0bbb978f49d3a3 +size 176479 diff --git a/test/RCubeSR_25.png b/test/RCubeSR_25.png new file mode 100644 index 0000000000000000000000000000000000000000..d2b4d4b911b81cf500ee7292783b249238671aea --- /dev/null +++ b/test/RCubeSR_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ba2de07fc846414c69a82450f0019f0c29c7cda3cbca5a16ed6d872a1390a3 +size 167090 diff --git a/test/RCubeSR_26.png b/test/RCubeSR_26.png new file mode 100644 index 0000000000000000000000000000000000000000..2ac07c23b6ecb135af1a31bbfee779bce2c740f3 --- /dev/null +++ b/test/RCubeSR_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac500ec8a0d4a52b19842af388bf7612c75f5c54dc63dab04b092927c2c5207 +size 167311 diff --git a/test/RCubeSR_27.png b/test/RCubeSR_27.png new file mode 100644 index 0000000000000000000000000000000000000000..b6ffe3f79d1f5cabcace6b9e29f2445d68ec3ff9 --- /dev/null +++ b/test/RCubeSR_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d5273abff3797103963765aa2e348cbc64870e51a2f3d2379bfff7705be253 +size 174416 diff --git a/test/RCubeSR_28.png b/test/RCubeSR_28.png new file mode 100644 index 0000000000000000000000000000000000000000..99703c6644588abcd9573b091f85c020d247fc13 --- /dev/null +++ b/test/RCubeSR_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f47a339bd13f1881fbca9a39621c3bd52aa69d30172b6d3d498f3468402477 +size 165864 diff --git a/test/RCubeSR_29.png b/test/RCubeSR_29.png new file mode 100644 index 0000000000000000000000000000000000000000..3385398acd0ae0a6f18337e60721126ce343201f --- /dev/null +++ b/test/RCubeSR_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbec0ff072847e0d1a30f6737963b78272d0371f2ce1c5c6f273786c97678880 +size 171385 diff --git a/test/RCubeSR_3.png b/test/RCubeSR_3.png new file mode 100644 index 0000000000000000000000000000000000000000..81f9149c02fde550e2035faa06d45e822be634c5 --- /dev/null +++ b/test/RCubeSR_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7ea4c42c1ebc7c22564a8ad25a4a395aec574ad3cf2ea5160ebd996a9e3184 +size 175400 diff --git a/test/RCubeSR_30.png b/test/RCubeSR_30.png new file mode 100644 index 0000000000000000000000000000000000000000..9d12a4ac75d82ba3e1b4a28519cc4909eb39fcb4 --- /dev/null +++ b/test/RCubeSR_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d1dd23e4bafc391492c6dc5577a44e1d5a398fb01a1ad9af3f14da2e8e4a9a4 +size 173790 diff --git a/test/RCubeSR_31.png b/test/RCubeSR_31.png new file mode 100644 index 0000000000000000000000000000000000000000..89f0db55fda237953a5b3c0a61db50a9b8a2c795 --- /dev/null +++ b/test/RCubeSR_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69e8737a2a1649401bab7ec7276ba761ec5eee4733920a14200f18a7c51a9a3 +size 167639 diff --git a/test/RCubeSR_32.png b/test/RCubeSR_32.png new file mode 100644 index 0000000000000000000000000000000000000000..4faa76dcab0db0712e358d514044e696fc802a87 --- /dev/null +++ b/test/RCubeSR_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd5c3fd22ca32507cb00e0cd428bb16ba615270a93a5329ab143882270ce8b6 +size 168914 diff --git a/test/RCubeSR_33.png b/test/RCubeSR_33.png new file mode 100644 index 0000000000000000000000000000000000000000..4123070f8c6187b1b55368399c78b8fee5c08f4d --- /dev/null +++ b/test/RCubeSR_33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:590654c7df45a3945f56bac0d3a71b485dbe4247a87e9dc85951105942301aec +size 170527 diff --git a/test/RCubeSR_34.png b/test/RCubeSR_34.png new file mode 100644 index 0000000000000000000000000000000000000000..68702e6aa4e6a7ca0fac5ff948b30cc048203db4 --- /dev/null +++ b/test/RCubeSR_34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b93afd780b4a7eb9e4c187ec6066d4e0815b9151934b67dbf228441cc25ae5 +size 175253 diff --git a/test/RCubeSR_35.png b/test/RCubeSR_35.png new file mode 100644 index 0000000000000000000000000000000000000000..89826fdd2b88c5af544c2108338aecbdec7a7c1e --- /dev/null +++ b/test/RCubeSR_35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea88eda4a89b1673d4a57fd3d3646285532b50f925be6b1d10e5001a51145ea +size 169436 diff --git a/test/RCubeSR_36.png b/test/RCubeSR_36.png new file mode 100644 index 0000000000000000000000000000000000000000..6c7c326bedd7706d069439c17d90da825278b076 --- /dev/null +++ b/test/RCubeSR_36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c17a742402f6b504d7669645d9b1a5a4a6728b7a8fbb38334ae8231543434c0 +size 162362 diff --git a/test/RCubeSR_37.png b/test/RCubeSR_37.png new file mode 100644 index 0000000000000000000000000000000000000000..87f9cea3563de2ad66b4ee4217f496f6547b1673 --- /dev/null +++ b/test/RCubeSR_37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a04e7a2725ad881b8484cdd350781a7ec99ae7c6a89a3c6c5c19130bd51d28d +size 172799 diff --git a/test/RCubeSR_38.png b/test/RCubeSR_38.png new file mode 100644 index 0000000000000000000000000000000000000000..318bdfe64e58ad757e27111e36190a6a5c525b16 --- /dev/null +++ b/test/RCubeSR_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1199fd25fb11fd440209dba4124466669e6c3043ecbf702684c88ddee0326d0 +size 177118 diff --git a/test/RCubeSR_39.png b/test/RCubeSR_39.png new file mode 100644 index 0000000000000000000000000000000000000000..62e2f8e6fd7233ba20affa0ee3a66957ea9bbf3e --- /dev/null +++ b/test/RCubeSR_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46cc9878d3ae1f63c4950bb88dab7b00209e59927fa66f5f02d474dfeff1369 +size 177034 diff --git a/test/RCubeSR_4.png b/test/RCubeSR_4.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea027df6984c00864661fced7a3dfb2c3892be4 --- /dev/null +++ b/test/RCubeSR_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce40c18890fddf606095d9e531fb14c033939c14c9289a1e8e65e166b8042305 +size 159913 diff --git a/test/RCubeSR_40.png b/test/RCubeSR_40.png new file mode 100644 index 0000000000000000000000000000000000000000..2697aee37977439e44a3ef9f1fe34a5dc5885455 --- /dev/null +++ b/test/RCubeSR_40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e48f885e63467594476bf5e78b32dac2889e333f68ab74abc9c1db18a818f73 +size 176360 diff --git a/test/RCubeSR_41.png b/test/RCubeSR_41.png new file mode 100644 index 0000000000000000000000000000000000000000..244dedbeca43cddb05bfd41d926f16c26077b22a --- /dev/null +++ b/test/RCubeSR_41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503cb573a68f0a2f613ccd398918b9c11b7c7807d8bb7636b1b05ac5ea7b2a4a +size 167246 diff --git a/test/RCubeSR_42.png b/test/RCubeSR_42.png new file mode 100644 index 0000000000000000000000000000000000000000..a8e137b32da9ee5eaa8ad3ea8bf1a4def94c3bf8 --- /dev/null +++ b/test/RCubeSR_42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345566050b540e8d32bfbc6e44e5fe72f2b6c0932d78b7580b3313d8046ecf2a +size 169285 diff --git a/test/RCubeSR_43.png b/test/RCubeSR_43.png new file mode 100644 index 0000000000000000000000000000000000000000..ff7ee1c8d9472f5c9fc6d7d53e9d01972d8179e4 --- /dev/null +++ b/test/RCubeSR_43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e360cf309566f0ceedfada2b5ba255d0f3c5b5ec9d1f6f7d01c95c599a79e014 +size 172107 diff --git a/test/RCubeSR_44.png b/test/RCubeSR_44.png new file mode 100644 index 0000000000000000000000000000000000000000..f3dfb9bd6cabd365225028c6a51cb07a63878721 --- /dev/null +++ b/test/RCubeSR_44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a0811317c84e79684fed6ce103ba380b2583326b94f2fa82f5f7f30c108564 +size 171971 diff --git a/test/RCubeSR_45.png b/test/RCubeSR_45.png new file mode 100644 index 0000000000000000000000000000000000000000..4fec843486e979b31041a9581578bb22982f18df --- /dev/null +++ b/test/RCubeSR_45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3799658a4ce633b8edf6393e947972cdca2820ad5bc918cebe41e8c3e7494db8 +size 175177 diff --git a/test/RCubeSR_46.png b/test/RCubeSR_46.png new file mode 100644 index 0000000000000000000000000000000000000000..732da8ac7d796505193631cddafd1619be9a9819 --- /dev/null +++ b/test/RCubeSR_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064565c0fcbd7e3c1b78cd5e4bc0b4093beefa13b1393d7e96332dc690b8566c +size 175228 diff --git a/test/RCubeSR_47.png b/test/RCubeSR_47.png new file mode 100644 index 0000000000000000000000000000000000000000..12560e8ad1ee460538609760051d12ec4fe3f473 --- /dev/null +++ b/test/RCubeSR_47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09101232e372cca97bcbdfc7c232ac7520e8ef2ba7a003809f6fb47191539d6 +size 167596 diff --git a/test/RCubeSR_48.png b/test/RCubeSR_48.png new file mode 100644 index 0000000000000000000000000000000000000000..edd1d5cb41fa13bab3cd92a0b82bfe371fa3a0cc --- /dev/null +++ b/test/RCubeSR_48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d127a862930e09a7dd76135b098dad58df5906f4dcb8f6cac0903f65ece4cb +size 175357 diff --git a/test/RCubeSR_5.png b/test/RCubeSR_5.png new file mode 100644 index 0000000000000000000000000000000000000000..27a8b44481ba5d7a72928d560e498d148fc714ff --- /dev/null +++ b/test/RCubeSR_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24cf18ad35dcd401002b69ad6ed1e37830f48855755179b8d7f7c589f7f7395a +size 176419 diff --git a/test/RCubeSR_6.png b/test/RCubeSR_6.png new file mode 100644 index 0000000000000000000000000000000000000000..0ebd8a24dd1d53a65e3b19c88b5b9867d101ee4c --- /dev/null +++ b/test/RCubeSR_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3fc02dc2356a1db01270f1fd8bc991686ea5f5cebf7aabfb8035b757973d6ca +size 179110 diff --git a/test/RCubeSR_7.png b/test/RCubeSR_7.png new file mode 100644 index 0000000000000000000000000000000000000000..acc689967798689b5d201919e0491303b4713ad3 --- /dev/null +++ b/test/RCubeSR_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63368cebe7836e4b0ddfe8d000c0e2eab4973f1a8f45ad3630e5e9693cedf6cc +size 172080 diff --git a/test/RCubeSR_8.png b/test/RCubeSR_8.png new file mode 100644 index 0000000000000000000000000000000000000000..f09af1111aadedd2af81a80bec65d0d3ab62b7aa --- /dev/null +++ b/test/RCubeSR_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea9e220a90acd27fe6471004d04fce13196b3ee1ae5c8fa47c15371fc0417ad +size 159526 diff --git a/test/RCubeSR_9.png b/test/RCubeSR_9.png new file mode 100644 index 0000000000000000000000000000000000000000..a78e7879130f003e5f9033d1cf185ad600a32f66 --- /dev/null +++ b/test/RCubeSR_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d7fc835b012fa167307d41d1989fedc628838d4f1a01d786ba9022ff01f573 +size 163960 diff --git a/test/RCubeVis_1.png b/test/RCubeVis_1.png new file mode 100644 index 0000000000000000000000000000000000000000..537454a390fd08831acc595d05591b89f5b3d46a --- /dev/null +++ b/test/RCubeVis_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8638ed7ade42b4a0b3277a2f0a01824e8ba74fb8731321f1d9581f534d5b2834 +size 164819 diff --git a/test/RCubeVis_10.png b/test/RCubeVis_10.png new file mode 100644 index 0000000000000000000000000000000000000000..641365714640684f7d82c25d6429b5ae7148dda2 --- /dev/null +++ b/test/RCubeVis_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a6578efe00c64bef643ae743799db808af2ff706fb9d64206f599e45087dd1 +size 137576 diff --git a/test/RCubeVis_11.png b/test/RCubeVis_11.png new file mode 100644 index 0000000000000000000000000000000000000000..a610267789b2e58a42d7191536642a6674302df1 --- /dev/null +++ b/test/RCubeVis_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a22e564e75ba4630ebc09afae50973458bbf44805f0a07cabdabe40d64ab68 +size 138817 diff --git a/test/RCubeVis_12.png b/test/RCubeVis_12.png new file mode 100644 index 0000000000000000000000000000000000000000..1c32bc297907eb43f141b623f51909c70484ddcf --- /dev/null +++ b/test/RCubeVis_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a10269986133ad025c87b1c09f9668d0f62622452294b84b7dea70376bb74f03 +size 144374 diff --git a/test/RCubeVis_13.png b/test/RCubeVis_13.png new file mode 100644 index 0000000000000000000000000000000000000000..47e9c05ae1a832ac8992e9d0d2a459a3d928a68d --- /dev/null +++ b/test/RCubeVis_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5632eea8f3875992d8993323629c768011f1effcdc262df789d0ff94a6ec563e +size 158235 diff --git a/test/RCubeVis_14.png b/test/RCubeVis_14.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3e057d3dba9987ea5dfb1d8b40bb6166a2436f --- /dev/null +++ b/test/RCubeVis_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9968fa8b6092131bed587e63531c540c1104b4a2d9f85c29cfb39aa5782c7b +size 162559 diff --git a/test/RCubeVis_15.png b/test/RCubeVis_15.png new file mode 100644 index 0000000000000000000000000000000000000000..4a795e69adeba72e20d35a5a1e8f9f17d4e2f37d --- /dev/null +++ b/test/RCubeVis_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be338ecebde7d8f96dca1be0a4df6ee244e6247e1fb9bbaff9b906647e5fa4c +size 134939 diff --git a/test/RCubeVis_16.png b/test/RCubeVis_16.png new file mode 100644 index 0000000000000000000000000000000000000000..23ff7a03a9eb756230985854d053abaa2456d7b0 --- /dev/null +++ b/test/RCubeVis_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09cfd0a88de4a5716c10294992be6118741e073540f5e913faa3bf7f55b6f572 +size 176797 diff --git a/test/RCubeVis_17.png b/test/RCubeVis_17.png new file mode 100644 index 0000000000000000000000000000000000000000..aabfb9a000e260522a6545dc0cd04a7458df1b68 --- /dev/null +++ b/test/RCubeVis_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b9b22813a330d48a1335e21d5f1645923430fc87fb87619d34d91c08c8058c0 +size 163102 diff --git a/test/RCubeVis_18.png b/test/RCubeVis_18.png new file mode 100644 index 0000000000000000000000000000000000000000..34488752ec0afbc512d335f1d65e43b63d777ab6 --- /dev/null +++ b/test/RCubeVis_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f73364e6b270b18b9e9c0cf9582edb7fe21bfc4dfe1b5e88527545f9170717 +size 134494 diff --git a/test/RCubeVis_19.png b/test/RCubeVis_19.png new file mode 100644 index 0000000000000000000000000000000000000000..04e5f321ae5f783b17c4794970b0454898834aa3 --- /dev/null +++ b/test/RCubeVis_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813204bff563662964559413dbaab5e348dc2d789d226f5c866e6e4e1fa583e7 +size 160452 diff --git a/test/RCubeVis_2.png b/test/RCubeVis_2.png new file mode 100644 index 0000000000000000000000000000000000000000..168788ac33cbd3ff9bc5c4169a70020a903b9f42 --- /dev/null +++ b/test/RCubeVis_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d06a648f838e9de5a8dfdb21c0f452fb078ee9267a1ecc83cb94186c67c98d +size 135869 diff --git a/test/RCubeVis_20.png b/test/RCubeVis_20.png new file mode 100644 index 0000000000000000000000000000000000000000..5ac8277c76637d8d6285e075ac57a031555b19cd --- /dev/null +++ b/test/RCubeVis_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e574a5b1612f2431e606627645943d676e4d9beb4e1a830f082d99c3930549ed +size 140181 diff --git a/test/RCubeVis_21.png b/test/RCubeVis_21.png new file mode 100644 index 0000000000000000000000000000000000000000..02c899fb676bf63e46b5a023bd9293a29d343f9a --- /dev/null +++ b/test/RCubeVis_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fe5a618b1b38964df297a8ebace818937284a8abf2156f845dc12af0434a02 +size 174123 diff --git a/test/RCubeVis_22.png b/test/RCubeVis_22.png new file mode 100644 index 0000000000000000000000000000000000000000..57e73a6ea38c62ba4f54fb73aa6c6a1c28f44885 --- /dev/null +++ b/test/RCubeVis_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067a4300871cd1a557b200420185074ac7b6d41c76d9bf35008539b7840c2997 +size 161328 diff --git a/test/RCubeVis_23.png b/test/RCubeVis_23.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaf25468c72da1c67707180f29c89b8c4c56eca --- /dev/null +++ b/test/RCubeVis_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92a4e687f82d9af1887903d0402004e4ba0fd03ba0107a0d7d37958017dafa8 +size 133735 diff --git a/test/RCubeVis_24.png b/test/RCubeVis_24.png new file mode 100644 index 0000000000000000000000000000000000000000..24b5d64e2f32855a12df1d63dfcd7a55adfce6c5 --- /dev/null +++ b/test/RCubeVis_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b468fd0a0b65bce01a7bb22527b434bca690da35a35ca61b96490cc2f41220e4 +size 134878 diff --git a/test/RCubeVis_25.png b/test/RCubeVis_25.png new file mode 100644 index 0000000000000000000000000000000000000000..41d024975b98f23124d4d30e7dd7321fd74dc98f --- /dev/null +++ b/test/RCubeVis_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161fc5d66f1e773e529a00920715d88103b45480b588a6db3f607558e030ac06 +size 133200 diff --git a/test/RCubeVis_26.png b/test/RCubeVis_26.png new file mode 100644 index 0000000000000000000000000000000000000000..7ff94eb98d522f881cec68388d2def7c7f0f0be0 --- /dev/null +++ b/test/RCubeVis_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e03411b3d947cad6f17044e1cd51a960f2576350a570973ec3ef8b70fba184 +size 161360 diff --git a/test/RCubeVis_27.png b/test/RCubeVis_27.png new file mode 100644 index 0000000000000000000000000000000000000000..30410a3710ead92843d47de9d73bdd622d9645df --- /dev/null +++ b/test/RCubeVis_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6434f44ee3995df58202228d373ee73a5e1048807c104be8a757441b1c5b3830 +size 131812 diff --git a/test/RCubeVis_28.png b/test/RCubeVis_28.png new file mode 100644 index 0000000000000000000000000000000000000000..b127d938ac8e895198794c18249ce86f3aaa94c1 --- /dev/null +++ b/test/RCubeVis_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bdb5935a42673fb41a2782e94b43e042419dd4ce4be9f2cdcb2263034fd4ff +size 160985 diff --git a/test/RCubeVis_29.png b/test/RCubeVis_29.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ebc4398c883fd863254bbc76a6a84101e926fc --- /dev/null +++ b/test/RCubeVis_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:758cc0d1cf23b5fc664f3c2d9d81738bee1790398787c861f5fc7a9e04e515fb +size 164112 diff --git a/test/RCubeVis_3.png b/test/RCubeVis_3.png new file mode 100644 index 0000000000000000000000000000000000000000..ffaf235be4e35f450ebb505f795267845ecf7240 --- /dev/null +++ b/test/RCubeVis_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c51401bb5f24ebefcca499cb2344de1138b5d78f36dbc4d8a5fe42afbb863c2 +size 176897 diff --git a/test/RCubeVis_30.png b/test/RCubeVis_30.png new file mode 100644 index 0000000000000000000000000000000000000000..23a0561497fbd2c6f6c652bc058091fd9557e514 --- /dev/null +++ b/test/RCubeVis_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0782348e6ef863420d2c5aa99f97ea0b41d39c96e1b8bfb298b92db98e95cd +size 144822 diff --git a/test/RCubeVis_31.png b/test/RCubeVis_31.png new file mode 100644 index 0000000000000000000000000000000000000000..0743174d5a8db5cbd959541423c5bd2769a4d5b6 --- /dev/null +++ b/test/RCubeVis_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8524993435ef42538a78c34e6937426bb56efa78b19d86d7b57f9ab5a655a0c +size 164919 diff --git a/test/RCubeVis_32.png b/test/RCubeVis_32.png new file mode 100644 index 0000000000000000000000000000000000000000..75abe50b9c46f573c1c562231cafb6a3575afd6c --- /dev/null +++ b/test/RCubeVis_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b21f91fbd7dc59b0632cbe76ba424744be6f40f016ca746ef37937816c4ac7 +size 143908 diff --git a/test/RCubeVis_33.png b/test/RCubeVis_33.png new file mode 100644 index 0000000000000000000000000000000000000000..924c0d69c5e8569cc1b832b26db42fea72a32532 --- /dev/null +++ b/test/RCubeVis_33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103c448ee7f75177a9077e8a8fb9d13686078954610ccb23fa95ad53a89e8cda +size 140744 diff --git a/test/RCubeVis_34.png b/test/RCubeVis_34.png new file mode 100644 index 0000000000000000000000000000000000000000..c792e2e25b61de72e7162f7d2a435bee06edd85e --- /dev/null +++ b/test/RCubeVis_34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa42fc049bc58cc4baf16ffcf9c18f63c092f3e349b5b3f78088caa22bd8b5e6 +size 170826 diff --git a/test/RCubeVis_35.png b/test/RCubeVis_35.png new file mode 100644 index 0000000000000000000000000000000000000000..b7e0695e82d1f7a9b937b87774ab8871207b90b5 --- /dev/null +++ b/test/RCubeVis_35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddc92832e21deb60aa6217a2479cf84e13ceb8fe58de55ebcc3469fcef5c424 +size 159016 diff --git a/test/RCubeVis_36.png b/test/RCubeVis_36.png new file mode 100644 index 0000000000000000000000000000000000000000..c64be313aea2d2577adae5693aaff70d0be7d91c --- /dev/null +++ b/test/RCubeVis_36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eadf6c97d9fdd8a2f485f7c8d8cbc89ce80e8f77943126157b87c561bec978e +size 173950 diff --git a/test/RCubeVis_37.png b/test/RCubeVis_37.png new file mode 100644 index 0000000000000000000000000000000000000000..993ad336035838f43a0a280e4b3aecc129bd1744 --- /dev/null +++ b/test/RCubeVis_37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35cec1c32349b79591cfe847dbe4f0946fb63004cc91b66a9b957639ee8b8c41 +size 171933 diff --git a/test/RCubeVis_38.png b/test/RCubeVis_38.png new file mode 100644 index 0000000000000000000000000000000000000000..10a82a9dfc84a7e62e336d9b5e6f8bc2c70d044c --- /dev/null +++ b/test/RCubeVis_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7466af5239902296cfd9456adc9d909363b2262d728c0b1071edd72a13f4a572 +size 144012 diff --git a/test/RCubeVis_39.png b/test/RCubeVis_39.png new file mode 100644 index 0000000000000000000000000000000000000000..79851930e4b6202dcc1acf3a4be5cfadfe35706b --- /dev/null +++ b/test/RCubeVis_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032dabe68f8cfadf53971716c7a115caf9b7086c665388f79756e679ab64a5d4 +size 171348 diff --git a/test/RCubeVis_4.png b/test/RCubeVis_4.png new file mode 100644 index 0000000000000000000000000000000000000000..906c32a316bb552853a3a56fb2c68b1967f4651c --- /dev/null +++ b/test/RCubeVis_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c4cc372897f498153ef1d4a6e8fb69b249401af77755cc0822c945f276a6d3 +size 135760 diff --git a/test/RCubeVis_40.png b/test/RCubeVis_40.png new file mode 100644 index 0000000000000000000000000000000000000000..960b9a48fe8563be867b12fdaaeb28ae64368aa7 --- /dev/null +++ b/test/RCubeVis_40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9824cbfa474a76324c93540383203610251c87c4ac5979a8b55c0726f4a2a8dc +size 134020 diff --git a/test/RCubeVis_41.png b/test/RCubeVis_41.png new file mode 100644 index 0000000000000000000000000000000000000000..0609dc30fe77c90bc273a967c0c48b75992c52b0 --- /dev/null +++ b/test/RCubeVis_41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fba001b8e3712b0f348c2f036f8ad699a11a082fd8ab20b6704208a1273f1df +size 133194 diff --git a/test/RCubeVis_42.png b/test/RCubeVis_42.png new file mode 100644 index 0000000000000000000000000000000000000000..9703917ff52491038a8774dfdc0ebbf2c7db5709 --- /dev/null +++ b/test/RCubeVis_42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80253f38f6f73d64035351e5ed1fef063bad510f8e842e590f70ee495c9143c3 +size 173893 diff --git a/test/RCubeVis_43.png b/test/RCubeVis_43.png new file mode 100644 index 0000000000000000000000000000000000000000..efa595f17cabeff5d84bc58202c62a25f3c9fd69 --- /dev/null +++ b/test/RCubeVis_43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58564ffcf4893fa0438aced593c13185f7ad1a96655d28843063d1b8e0825928 +size 175349 diff --git a/test/RCubeVis_44.png b/test/RCubeVis_44.png new file mode 100644 index 0000000000000000000000000000000000000000..6a92264d1ed0d431955d4ea2140503815b2bec98 --- /dev/null +++ b/test/RCubeVis_44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81140865dac30311f3958f2204d92948c8824f938227db19cc8c698ada5da5b +size 178679 diff --git a/test/RCubeVis_45.png b/test/RCubeVis_45.png new file mode 100644 index 0000000000000000000000000000000000000000..23f78e8ef72b7c9bb1b225ff6c7c54dc08abce68 --- /dev/null +++ b/test/RCubeVis_45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2e27fc3cdbfbb84e1d1e9b3fc4fc39d76ad8f0db559b005cf9c80319bee1c3 +size 164782 diff --git a/test/RCubeVis_46.png b/test/RCubeVis_46.png new file mode 100644 index 0000000000000000000000000000000000000000..6325482bba34e4e35fc3e61fe2f90116381bf24a --- /dev/null +++ b/test/RCubeVis_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a8c687b6ae06ec615e4ac8b7c6f32e605ca28cc9373f0c3a6ca86f1b32cc26 +size 160264 diff --git a/test/RCubeVis_47.png b/test/RCubeVis_47.png new file mode 100644 index 0000000000000000000000000000000000000000..f50132090afea331954b97377aafbcf1cb62d4c5 --- /dev/null +++ b/test/RCubeVis_47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:649a8712ad06b7b1f984a2baa8c62e752f911c5b6c7b81278cfcb897b866acce +size 179081 diff --git a/test/RCubeVis_48.png b/test/RCubeVis_48.png new file mode 100644 index 0000000000000000000000000000000000000000..6a0970bae09c31030d83b744f149d333f03437f3 --- /dev/null +++ b/test/RCubeVis_48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b058906ecd7ba0817affefb69a8e505ba930d6aed975de8239dfc5a024f1bc +size 164895 diff --git a/test/RCubeVis_49.png b/test/RCubeVis_49.png new file mode 100644 index 0000000000000000000000000000000000000000..0b8f6518db3ccfca4b3b58afb9b3fdd4262e7835 --- /dev/null +++ b/test/RCubeVis_49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d7f1320e5fb6b61d158f530317d4b74436d26a1d02aae76320339b1304495d +size 178253 diff --git a/test/RCubeVis_5.png b/test/RCubeVis_5.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1548390e7beabf1434a5f8a95cf5563db8c441 --- /dev/null +++ b/test/RCubeVis_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc955bf8721339d019e77616ade701e016d3d8a076129f0876b8118583761de +size 159529 diff --git a/test/RCubeVis_50.png b/test/RCubeVis_50.png new file mode 100644 index 0000000000000000000000000000000000000000..664a6416e4b6709349fe2cb6a29e120b9c5a7be0 --- /dev/null +++ b/test/RCubeVis_50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9ea029e001c2db096e1f08e70df75e70346ebeb048dc3c6600295dc087b6f4 +size 162228 diff --git a/test/RCubeVis_51.png b/test/RCubeVis_51.png new file mode 100644 index 0000000000000000000000000000000000000000..7d3e5a1be86204330ff9d0cf3e2148620cb117cd --- /dev/null +++ b/test/RCubeVis_51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801798b6c0c89f0b59dd97339df440e386b6f2b6fa18cbd117faefa5c18cb799 +size 160640 diff --git a/test/RCubeVis_52.png b/test/RCubeVis_52.png new file mode 100644 index 0000000000000000000000000000000000000000..acc8f1d8c5df599f07a316c4a59999e34ff61c43 --- /dev/null +++ b/test/RCubeVis_52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132369945b5e22201894307f92e836f06d326bfa8b39715a4822f622585c9689 +size 173932 diff --git a/test/RCubeVis_53.png b/test/RCubeVis_53.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ad2c3ffff8ec776d05dbfc99f60214144adf4f --- /dev/null +++ b/test/RCubeVis_53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfbf314c45e1a757bfc0824793bd76c8acfeeec91c797bf758f5b459dacb0e0 +size 169438 diff --git a/test/RCubeVis_54.png b/test/RCubeVis_54.png new file mode 100644 index 0000000000000000000000000000000000000000..e96c5d7b8189a0c9b42933661dd6a98524f35e6a --- /dev/null +++ b/test/RCubeVis_54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6505728ebce4d40635368d40a6b0d3eb2a46ece83888c10c641de649e0f8ef92 +size 176529 diff --git a/test/RCubeVis_55.png b/test/RCubeVis_55.png new file mode 100644 index 0000000000000000000000000000000000000000..b6838b1a42f880b8ad531816276fe3e6d6d3acf4 --- /dev/null +++ b/test/RCubeVis_55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b8c59f5714ca9a180b513528384d1a34fc4682317b1bbea153463203aec23a +size 166422 diff --git a/test/RCubeVis_56.png b/test/RCubeVis_56.png new file mode 100644 index 0000000000000000000000000000000000000000..a098272a304c171ec69938b9e46ab9211700675d --- /dev/null +++ b/test/RCubeVis_56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf53e9e0025b4aea32e9109006ae67ac4017d0c470b758042aadf149794428d +size 166404 diff --git a/test/RCubeVis_57.png b/test/RCubeVis_57.png new file mode 100644 index 0000000000000000000000000000000000000000..6b32f6ba89c38a77e875c5be2ac29a3b196b51f0 --- /dev/null +++ b/test/RCubeVis_57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ef56b7ccd30aa1b43bbb476d6e63e679963332b793af1ace9d0c42f272550a +size 170053 diff --git a/test/RCubeVis_58.png b/test/RCubeVis_58.png new file mode 100644 index 0000000000000000000000000000000000000000..c097a42e60bb5b09cf83a96e73dc5af5984ba37a --- /dev/null +++ b/test/RCubeVis_58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a2a3d6f0fe7a326e20a0283b48ed9b80e88b90c4d7720c5dc716d627be6498 +size 165485 diff --git a/test/RCubeVis_59.png b/test/RCubeVis_59.png new file mode 100644 index 0000000000000000000000000000000000000000..32d44ae8dd4514f737c8cc32d0f2b6a08af97386 --- /dev/null +++ b/test/RCubeVis_59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ff59aaf1c07d77e68c39878222d962e3329efffbe4d4b9c5bbf5aefc4c9620 +size 174802 diff --git a/test/RCubeVis_6.png b/test/RCubeVis_6.png new file mode 100644 index 0000000000000000000000000000000000000000..38aafaaf21e32974b31c8f9ce83a466c71df9c8e --- /dev/null +++ b/test/RCubeVis_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74e5cb6916c5893691e159607f94b11b9621fd85ec74c01724413bfa4cfcdc3 +size 145439 diff --git a/test/RCubeVis_60.png b/test/RCubeVis_60.png new file mode 100644 index 0000000000000000000000000000000000000000..63c2514fe33e52cfe3c37afdaeda7dab5d7b0628 --- /dev/null +++ b/test/RCubeVis_60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8626a303a5bcce83c4a5caa8a68f19a16e4f83b3c196e689f984474fde633b41 +size 160975 diff --git a/test/RCubeVis_7.png b/test/RCubeVis_7.png new file mode 100644 index 0000000000000000000000000000000000000000..bcefbf9e435bb46ecf73a155a7aa024ba3e4d253 --- /dev/null +++ b/test/RCubeVis_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54dac1708ff9cef5740f20b3f416951e710a28656e98952574e5f2c5e1395062 +size 174368 diff --git a/test/RCubeVis_8.png b/test/RCubeVis_8.png new file mode 100644 index 0000000000000000000000000000000000000000..904636096f81529b32e0974d34ab3640f1a42fbc --- /dev/null +++ b/test/RCubeVis_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7c66542f2c51d9554d76ba4fa721167667fff56c4afffca31a07d574af38c2 +size 132453 diff --git a/test/RCubeVis_9.png b/test/RCubeVis_9.png new file mode 100644 index 0000000000000000000000000000000000000000..d3b4428c595f266690b7bbc862d1c1131c215ff2 --- /dev/null +++ b/test/RCubeVis_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976d1bc7e0efeece1f26a747518dc70b0eafb2d3c27cff4d5e197ee525ecbd5f +size 157429 diff --git a/test/SBSolidTest_1.png b/test/SBSolidTest_1.png new file mode 100644 index 0000000000000000000000000000000000000000..60f8e88b70f1c94b9a55aaa2fccd67f67d9c8e42 --- /dev/null +++ b/test/SBSolidTest_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7d0ee231870e600cbc8f3ca8555aebd380c4280dd2d4cff264289a117e9d80 +size 308949 diff --git a/test/SBSolidTest_10.png b/test/SBSolidTest_10.png new file mode 100644 index 0000000000000000000000000000000000000000..e911291e79de45ce150a4225ef7a91c499c7216d --- /dev/null +++ b/test/SBSolidTest_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7959ae732ac02f4b492f5cffe66ace3398fcf9195cf14aac3158ea3cebfe4221 +size 353758 diff --git a/test/SBSolidTest_11.png b/test/SBSolidTest_11.png new file mode 100644 index 0000000000000000000000000000000000000000..dc20590e3f33f646b37c3a50faab5d9f8e3cd5f8 --- /dev/null +++ b/test/SBSolidTest_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3929a654fb36a7835cd190d0e31cca014e35d585afd0690449f3a46dd5dcb443 +size 215901 diff --git a/test/SBSolidTest_12.png b/test/SBSolidTest_12.png new file mode 100644 index 0000000000000000000000000000000000000000..8e86482276c7604a65820dc905b9526020e1f3c9 --- /dev/null +++ b/test/SBSolidTest_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1158d1e243c573cce929d380899a5fa83dfe8c9ffa32bb61bf5a4fd0d3e81b6e +size 251953 diff --git a/test/SBSolidTest_13.png b/test/SBSolidTest_13.png new file mode 100644 index 0000000000000000000000000000000000000000..128ec05dbe9c6f89edc3def1f318ea4a412ca0cf --- /dev/null +++ b/test/SBSolidTest_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1705b67b3faaeaaefb7d02b5ee209d6e1da9d8d6b08aa9300897bb54b9fc9a +size 258564 diff --git a/test/SBSolidTest_14.png b/test/SBSolidTest_14.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef2dd570bc0028223e59a44ceace33fdd3b220d --- /dev/null +++ b/test/SBSolidTest_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7ea60c85f055b85481f23c660f5773811ac7b1756faadad0ddace409ae43d2e +size 236666 diff --git a/test/SBSolidTest_15.png b/test/SBSolidTest_15.png new file mode 100644 index 0000000000000000000000000000000000000000..a9794e84ba2b08635811e793da22db9318787d03 --- /dev/null +++ b/test/SBSolidTest_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ee2d395f555ca411a55098d175707af0fbfd9d5aeb19171313f6eac9789529 +size 357980 diff --git a/test/SBSolidTest_16.png b/test/SBSolidTest_16.png new file mode 100644 index 0000000000000000000000000000000000000000..3995537f634c5aaa0299ada8689bf9a01c41dbf6 --- /dev/null +++ b/test/SBSolidTest_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7efa2d23e232ed4459e3f13f5d893a25ce542b6dd580574c0378bce9bbb1a2 +size 254841 diff --git a/test/SBSolidTest_17.png b/test/SBSolidTest_17.png new file mode 100644 index 0000000000000000000000000000000000000000..170e405fc04a3ddc5eb7b553f0cfb58bdb691082 --- /dev/null +++ b/test/SBSolidTest_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbebc8adb3f3bb6ccc074e13e4e6f3a0098cda89afd490c56f30d9e60f3fde2 +size 276844 diff --git a/test/SBSolidTest_18.png b/test/SBSolidTest_18.png new file mode 100644 index 0000000000000000000000000000000000000000..3343396fc97b56104ceae96876858ce187434536 --- /dev/null +++ b/test/SBSolidTest_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ab430c501e99c66df1466ad44a5efcaddf1f0b280cffe53b08bc04b45b8a2b +size 347348 diff --git a/test/SBSolidTest_19.png b/test/SBSolidTest_19.png new file mode 100644 index 0000000000000000000000000000000000000000..dac979bcc8002444ef8023fb841bbebd11e7e43b --- /dev/null +++ b/test/SBSolidTest_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be79fefec6c625a712604e69ee469b32b4f7291b827551d1778cdef08b40897 +size 263141 diff --git a/test/SBSolidTest_2.png b/test/SBSolidTest_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a099091309766a7d1226bfaf39869af7cfcac779 --- /dev/null +++ b/test/SBSolidTest_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2d426282378ae1dd233a11911dff27730ee9791df9ad0b8abc6b914d5b96e1 +size 266186 diff --git a/test/SBSolidTest_20.png b/test/SBSolidTest_20.png new file mode 100644 index 0000000000000000000000000000000000000000..403bd8134453103b4bb1792b413cf3dd6c185a8d --- /dev/null +++ b/test/SBSolidTest_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ce75aebfecaf8d60c39194dbb4757a22529df3f98e593ff3d4ed7d22d9f8a4 +size 269718 diff --git a/test/SBSolidTest_21.png b/test/SBSolidTest_21.png new file mode 100644 index 0000000000000000000000000000000000000000..91682bb0a46be98eced6ce56606e02daf2f8bc69 --- /dev/null +++ b/test/SBSolidTest_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf658c1a455d53b90332da74663bbe691d8931f8f6c292e2f8acec93a9fd720e +size 302328 diff --git a/test/SBSolidTest_22.png b/test/SBSolidTest_22.png new file mode 100644 index 0000000000000000000000000000000000000000..70b2730f5edda380f9a47e834e098e7b5d996d67 --- /dev/null +++ b/test/SBSolidTest_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a87efe86c000c8e74e1ec514c4890f4c8b3c3e702f19e8dda3dd165d62f59e +size 234921 diff --git a/test/SBSolidTest_23.png b/test/SBSolidTest_23.png new file mode 100644 index 0000000000000000000000000000000000000000..6e382742eceefa196cb63ac00d0984f5711d96e8 --- /dev/null +++ b/test/SBSolidTest_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8554bb485ba47906fac51ce02bdc668b2958c65453bdccce9a24fbdd97766e1f +size 260498 diff --git a/test/SBSolidTest_24.png b/test/SBSolidTest_24.png new file mode 100644 index 0000000000000000000000000000000000000000..65eb3d8f08a045c698776d2944a24ca096462cf7 --- /dev/null +++ b/test/SBSolidTest_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e395b3212429df7efd7870a977f6725a99851209c36d1e7d8842212a440ae4 +size 247707 diff --git a/test/SBSolidTest_25.png b/test/SBSolidTest_25.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e7665435279bcbce475f75609dc0a8be317977 --- /dev/null +++ b/test/SBSolidTest_25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:479272896a15e581bdf3e3702f0fdcd7639761f3dbcdf6cd737160b64df92e12 +size 309208 diff --git a/test/SBSolidTest_26.png b/test/SBSolidTest_26.png new file mode 100644 index 0000000000000000000000000000000000000000..0c105d1a93cb5c026137b900c269b7793b1d767b --- /dev/null +++ b/test/SBSolidTest_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fcbee3ff44fa306021841ff8513c4c7966f5fa66a26bc6b01cd419b5b16f7ff +size 182140 diff --git a/test/SBSolidTest_27.png b/test/SBSolidTest_27.png new file mode 100644 index 0000000000000000000000000000000000000000..8c4df44ee602af6026acc447171a9b4797f81a48 --- /dev/null +++ b/test/SBSolidTest_27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5c7ee25a90f05591ceb287b7f1a47e472a7125bec413a8552a9dd62207a53a8 +size 390571 diff --git a/test/SBSolidTest_28.png b/test/SBSolidTest_28.png new file mode 100644 index 0000000000000000000000000000000000000000..24279e3c57ab33ec53ebecc465c9dbf93cb33141 --- /dev/null +++ b/test/SBSolidTest_28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b834b89c5939c16d3a9be0c6875923fc3776d2a495fe8bc467c4700a362a21 +size 225330 diff --git a/test/SBSolidTest_29.png b/test/SBSolidTest_29.png new file mode 100644 index 0000000000000000000000000000000000000000..31915434f3b0b36b9e71af2ec58ae19885d86dc7 --- /dev/null +++ b/test/SBSolidTest_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ae50d7e2912dffd7d17460d26dc3905debcaf8d768860a189beb42f4778dfc +size 271106 diff --git a/test/SBSolidTest_3.png b/test/SBSolidTest_3.png new file mode 100644 index 0000000000000000000000000000000000000000..68df4f5351aa62b096a113270d1e62ae5c3ba012 --- /dev/null +++ b/test/SBSolidTest_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4228b4f0a27c73e3562316f775c51836e6478f9fd3bdab025dc1cba0739ed34b +size 442819 diff --git a/test/SBSolidTest_30.png b/test/SBSolidTest_30.png new file mode 100644 index 0000000000000000000000000000000000000000..7cf9ae8a626d8db9bb46256968806c88f621cbd5 --- /dev/null +++ b/test/SBSolidTest_30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d7f0e7b75e918d8d1b0f851b8ce5f0ba792e98d30987aa53ca4e1bcc5d78218 +size 304992 diff --git a/test/SBSolidTest_4.png b/test/SBSolidTest_4.png new file mode 100644 index 0000000000000000000000000000000000000000..ab551f503e23aac9ce21298baf306db59feae138 --- /dev/null +++ b/test/SBSolidTest_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab699639978fd956aaf2728829da4e9112d4f04e08245339b56294d8a22038a +size 381334 diff --git a/test/SBSolidTest_5.png b/test/SBSolidTest_5.png new file mode 100644 index 0000000000000000000000000000000000000000..37056a82d693845fa03f40fe6e59a133ff8be645 --- /dev/null +++ b/test/SBSolidTest_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8de8b7e837bd9db451ccf5b0c585dc4a618eeb269c8be91e205bf3476bfefe +size 303458 diff --git a/test/SBSolidTest_6.png b/test/SBSolidTest_6.png new file mode 100644 index 0000000000000000000000000000000000000000..8862568d80ffa9b8db7cd354a176de58d3b5981f --- /dev/null +++ b/test/SBSolidTest_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e05eb86ab4ca8e67ee507c9fe271e5301c1163d0104f6127c5e01a4bba07720c +size 323711 diff --git a/test/SBSolidTest_7.png b/test/SBSolidTest_7.png new file mode 100644 index 0000000000000000000000000000000000000000..d4be9792a16e3991dac920e69d4a7b1d76d0e3a9 --- /dev/null +++ b/test/SBSolidTest_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc9a8f6656d7735228f47295607d69c927a3fd0e39c277edac7465cb7841f20 +size 325950 diff --git a/test/SBSolidTest_8.png b/test/SBSolidTest_8.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a095cbe5e540d6ae61389b0121f5f109a7532e --- /dev/null +++ b/test/SBSolidTest_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f63c83ceaf0f5163f557fd50b270f51199cdcdc5eca25a66e7695ecc4c8cc66 +size 300082 diff --git a/test/SBSolidTest_9.png b/test/SBSolidTest_9.png new file mode 100644 index 0000000000000000000000000000000000000000..20d8dd076e01b989dce8069fe01fa6ca19819cbd --- /dev/null +++ b/test/SBSolidTest_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a27fd5668dadedf2f6c06090d6837c8e2a9a195eed3be57376f7c00c5d78073 +size 277204 diff --git a/test/Vandenberg_1.png b/test/Vandenberg_1.png new file mode 100644 index 0000000000000000000000000000000000000000..b01afa3a20b90eee1dcf2f8d18fcf280171ec123 --- /dev/null +++ b/test/Vandenberg_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b76a642ed4a5a7b236c9bac9b80a4c640439412f525aeb801725230df795e8c +size 20896 diff --git a/test/Vandenberg_10.png b/test/Vandenberg_10.png new file mode 100644 index 0000000000000000000000000000000000000000..c9ac592d30764267014a59df0b2259e1ea6fa749 --- /dev/null +++ b/test/Vandenberg_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c56798c5a6bfd2f4d065b39b41ffa21b35e54d351359607e5b3d7c86be5981d +size 19023 diff --git a/test/Vandenberg_11.png b/test/Vandenberg_11.png new file mode 100644 index 0000000000000000000000000000000000000000..03250bf1d09c0fe40ed9d6730b9889dd5f26de8f --- /dev/null +++ b/test/Vandenberg_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34600513141cd515f9b133c01e6a9305cbc05674ff8d2d4b1ac7d793142afd69 +size 20949 diff --git a/test/Vandenberg_12.png b/test/Vandenberg_12.png new file mode 100644 index 0000000000000000000000000000000000000000..8f9aa83cabe1b156a2f0c893c77b3a998a5c23fe --- /dev/null +++ b/test/Vandenberg_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e80ba8cb212e985822437b2219f6537296440da9139f787fd45325a17756b131 +size 19218 diff --git a/test/Vandenberg_13.png b/test/Vandenberg_13.png new file mode 100644 index 0000000000000000000000000000000000000000..8b164eee233cd6abc479cd89283dfbbcaee17814 --- /dev/null +++ b/test/Vandenberg_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:127dcd3dad4d182f851ff689e82d436ef4cfa3623c870b8412233ee0959ef5af +size 19117 diff --git a/test/Vandenberg_14.png b/test/Vandenberg_14.png new file mode 100644 index 0000000000000000000000000000000000000000..baa0995e64ce4771f1db0740bdfcd39dd0fc6871 --- /dev/null +++ b/test/Vandenberg_14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10cc0073d76084e9c2b28796e570faada75fe3955c36ee0fef3d9f5c88600439 +size 19856 diff --git a/test/Vandenberg_15.png b/test/Vandenberg_15.png new file mode 100644 index 0000000000000000000000000000000000000000..f64dbc18240721e872529684c250a8ccae58545b --- /dev/null +++ b/test/Vandenberg_15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e498f211bf78fdb10ae01f0221c265b4c402abd2f42c589143a31ccf449616 +size 19703 diff --git a/test/Vandenberg_16.png b/test/Vandenberg_16.png new file mode 100644 index 0000000000000000000000000000000000000000..3dc611034cc668913004300cf387d43494ae4a05 --- /dev/null +++ b/test/Vandenberg_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34df6e64f261ab941044d00bcbf4af8c0f7978b4dcf4b04dd332068cb4cf2ea3 +size 19676 diff --git a/test/Vandenberg_17.png b/test/Vandenberg_17.png new file mode 100644 index 0000000000000000000000000000000000000000..0468dd07eb873d2a7de14b21e7ebc482e5ad504d --- /dev/null +++ b/test/Vandenberg_17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d1fdb8433ccc925c393149c9909d5c2dce469d17940cfc6c2f777bb4b4eebb0 +size 19873 diff --git a/test/Vandenberg_18.png b/test/Vandenberg_18.png new file mode 100644 index 0000000000000000000000000000000000000000..20c8f79b18492620e89281fc4f467fb0ae731169 --- /dev/null +++ b/test/Vandenberg_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f762f7fc8ae8b06650eb40ea43c4d8a02f21e55cb24ea6628fdaaffc3f9efb7 +size 18081 diff --git a/test/Vandenberg_19.png b/test/Vandenberg_19.png new file mode 100644 index 0000000000000000000000000000000000000000..5630381a1b6730a89f55a77b11fb3448c68c9775 --- /dev/null +++ b/test/Vandenberg_19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f4717a65da8b6a715018769002c8b215c97dd54150dad08f2910382ccea541 +size 17285 diff --git a/test/Vandenberg_2.png b/test/Vandenberg_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a6be84adecd3c9555a004b889b7292c455262ca6 --- /dev/null +++ b/test/Vandenberg_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a2330e2084b31f97770d1148e8a4c6b789a1a982666448c301f2394c1adb77 +size 22342 diff --git a/test/Vandenberg_20.png b/test/Vandenberg_20.png new file mode 100644 index 0000000000000000000000000000000000000000..28b229139d59b2d2d14e89222c329cb73b26f73f --- /dev/null +++ b/test/Vandenberg_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4bb3aa3763ccc0760161bee35967f4c8a944eff0035c72768d7267df83bf3f +size 18803 diff --git a/test/Vandenberg_21.png b/test/Vandenberg_21.png new file mode 100644 index 0000000000000000000000000000000000000000..32867549d1fb86a0c5d964caecb8a781d8db928d --- /dev/null +++ b/test/Vandenberg_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7f22efc8817aefadf49849f3398f72c73bcc5729a64781713eecb1394ab021 +size 17617 diff --git a/test/Vandenberg_22.png b/test/Vandenberg_22.png new file mode 100644 index 0000000000000000000000000000000000000000..d63fa9cbadec25a989922ce994cdac2907dfe5e3 --- /dev/null +++ b/test/Vandenberg_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e803bd6b754ebc7476f81311a8def3706c07090371f5c9a2c865b9108dc62fd +size 19980 diff --git a/test/Vandenberg_23.png b/test/Vandenberg_23.png new file mode 100644 index 0000000000000000000000000000000000000000..efcc27f6a300ead20512e1bd37b82eb84c89dc93 --- /dev/null +++ b/test/Vandenberg_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f96d8195e293e74753e4b4e1041e723acf297c418e73f4d74e1d718d294d22 +size 21849 diff --git a/test/Vandenberg_24.png b/test/Vandenberg_24.png new file mode 100644 index 0000000000000000000000000000000000000000..bc82808f33e491eace48314bcf386de4e2a9172c --- /dev/null +++ b/test/Vandenberg_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28ca69554c4594a0fc1034a041ea9508763cac6c9abbb9cfcaa6796758cf166 +size 20654 diff --git a/test/Vandenberg_3.png b/test/Vandenberg_3.png new file mode 100644 index 0000000000000000000000000000000000000000..223a5230c342910c3a845901a1630c0151a071b6 --- /dev/null +++ b/test/Vandenberg_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97edad0aa6815c886681c16735eef48400667bd38cdd0f164909131ff86a7e91 +size 20500 diff --git a/test/Vandenberg_4.png b/test/Vandenberg_4.png new file mode 100644 index 0000000000000000000000000000000000000000..292d6470cf94eb33172184326665f4dfba320986 --- /dev/null +++ b/test/Vandenberg_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2969021644fa7f4cfc15c2eb2270dd62131914cefb9419592bcc802f604a1257 +size 20356 diff --git a/test/Vandenberg_5.png b/test/Vandenberg_5.png new file mode 100644 index 0000000000000000000000000000000000000000..20fe008ded2db7965c9fa0fcfffddfabf81e4fd6 --- /dev/null +++ b/test/Vandenberg_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9419c083237c3f9832244814279e2891187dad9503c3042902be3d7c231c68fd +size 19094 diff --git a/test/Vandenberg_6.png b/test/Vandenberg_6.png new file mode 100644 index 0000000000000000000000000000000000000000..900482abaa5c1c3a9a0e82b5056553f6e8959ee3 --- /dev/null +++ b/test/Vandenberg_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dacb488ddc0f3dffecfccac9f8d8204bba00b29386c0399ddd26b94acd7855d3 +size 20180 diff --git a/test/Vandenberg_7.png b/test/Vandenberg_7.png new file mode 100644 index 0000000000000000000000000000000000000000..d79bf99d44376373797b5122df0c46cc102de622 --- /dev/null +++ b/test/Vandenberg_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787b5b1b9e3a8e526552f84c3e2c320aa11d01bbd86c7a863faa2dce8e8aec3f +size 19792 diff --git a/test/Vandenberg_8.png b/test/Vandenberg_8.png new file mode 100644 index 0000000000000000000000000000000000000000..c8db4a22427603c2d55156f1ac797b95f0490360 --- /dev/null +++ b/test/Vandenberg_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b6cfa9ba346793b3e84206d327dce2243a97c1a7d9f05a3e96e7169081b8e8 +size 19408 diff --git a/test/Vandenberg_9.png b/test/Vandenberg_9.png new file mode 100644 index 0000000000000000000000000000000000000000..318d36bb708739c2fab61942369d9a63347f4dcf --- /dev/null +++ b/test/Vandenberg_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa3c555d68ddd11e86f268294581e1152f9a7971094384bcf8445fff3dab1bd +size 19866 diff --git a/test/metadata.csv b/test/metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..23d51b86188fd9b38ee554392920db1132c86e73 --- /dev/null +++ b/test/metadata.csv @@ -0,0 +1,343 @@ +file_name,question_id,test_name,ability_category,prompt,answer +NCIT_1.png,NCIT_1,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",A +NCIT_2.png,NCIT_2,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",A +NCIT_3.png,NCIT_3,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",A +NCIT_4.png,NCIT_4,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",B +NCIT_5.png,NCIT_5,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",C +NCIT_6.png,NCIT_6,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",B +NCIT_7.png,NCIT_7,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",A +NCIT_8.png,NCIT_8,NCIT,Spatial Relation,"On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net.",A +NCIT_9.png,NCIT_9,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",A +NCIT_10.png,NCIT_10,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",A +NCIT_11.png,NCIT_11,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",B +NCIT_12.png,NCIT_12,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",A +NCIT_13.png,NCIT_13,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",C +NCIT_14.png,NCIT_14,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",A +NCIT_15.png,NCIT_15,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",A +NCIT_16.png,NCIT_16,NCIT,Spatial Relation,"Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element.",B +RCubeSR_1.png,RCubeSR_1,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_2.png,RCubeSR_2,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_3.png,RCubeSR_3,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_4.png,RCubeSR_4,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_5.png,RCubeSR_5,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_6.png,RCubeSR_6,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_7.png,RCubeSR_7,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_8.png,RCubeSR_8,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_9.png,RCubeSR_9,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_10.png,RCubeSR_10,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_11.png,RCubeSR_11,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_12.png,RCubeSR_12,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_13.png,RCubeSR_13,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_14.png,RCubeSR_14,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_15.png,RCubeSR_15,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_16.png,RCubeSR_16,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_17.png,RCubeSR_17,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_18.png,RCubeSR_18,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_19.png,RCubeSR_19,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_20.png,RCubeSR_20,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_21.png,RCubeSR_21,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_22.png,RCubeSR_22,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_23.png,RCubeSR_23,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_24.png,RCubeSR_24,RCubeSR,Spatial Relation,"The cubes have six different colors in each face, but you can see only three faces of each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_25.png,RCubeSR_25,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_26.png,RCubeSR_26,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_27.png,RCubeSR_27,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_28.png,RCubeSR_28,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_29.png,RCubeSR_29,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_30.png,RCubeSR_30,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_31.png,RCubeSR_31,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_32.png,RCubeSR_32,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_33.png,RCubeSR_33,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_34.png,RCubeSR_34,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_35.png,RCubeSR_35,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_36.png,RCubeSR_36,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_37.png,RCubeSR_37,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_38.png,RCubeSR_38,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_39.png,RCubeSR_39,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_40.png,RCubeSR_40,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_41.png,RCubeSR_41,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_42.png,RCubeSR_42,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_43.png,RCubeSR_43,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_44.png,RCubeSR_44,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_45.png,RCubeSR_45,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_46.png,RCubeSR_46,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",F +RCubeSR_47.png,RCubeSR_47,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +RCubeSR_48.png,RCubeSR_48,RCubeSR,Spatial Relation,"The cubes have six different colors and patterns in each face, but you can see only three faces in each cube. Whether the left cube can be transferred to the right one by turning or tilting it (True or False)? In doing so, a new face then becomes visible. Answer T for True and F for False.",T +DATSR_1.png,DATSR_1,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ABC +DATSR_2.png,DATSR_2,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",CE +DATSR_3.png,DATSR_3,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ACDE +DATSR_4.png,DATSR_4,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",CDE +DATSR_5.png,DATSR_5,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ABCDE +DATSR_6.png,DATSR_6,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AD +DATSR_7.png,DATSR_7,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",CDE +DATSR_8.png,DATSR_8,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",D +DATSR_9.png,DATSR_9,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ABCDE +DATSR_10.png,DATSR_10,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",B +DATSR_11.png,DATSR_11,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AC +DATSR_12.png,DATSR_12,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",C +DATSR_13.png,DATSR_13,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",CD +DATSR_14.png,DATSR_14,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AD +DATSR_15.png,DATSR_15,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ADE +DATSR_16.png,DATSR_16,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",BCD +DATSR_17.png,DATSR_17,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",BC +DATSR_18.png,DATSR_18,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",BDE +DATSR_19.png,DATSR_19,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",A +DATSR_20.png,DATSR_20,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AE +DATSR_21.png,DATSR_21,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AE +DATSR_22.png,DATSR_22,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AE +DATSR_23.png,DATSR_23,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AD +DATSR_24.png,DATSR_24,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ACE +DATSR_25.png,DATSR_25,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ABCD +DATSR_26.png,DATSR_26,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AD +DATSR_27.png,DATSR_27,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",BDE +DATSR_28.png,DATSR_28,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",D +DATSR_29.png,DATSR_29,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ACDE +DATSR_30.png,DATSR_30,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",DE +DATSR_31.png,DATSR_31,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",BCD +DATSR_32.png,DATSR_32,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AB +DATSR_33.png,DATSR_33,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ADE +DATSR_34.png,DATSR_34,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",AB +DATSR_35.png,DATSR_35,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",B +DATSR_36.png,DATSR_36,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ABD +DATSR_37.png,DATSR_37,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",BC +DATSR_38.png,DATSR_38,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",BCE +DATSR_39.png,DATSR_39,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",DE +DATSR_40.png,DATSR_40,DATSR,Spatial Relation,"On the left of this image is a pattern which can be folded into figures. To the right of the pattern there are five figures. You are to decide which of these figures can be made from the pattern. The pattern always shows the outside of the figure. The question is: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left?",ABCDE +MRMT.png,MRMT_1,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 1? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_2,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 2? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_3,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 3? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_4,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 4? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_5,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 5? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_6,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 6? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_7,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 7? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_8,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 8? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_9,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 9? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_10,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 10? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_11,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 11? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_12,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 12? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_13,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 13? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_14,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 14? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_15,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 15? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_16,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 16? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_17,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 17? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_18,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 18? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_19,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 19? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_20,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 20? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_21,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 21? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_22,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 22? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_23,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 23? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_24,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 24? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_25,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 25? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_26,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 26? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_27,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 27? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_28,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 28? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_29,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 29? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_30,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 30? Answer ""L"" for left and ""R"" for right.",L +MRMT.png,MRMT_31,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 31? Answer ""L"" for left and ""R"" for right.",R +MRMT.png,MRMT_32,MRMT,Spatial Orientation,"This picture shows a stylized city map. Imagine the dashed line is the route you walk through the city. As indicated by the number along the route, you take a total of 32 turns. What is the directions you take at the turn 32? Answer ""L"" for left and ""R"" for right.",R +LappanTest_1.png,LappanTest_1,LappanTest,Spatial Perception,Answer the question in the above of this picture.,A +LappanTest_2.png,LappanTest_2,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_3.png,LappanTest_3,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_4.png,LappanTest_4,LappanTest,Spatial Perception,Answer the question in the above of this picture.,E +LappanTest_5.png,LappanTest_5,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_6.png,LappanTest_6,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_7.png,LappanTest_7,LappanTest,Spatial Perception,Answer the question in the above of this picture.,B +LappanTest_8.png,LappanTest_8,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_9.png,LappanTest_9,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_10.png,LappanTest_10,LappanTest,Spatial Perception,Answer the question in the above of this picture.,B +LappanTest_11.png,LappanTest_11,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_12.png,LappanTest_12,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_13.png,LappanTest_13,LappanTest,Spatial Perception,Answer the question in the above of this picture.,B +LappanTest_14.png,LappanTest_14,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_15.png,LappanTest_15,LappanTest,Spatial Perception,Answer the question in the above of this picture.,B +LappanTest_16.png,LappanTest_16,LappanTest,Spatial Perception,Answer the question in the above of this picture.,A +LappanTest_17.png,LappanTest_17,LappanTest,Spatial Perception,Answer the question in the above of this picture.,E +LappanTest_18.png,LappanTest_18,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_19.png,LappanTest_19,LappanTest,Spatial Perception,Answer the question in the above of this picture.,A +LappanTest_20.png,LappanTest_20,LappanTest,Spatial Perception,Answer the question in the above of this picture.,E +LappanTest_21.png,LappanTest_21,LappanTest,Spatial Perception,Answer the question in the above of this picture.,C +LappanTest_22.png,LappanTest_22,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_23.png,LappanTest_23,LappanTest,Spatial Perception,Answer the question in the above of this picture.,E +LappanTest_24.png,LappanTest_24,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_25.png,LappanTest_25,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_26.png,LappanTest_26,LappanTest,Spatial Perception,Answer the question in the above of this picture.,A +LappanTest_27.png,LappanTest_27,LappanTest,Spatial Perception,Answer the question in the above of this picture.,B +LappanTest_28.png,LappanTest_28,LappanTest,Spatial Perception,Answer the question in the above of this picture.,A +LappanTest_29.png,LappanTest_29,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_30.png,LappanTest_30,LappanTest,Spatial Perception,Answer the question in the above of this picture.,D +LappanTest_31.png,LappanTest_31,LappanTest,Spatial Perception,Answer the question in the above of this picture.,E +LappanTest_32.png,LappanTest_32,LappanTest,Spatial Perception,Answer the question in the above of this picture.,E +PSVTR_1.png,PSVTR_1,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",B +PSVTR_2.png,PSVTR_2,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",A +PSVTR_3.png,PSVTR_3,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",A +PSVTR_4.png,PSVTR_4,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",D +PSVTR_5.png,PSVTR_5,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",B +PSVTR_6.png,PSVTR_6,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",C +PSVTR_7.png,PSVTR_7,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +PSVTR_8.png,PSVTR_8,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +PSVTR_9.png,PSVTR_9,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +PSVTR_10.png,PSVTR_10,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",D +PSVTR_11.png,PSVTR_11,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +PSVTR_12.png,PSVTR_12,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +PSVTR_13.png,PSVTR_13,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",B +PSVTR_14.png,PSVTR_14,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",D +PSVTR_15.png,PSVTR_15,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",C +PSVTR_16.png,PSVTR_16,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +PSVTR_17.png,PSVTR_17,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",A +PSVTR_18.png,PSVTR_18,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",A +PSVTR_19.png,PSVTR_19,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",B +PSVTR_20.png,PSVTR_20,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",B +PSVTR_21.png,PSVTR_21,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",A +PSVTR_22.png,PSVTR_22,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",D +PSVTR_23.png,PSVTR_23,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",D +PSVTR_24.png,PSVTR_24,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",C +PSVTR_25.png,PSVTR_25,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",D +PSVTR_26.png,PSVTR_26,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",C +PSVTR_27.png,PSVTR_27,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",B +PSVTR_28.png,PSVTR_28,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +PSVTR_29.png,PSVTR_29,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",C +PSVTR_30.png,PSVTR_30,PSVTR,Mental Rotation,"Look at this picture, you are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. Please answer.",E +Vandenberg_1.png,Vandenberg_1,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AC +Vandenberg_2.png,Vandenberg_2,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AD +Vandenberg_3.png,Vandenberg_3,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_4.png,Vandenberg_4,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BC +Vandenberg_5.png,Vandenberg_5,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AC +Vandenberg_6.png,Vandenberg_6,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AD +Vandenberg_7.png,Vandenberg_7,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_8.png,Vandenberg_8,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BC +Vandenberg_9.png,Vandenberg_9,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_10.png,Vandenberg_10,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AD +Vandenberg_11.png,Vandenberg_11,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",CD +Vandenberg_12.png,Vandenberg_12,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BC +Vandenberg_13.png,Vandenberg_13,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_14.png,Vandenberg_14,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_15.png,Vandenberg_15,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_16.png,Vandenberg_16,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AD +Vandenberg_17.png,Vandenberg_17,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_18.png,Vandenberg_18,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BC +Vandenberg_19.png,Vandenberg_19,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AC +Vandenberg_20.png,Vandenberg_20,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AD +Vandenberg_21.png,Vandenberg_21,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BD +Vandenberg_22.png,Vandenberg_22,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",BC +Vandenberg_23.png,Vandenberg_23,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AD +Vandenberg_24.png,Vandenberg_24,Vandenberg,Mental Rotation,"This is an image containing five smaller pictures. The top picture is the target, displaying an object. Your task is to identify which two of the four pictures below show objects that are identical to the target, but just rotated versions of it. Among the four pictures below, two are correct answers, and two are incorrect.",AC +SBSolidTest_1.png,SBSolidTest_1,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_2.png,SBSolidTest_2,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",D +SBSolidTest_3.png,SBSolidTest_3,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_4.png,SBSolidTest_4,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_5.png,SBSolidTest_5,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_6.png,SBSolidTest_6,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_7.png,SBSolidTest_7,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_8.png,SBSolidTest_8,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_9.png,SBSolidTest_9,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_10.png,SBSolidTest_10,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",D +SBSolidTest_11.png,SBSolidTest_11,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_12.png,SBSolidTest_12,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_13.png,SBSolidTest_13,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_14.png,SBSolidTest_14,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_15.png,SBSolidTest_15,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_16.png,SBSolidTest_16,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_17.png,SBSolidTest_17,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_18.png,SBSolidTest_18,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_19.png,SBSolidTest_19,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_20.png,SBSolidTest_20,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",D +SBSolidTest_21.png,SBSolidTest_21,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_22.png,SBSolidTest_22,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_23.png,SBSolidTest_23,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_24.png,SBSolidTest_24,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +SBSolidTest_25.png,SBSolidTest_25,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",D +SBSolidTest_26.png,SBSolidTest_26,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_27.png,SBSolidTest_27,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",A +SBSolidTest_28.png,SBSolidTest_28,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",D +SBSolidTest_29.png,SBSolidTest_29,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",C +SBSolidTest_30.png,SBSolidTest_30,SBSolidTest,Spatial Visualization,"Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. +Please answer.",B +RCubeVis_1.png,RCubeVis_1,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_2.png,RCubeVis_2,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_3.png,RCubeVis_3,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_4.png,RCubeVis_4,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_5.png,RCubeVis_5,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_6.png,RCubeVis_6,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_7.png,RCubeVis_7,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_8.png,RCubeVis_8,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_9.png,RCubeVis_9,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_10.png,RCubeVis_10,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_11.png,RCubeVis_11,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_12.png,RCubeVis_12,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_13.png,RCubeVis_13,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_14.png,RCubeVis_14,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_15.png,RCubeVis_15,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_16.png,RCubeVis_16,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_17.png,RCubeVis_17,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_18.png,RCubeVis_18,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_19.png,RCubeVis_19,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_20.png,RCubeVis_20,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating ONE elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_21.png,RCubeVis_21,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_22.png,RCubeVis_22,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_23.png,RCubeVis_23,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_24.png,RCubeVis_24,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_25.png,RCubeVis_25,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_26.png,RCubeVis_26,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_27.png,RCubeVis_27,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_28.png,RCubeVis_28,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_29.png,RCubeVis_29,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_30.png,RCubeVis_30,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_31.png,RCubeVis_31,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_32.png,RCubeVis_32,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_33.png,RCubeVis_33,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_34.png,RCubeVis_34,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_35.png,RCubeVis_35,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_36.png,RCubeVis_36,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_37.png,RCubeVis_37,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_38.png,RCubeVis_38,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_39.png,RCubeVis_39,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_40.png,RCubeVis_40,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO elements in parallel (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_41.png,RCubeVis_41,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_42.png,RCubeVis_42,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_43.png,RCubeVis_43,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_44.png,RCubeVis_44,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_45.png,RCubeVis_45,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_46.png,RCubeVis_46,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_47.png,RCubeVis_47,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_48.png,RCubeVis_48,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_49.png,RCubeVis_49,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_50.png,RCubeVis_50,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_51.png,RCubeVis_51,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_52.png,RCubeVis_52,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_53.png,RCubeVis_53,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_54.png,RCubeVis_54,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_55.png,RCubeVis_55,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_56.png,RCubeVis_56,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_57.png,RCubeVis_57,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_58.png,RCubeVis_58,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",F +RCubeVis_59.png,RCubeVis_59,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T +RCubeVis_60.png,RCubeVis_60,RCubeVis,Spatial Visualization,"The cubes have six different colors, but you may see fewer of them. Whether the left cube can be transformed into the right one by rotating TWO crossed elements (True or False)? In this process, one or more new colors may also become visible. Answer T for True and F for False.",T diff --git a/validation/DATSR_example_1.png b/validation/DATSR_example_1.png new file mode 100644 index 0000000000000000000000000000000000000000..32ad852ccff3facb342969c46e3e3a639d1bb102 --- /dev/null +++ b/validation/DATSR_example_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f81eb873db8b1a46c4822d4e07be2a83661415a1053d7d6ad14ed923ec1fdd +size 83963 diff --git a/validation/DATSR_example_2.png b/validation/DATSR_example_2.png new file mode 100644 index 0000000000000000000000000000000000000000..43337c3e75743d82326909492e30d82467e62a69 --- /dev/null +++ b/validation/DATSR_example_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c9da8a2c7969d43f77214f361db84b6f5aa6f42b827e2fe5ea73f024dc2eaa +size 136022 diff --git a/validation/LappanTest_example_1.png b/validation/LappanTest_example_1.png new file mode 100644 index 0000000000000000000000000000000000000000..d1b509fedcf2625b91a1529e4ab4e6141f551ada --- /dev/null +++ b/validation/LappanTest_example_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec43fb51c81fc625a08647bacad601f7a3e94f57edaf5db82cd6efaff468b673 +size 145698 diff --git a/validation/LappanTest_example_2.png b/validation/LappanTest_example_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a128c72caa7a65b676a284a6578ec783e50c3d21 --- /dev/null +++ b/validation/LappanTest_example_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a12672c9d6ccd7d6893bf4ec1e629d8dd307cc9d0b17e2ff04a68aaae109799 +size 125355 diff --git a/validation/NCIT_example_1.png b/validation/NCIT_example_1.png new file mode 100644 index 0000000000000000000000000000000000000000..062d3f61e6dda0a974274c4865d74fa35f192a41 --- /dev/null +++ b/validation/NCIT_example_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d622bf3df8ddc8059b6052c2e1de517e550e0e51c65edb36f21b46c79c56794a +size 105765 diff --git a/validation/NCIT_example_2.png b/validation/NCIT_example_2.png new file mode 100644 index 0000000000000000000000000000000000000000..211764d430741c56581f75d6665791eba3660d3e --- /dev/null +++ b/validation/NCIT_example_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cd1921d78ec53bf3fb464733d51fe24d143adc75aa684d859ab9eb706e0ee5 +size 97795 diff --git a/validation/PSVTR_example_1.png b/validation/PSVTR_example_1.png new file mode 100644 index 0000000000000000000000000000000000000000..8e2f96711d6fcddd0faf263fb16f8ebc855692fb --- /dev/null +++ b/validation/PSVTR_example_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2878b2fdf9fc93c9ae7a7e52006b8bf2c8f1d34b39a8067c386ffbf2723d135c +size 215298 diff --git a/validation/PSVTR_example_2.png b/validation/PSVTR_example_2.png new file mode 100644 index 0000000000000000000000000000000000000000..baaa41cd6e563fddbc5188728ab0cac0ec6d5561 --- /dev/null +++ b/validation/PSVTR_example_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8dc9b09adeb7c5e32af1e220aa34cf2bbcad22017061ab3bbc21c26ff0707b3 +size 141937 diff --git a/validation/RCubeSR_example_1.png b/validation/RCubeSR_example_1.png new file mode 100644 index 0000000000000000000000000000000000000000..a7da3dad361351129ed4128cf74791e7788ec778 --- /dev/null +++ b/validation/RCubeSR_example_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3ba917706914a43131c0124b7ff91ac90b2898f5e47ab84af626f96a982aea +size 159039 diff --git a/validation/RCubeSR_example_10.png b/validation/RCubeSR_example_10.png new file mode 100644 index 0000000000000000000000000000000000000000..15877fb6182a6ea355c8b245e29d687eaea76d57 --- /dev/null +++ b/validation/RCubeSR_example_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47c2891a94298d9e733ac455ae68f2798b387867d7a09135138a39b223f4c09 +size 158815 diff --git a/validation/RCubeSR_example_2.png b/validation/RCubeSR_example_2.png new file mode 100644 index 0000000000000000000000000000000000000000..0117e73e918e8850a219eca98914a984ce8e5748 --- /dev/null +++ b/validation/RCubeSR_example_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702778960d9832bb413de93457749f6e3136a1a8f64f42fd852bfb8dafa14a76 +size 163720 diff --git a/validation/RCubeSR_example_3.png b/validation/RCubeSR_example_3.png new file mode 100644 index 0000000000000000000000000000000000000000..f092ff250dfe5fbfdfd5a8c28bf7a1c0cb4d0286 --- /dev/null +++ b/validation/RCubeSR_example_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58954332b063128cd67e61c70ecdcdefd3825251a8c29796fad2c911ce9e9f9 +size 169669 diff --git a/validation/RCubeSR_example_4.png b/validation/RCubeSR_example_4.png new file mode 100644 index 0000000000000000000000000000000000000000..4c7d42b78e9dd547d99f0a22bedcc421693c0cfe --- /dev/null +++ b/validation/RCubeSR_example_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7db19e267b262d422a731d1fe814fcc365e7cbd0d8567f834c94020be548adf +size 159371 diff --git a/validation/RCubeSR_example_5.png b/validation/RCubeSR_example_5.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e3d0c37c81e87fb39c38adefcc64b370b7d2a8 --- /dev/null +++ b/validation/RCubeSR_example_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98364496623f8d5eec3624be9424044accbbb9b97b6aed5305f5b6d90dbe8d8 +size 175109 diff --git a/validation/RCubeSR_example_6.png b/validation/RCubeSR_example_6.png new file mode 100644 index 0000000000000000000000000000000000000000..aab0016cfa1e4fb2c470400d98de4f5af6ce4e54 --- /dev/null +++ b/validation/RCubeSR_example_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4e0bfed1e50115137856d96c7ab6343567119204f7e8b69ca9ca018a176846 +size 147168 diff --git a/validation/RCubeSR_example_7.png b/validation/RCubeSR_example_7.png new file mode 100644 index 0000000000000000000000000000000000000000..7bbde9ac24e1265e82b321548b36436274426937 --- /dev/null +++ b/validation/RCubeSR_example_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa32aab8384ceed76a5044d73dd856898cac4139fedb2da4dcc0fdc9f183c677 +size 167082 diff --git a/validation/RCubeSR_example_8.png b/validation/RCubeSR_example_8.png new file mode 100644 index 0000000000000000000000000000000000000000..21b9b0eb29a2dce8f218cfcb6f74a8ffd5087c5a --- /dev/null +++ b/validation/RCubeSR_example_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a64b7bffd2fdeb2032869f4967f1aef9f5fe25e3ad0f7c5e0d748def45122c4 +size 168902 diff --git a/validation/RCubeSR_example_9.png b/validation/RCubeSR_example_9.png new file mode 100644 index 0000000000000000000000000000000000000000..9b073e515015f9cc80a5cb9c2b26ef0d505b4457 --- /dev/null +++ b/validation/RCubeSR_example_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df231f35bc4f50757a5454b195533e42305234b527e5cfe393833c15b45a9a21 +size 165865 diff --git a/validation/RCubeVis_example_1.png b/validation/RCubeVis_example_1.png new file mode 100644 index 0000000000000000000000000000000000000000..a7da3dad361351129ed4128cf74791e7788ec778 --- /dev/null +++ b/validation/RCubeVis_example_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3ba917706914a43131c0124b7ff91ac90b2898f5e47ab84af626f96a982aea +size 159039 diff --git a/validation/RCubeVis_example_10.png b/validation/RCubeVis_example_10.png new file mode 100644 index 0000000000000000000000000000000000000000..a80d1bbdcf85b457de0f403bc173bc66234e3ae0 --- /dev/null +++ b/validation/RCubeVis_example_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f311d59047dd3ca74982834fe6a912f87bd9280e4a02a07dab61f92f90570a49 +size 176147 diff --git a/validation/RCubeVis_example_11.png b/validation/RCubeVis_example_11.png new file mode 100644 index 0000000000000000000000000000000000000000..06dd823ffa96a0cbe2e36d6995c61b6eafaac156 --- /dev/null +++ b/validation/RCubeVis_example_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ad6db03e16fbedc310a1c391ec72168dcf4ffb2b7b17ecc6f76bcf6e128eef +size 161029 diff --git a/validation/RCubeVis_example_12.png b/validation/RCubeVis_example_12.png new file mode 100644 index 0000000000000000000000000000000000000000..381fd19e12a48276c64bd55311a79dde0e29ae1b --- /dev/null +++ b/validation/RCubeVis_example_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770c3f5dc7c4bad7494f55054690e7408a23a6d103e2a603709c2c5a87051975 +size 178213 diff --git a/validation/RCubeVis_example_13.png b/validation/RCubeVis_example_13.png new file mode 100644 index 0000000000000000000000000000000000000000..4dbb5445843c0a1fa75bdf31da44493575a1c813 --- /dev/null +++ b/validation/RCubeVis_example_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca6e14d6415ffed17d3549f420c44721338f369afacca1719575d8be4f018ab8 +size 166473 diff --git a/validation/RCubeVis_example_2.png b/validation/RCubeVis_example_2.png new file mode 100644 index 0000000000000000000000000000000000000000..d93bc9854bf1ab3cdb943d8afe1555091872f148 --- /dev/null +++ b/validation/RCubeVis_example_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36af05e9a3a6093ce1d5154df9ab88c571b804b8e269fc626e33957bbcaf617b +size 173248 diff --git a/validation/RCubeVis_example_3.png b/validation/RCubeVis_example_3.png new file mode 100644 index 0000000000000000000000000000000000000000..3fccd9f0b14ec583accba3162a1c6d2cd9befb88 --- /dev/null +++ b/validation/RCubeVis_example_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76504b8dde3d833df4d51c57b65f6c3b255a499bb1362a016ed66a40c007b81f +size 158081 diff --git a/validation/RCubeVis_example_4.png b/validation/RCubeVis_example_4.png new file mode 100644 index 0000000000000000000000000000000000000000..a7970d0b60b0aa5929abc66a6a1cef0131a70702 --- /dev/null +++ b/validation/RCubeVis_example_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05260140fa8dcfa1007eea888bba54a9358954c1dcb525bb3a443e1ef587cb7 +size 134198 diff --git a/validation/RCubeVis_example_5.png b/validation/RCubeVis_example_5.png new file mode 100644 index 0000000000000000000000000000000000000000..239d309634600aec3e865839837e18e05f6dd3e2 --- /dev/null +++ b/validation/RCubeVis_example_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197f20762add0c4202e180b9f20e9ccb92b9373f25f8d9e17e92278b1f23e2aa +size 144749 diff --git a/validation/RCubeVis_example_6.png b/validation/RCubeVis_example_6.png new file mode 100644 index 0000000000000000000000000000000000000000..c5c6d4d7102646cffe5b50dc96e80ca71f2eafbc --- /dev/null +++ b/validation/RCubeVis_example_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f133b42dfdfcd1be2567e7c8844809907268279b3f826723989a4db4b4b21f +size 175889 diff --git a/validation/RCubeVis_example_7.png b/validation/RCubeVis_example_7.png new file mode 100644 index 0000000000000000000000000000000000000000..a3bb683ec50f173abf5c9b40ae187610796509c2 --- /dev/null +++ b/validation/RCubeVis_example_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f106a80c0b3f440b38c47bba3a0bc700be3d6f9ca98d831e6de4065a01a2fb +size 162726 diff --git a/validation/RCubeVis_example_8.png b/validation/RCubeVis_example_8.png new file mode 100644 index 0000000000000000000000000000000000000000..07883e0a282114c081d2401d6c9a026982171d65 --- /dev/null +++ b/validation/RCubeVis_example_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb88d44b46ad395fa5c87dd7e36eb2b5507478bb921ae245b8e1c26315927377 +size 132809 diff --git a/validation/RCubeVis_example_9.png b/validation/RCubeVis_example_9.png new file mode 100644 index 0000000000000000000000000000000000000000..9e6686f0459e563545ed6a5c3b425be8adaefdb4 --- /dev/null +++ b/validation/RCubeVis_example_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3cb4a9e83a5d2b159332cec1e7deb31132c896e217f341d6a058f8d77303d42 +size 133488 diff --git a/validation/SBSolidTest_example_1.png b/validation/SBSolidTest_example_1.png new file mode 100644 index 0000000000000000000000000000000000000000..5fbe682f7bf08653c30ec2564c3ca0a96c41afc2 --- /dev/null +++ b/validation/SBSolidTest_example_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e60be5df4db9ada349b526b2ec60f157ac43ee784df64114351d7b76da44393 +size 261319 diff --git a/validation/SBSolidTest_example_2.png b/validation/SBSolidTest_example_2.png new file mode 100644 index 0000000000000000000000000000000000000000..7424dfbc7ebb6669f68b8fe5ce9fe656fac3d3cf --- /dev/null +++ b/validation/SBSolidTest_example_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f39d7f3b9fd08d7a8f7e88c3ddbd8ed289157ee38b366030cf23e7ced905fa5 +size 270095 diff --git a/validation/SBSolidTest_example_3.png b/validation/SBSolidTest_example_3.png new file mode 100644 index 0000000000000000000000000000000000000000..ea9038bcc87cd2887d93fd56e4231eb03ad3c164 --- /dev/null +++ b/validation/SBSolidTest_example_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e09c5b4fcffa32675cd5b25d5e92d86ad83423d4976907c352c50a604bfc76 +size 238656 diff --git a/validation/SBSolidTest_example_4.png b/validation/SBSolidTest_example_4.png new file mode 100644 index 0000000000000000000000000000000000000000..35249f21cd144f65d8b6115dd8448bb51d27563f --- /dev/null +++ b/validation/SBSolidTest_example_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9431774cf096bf54c878ecb7e93fd4a85fb6f01bc9691ed90d3ee0a1985d15 +size 318309 diff --git a/validation/SBSolidTest_example_5.png b/validation/SBSolidTest_example_5.png new file mode 100644 index 0000000000000000000000000000000000000000..bb3c530a01707ce1da8246f61e6725c1ac95449d --- /dev/null +++ b/validation/SBSolidTest_example_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9835f708dbf292cdced8e34a219d14421bafa68993f85027514355e11957796 +size 189005 diff --git a/validation/SBSolidTest_example_6.png b/validation/SBSolidTest_example_6.png new file mode 100644 index 0000000000000000000000000000000000000000..d9e482173d5c5bd1ab2b7ac5805dafd05077bff9 --- /dev/null +++ b/validation/SBSolidTest_example_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe0e0d1d98c9f14ef5a017aefa6c70658ec25ed55d425e5c3bfda1c8c66cf21 +size 182119 diff --git a/validation/metadata.csv b/validation/metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..3cf604b98bb86cddff9087ee41c6d53a2d833715 --- /dev/null +++ b/validation/metadata.csv @@ -0,0 +1,38 @@ +file_name,question_id,test_name,ability_category,prompt,answer +NCIT_example_1.png,NCIT_example_1,NCIT,Spatial Relation,"You are taking a spatial ability test. You will be asked questions like: ""On the basis of the spatial element and the entered cut line, please indicate the correct solution of development (a flat net). The cut line determines how to observe the element and determines the front wall of the spatial element. The front wall is always located as the first on the left side in the net."" This is an example for this question. Stages of unfolding a spatial element into the form of a flat net is illustrated in the example picture.",This is for few-shot. +NCIT_example_2.png,NCIT_example_2,NCIT,Spatial Relation,"You are taking a spatial ability test. You will be asked questions like: ""Indicate, based on the net and the introduced cut line, the correct solution for the spatial element. The cut line determines the front wall for the spatial element."" This is an example for this question. The example picture is illustrated the stages of net folding.",This is for few-shot. +RCubeSR_example_1.png,RCubeSR_example_1,RCubeSR,Spatial Relation,"You are taking a spatial ability test. You will be shown several pairs of cubes. These cubes have six different colors, but you will see only three of them. In each task, you have to decide whether the left cube can be transferred to the right one by turning or tilting it. In doing so, a new color then becomes visible. The test is divided into two blocks. In each block, 24 questions will be presented in succession. Before it starts, there will be a training phase where you can practice and get feedback. Other instructions are provided in the images.",This is for few-shot. +RCubeSR_example_2.png,RCubeSR_example_2,RCubeSR,Spatial Relation,The training phase for block 1 begins. You have the opportunity to see if you have understood everything in four tasks. For each task you will see whether your answer was correct or incorrect. This is Sample Task 1. Please answer whether the left cube can be transferred to the right one by turning or tilting it. The correct answer is False. It is NOT possible to transfer the left cube into the right cube.,This is for few-shot. +RCubeSR_example_3.png,RCubeSR_example_3,RCubeSR,Spatial Relation,"This is Sample Task 2. Please answer whether the left cube can be transferred to the right one by turning or tilting it. The correct answer is True. If you tilts the whole cube from the top to the right, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeSR_example_4.png,RCubeSR_example_4,RCubeSR,Spatial Relation,This is Sample Task 3. Please answer whether the left cube can be transferred to the right one by turning or tilting it. The correct answer is False. It is NOT possible to transfer the left cube into the right cube.,This is for few-shot. +RCubeSR_example_5.png,RCubeSR_example_5,RCubeSR,Spatial Relation,"This is Sample Task 4. Please answer whether the left cube can be transferred to the right one by turning or tilting it. The correct answer is True. If you turn the whole cube from right to left, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeSR_example_6.png,RCubeSR_example_6,RCubeSR,Spatial Relation,"The instructions for block 1 is now completed. In block 2 your task is the same as before. You have to decide whether it is possible to transfer the left cube into the right cube by turning or tilting it. However, now, the pairs of cubes have sides with patterns. Other instructions are provided in the images.",This is for few-shot. +RCubeSR_example_7.png,RCubeSR_example_7,RCubeSR,Spatial Relation,The training phase for block 2 begins. You have the opportunity to see if you have understood everything in four tasks. For each task you will see whether your answer was correct or incorrect. This is Sample Task 1. Please answer whether the left cube can be transferred to the right one by turning or tilting it. The correct answer is False.,This is for few-shot. +RCubeSR_example_8.png,RCubeSR_example_8,RCubeSR,Spatial Relation,"This is Sample Task 2. Please answer whether the left cube can be transferred to the right one by turning or tilting it. The correct answer is True. If you turn the whole cube from right to left, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeSR_example_9.png,RCubeSR_example_9,RCubeSR,Spatial Relation,This is Sample Task 3. Please answer whether the left cube can be transferred to the right one by turning or tilting it. The correct answer is False.,This is for few-shot. +RCubeSR_example_10.png,RCubeSR_example_10,RCubeSR,Spatial Relation,"Now look at the Sample Task 4. The correct answer is True. If you turn the whole cube from left to right, then it is possible to transform the left cube into the right cube.",This is for few-shot. +DATSR_example_1.png,DATSR_example_1,RCubeSR,Spatial Relation,"You are taking a spatial ability test. This test consists of 40 questions. On the left of each question image is a pattern which can be folded into figures. To the right of each pattern there are five figures. You are to decide which of these figures can be made from the pattern shown. The pattern always shows the outside of the figure. Here is an example: Which of these five figures—A, B, C, D, E—can be made from the pattern at the left? The correct answer is: A and B certainly cannot be made; they are not the right shape. C and D is correct both in shape and size. You cannot make E from this pattern. So the right answers are CD. Remember: 1. In this test there will always be a row of five figures following each pattern. 2. In every row there is at least one correct figure. 3. Usually more than one is correct. In facts, in some cases, all five may be correct.",This is for few-shot. +DATSR_example_2.png,DATSR_example_2,RCubeSR,Spatial Relation,"This is another example, Example Y, and the five choices for it. Note that when the pattern is folded, the figure must have two gray surfaces. One of these is a large surface which could be either the top or bottom of a box. The other is a small surface which would be one end of the box. In Example Y, all the boxes made from this pattern are correct in shape, but the sides which you see are different. Some of these figures can be made from this pattern while others cannot. Let us look at them: Figure A is correct. If the large gray surface is shown as the top, then the end surface of gray can be shown facing towards you. Figure B is wrong. The long, narrow side is not gray in the pattern. Figure C is correct. The two gray surfaces can both be hidden by placing the large gray surface at the bottom and the gray end to the back. Figure D is wrong. The gray end is all right, but there is no long gray side in the pattern. Figure E is correct. One can show the box so that the large gray surface is at the bottom (as it was in C), but with the gray end showing at the front. So, you see, there are three figures (A, C and E) which can be made from the pattern in Example Y, and two figures (B and D) which cannot be made from this pattern. Remember that the surface you see in the pattern must always be the OUTSIDE surface of the completed figure.",This is for few-shot. +LappanTest_example_1.png,LappanTest_example_1,LappanTest,Spatial Perception,"You are taking a spatial ability test. The test consists of 32 questions. Before we start, you need to look at two example questions. This is Example Question 1: The image above presents a TOP view of a structure composed of stacked cubes, with the numbers indicating the quantity of cubes in each stack. From which direction is this structure observed to create the 3D view below (The orientation is already marked on the TOPview above)? The right answer is D.",This is for few-shot. +LappanTest_example_2.png,LappanTest_example_2,LappanTest,Spatial Perception,This is Example Question 2: Which of the following views is obtained from the front of the given structure? The right answer is A.,This is for few-shot. +PSVTR_example_1.png,PSVTR_example_1,PSVTR,Mental Rotation,"You are taking a spatial ability test. This test consists of 30 questions designed to see how well you can visualize the rotation of three-dimensional objects. This is an example of the type of question in the test. You are to: 1. study how the object in the top line of the question is rotated; 2. picture in your mind what the object shown in the middle line or the question looks like when rotated in exactly the same manner; 3. select from among the five drawings (A, B, C, D, or E) given in the bottom line of the question the one that looks like the object rotated in the correct position. What is the correct answer to the example question? Answers A, B, C, and E are wrong. Only drawing D looks like the object rotated according to the given rotation, Remember that each question has only one correct answer.",This is for few-shot. +PSVTR_example_2.png,PSVTR_example_2,PSVTR,Mental Rotation,Now look at the next example and try to select the drawing that looks like the object in the correct position when the given rotation is applied. Notice that the given rotation in this example is more complex. The correct answer for this example is B.,This is for few-shot. +SBSolidTest_example_1.png,SBSolidTest_example_1,SBSolidTest,Spatial Visualization,"You are taking a spatial ability test. This test consists of 30 questions about cross-sections. A cross-section is the 2D shape that results when a cutting plane intersects an object. There are many examples of cross-sections in everyday life. For example, when you slice an apple from top to bottom, the resulting cut surface is a cross-section of the apple. This picture shows an apple with some worms inside. Note that the cross section on the right shows both the apple and the shapes and locations of the sliced worms inside the apple.",This is for few-shot. +SBSolidTest_example_2.png,SBSolidTest_example_2,SBSolidTest,Spatial Visualization,"In this multiple choice test, you will be asked to identify the cross sections of three types of figures as shown in this picture. Here are some important things to remember: 1. All figures are solid (not hollow) objects. 2. The objects are about 6-8 inches tall. Imagine that they are on the table in front of you. 3. Attached figures are ""glued together"" at their edges. 4. Nested objects consist of one object inside another. In the nested object above, the cylinder extends all the way through the cube. If you sliced this figure, you would see the cylinder inside the cube.",This is for few-shot. +SBSolidTest_example_3.png,SBSolidTest_example_3,SBSolidTest,Spatial Visualization,"The cutting planes, shown in grey, will have different orientations, as shown in this picture.",This is for few-shot. +SBSolidTest_example_4.png,SBSolidTest_example_4,SBSolidTest,Spatial Visualization,"You will see three types of cutting planes: horizontal, vertical, and oblique. For each type of cutting plane, try to imagine the cross section that would result if you faced the cutting plane head-on, as if you were looking at your reflection in a mirror, as shown in this picture.",This is for few-shot. +SBSolidTest_example_5.png,SBSolidTest_example_5,SBSolidTest,Spatial Visualization,"You should also assume that the objects are 6-8 inches tall, and that they are sitting on the desk in front of you. In the example below, the cutting plane would produce the cross section on the right, as shown in this picture.",This is for few-shot. +SBSolidTest_example_6.png,SBSolidTest_example_6,SBSolidTest,Spatial Visualization,"Now you need to do a sample question shown in this picture. Select from among the four answers (A, B, C, or D) given in the bottom line of the picture the cross-section that you would see when the grey cutting plane slices the object. Imagine that you are facing the cutting plane head-on, as if you were looking in a mirror. Make your choice based on the shapes of the possible answers, not their sizes. Answers A, B, and D are wrong. Only C looks like the cross-section that you would see when the grey cutting plane slices the object. Remember that each question has only one correct answer.",This is for few-shot. +RCubeVis_example_1.png,RCubeVis_example_1,RCubeVis,Spatial Visualization,"You are taking a spatial ability test. You will be shown several pairs of cubes. These cubes have six different colors, but you may see fewer of them. These pairs consist of either 3-cubes or 4-cubes. In each question you always have to decide whether the left cube can be transformed into the right one by rotating elements. In this process, one or more new colors may also become visible. There will be 3 blocks with different tasks. In the first block, only one element is rotated. In the second block, two elements are rotated in parallel. In the third block, two elements are rotated that cross each other. This is a training phase, where you can practice the upcoming tasks and will receive feedback. Other instructions are provided in the images.",This is for few-shot. +RCubeVis_example_2.png,RCubeVis_example_2,RCubeVis,Spatial Visualization,"In Block 1, there will be shown 3- and 4- cubes with ONE rotated element. Now, you have the opportunity to see whether you have understood the task with four sample tasks for the Block 1. This is Sample Task 1. Please answer whether the left cube can be transformed into the right one by rotating ONE element. The correct answer is True. If you turn the second right column from left to top, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeVis_example_3.png,RCubeVis_example_3,RCubeVis,Spatial Visualization,This is the Sample Task 2. The correct answer is False. It is NOT possible to transform the left cube into the right cube.,This is for few-shot. +RCubeVis_example_4.png,RCubeVis_example_4,RCubeVis,Spatial Visualization,This is the Sample Task 3. The correct answer is False. It is NOT possible to transform the left cube into the right cube. The correct answer is False. It is NOT possible to transform the left cube into the right cube.,This is for few-shot. +RCubeVis_example_5.png,RCubeVis_example_5,RCubeVis,Spatial Visualization,"This is the Sample Task 4. The correct answer is True. If you turn the middle column from top to left, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeVis_example_6.png,RCubeVis_example_6,RCubeVis,Spatial Visualization,"In Block 2, there will be shown 3- and 4- cubes with TWO rotated elements in parallel. Now, you have the opportunity to see whether you have understood the task with four sample tasks for the Block 2. This is Sample Task 1. Please answer whether the left cube can be transformed into the right one by rotating TWO elements in parallel. The correct answer is False. It is NOT possible to transform the left cube into the right cube by rotating TWO elements in parallel.",This is for few-shot. +RCubeVis_example_7.png,RCubeVis_example_7,RCubeVis,Spatial Visualization,"This is the Sample Task 2. The correct answer is True. If you turn the second left column from top to right, then the second right column from right to top, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeVis_example_8.png,RCubeVis_example_8,RCubeVis,Spatial Visualization,"This is the Sample Task 3. The correct answer is True. If you turn the top row from left to right, then the bottom row from right to left, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeVis_example_9.png,RCubeVis_example_9,RCubeVis,Spatial Visualization,This is the Sample Task 4. The correct answer is False. It is NOT possible to transform the left cube into the right cube by rotating TWO elements in parallel.,This is for few-shot. +RCubeVis_example_10.png,RCubeVis_example_10,RCubeVis,Spatial Visualization,"In Block 3, there will be shown 4- cubes with TWO crossed rotated elements. Now, you have the opportunity to see whether you have understood the task with four sample tasks for the Block 3. This is Sample Task 1. Please answer whether the left cube can be transformed into the right one by rotating TWO crossed elements. The correct answer is False. It is NOT possible to transform the left cube into the right cube by rotating TWO crossed elements.",This is for few-shot. +RCubeVis_example_11.png,RCubeVis_example_11,RCubeVis,Spatial Visualization,"This is the Sample Task 2. The correct answer is True. If you turn the bottom row from right to left, then the second left column from left to top, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeVis_example_12.png,RCubeVis_example_12,RCubeVis,Spatial Visualization,"This is the Sample Task 3. The correct answer is True. If you turn the first left column from top to left, then the second top row from right to let, then it is possible to transform the left cube into the right cube.",This is for few-shot. +RCubeVis_example_13.png,RCubeVis_example_13,RCubeVis,Spatial Visualization,This is the Sample Task 4. The correct answer is False. It is NOT possible to transform the left cube into the right cube by rotating TWO crossed elements.,This is for few-shot.