id
stringlengths
2
115
author
stringlengths
2
42
last_modified
timestamp[us, tz=UTC]
downloads
int64
0
8.87M
likes
int64
0
3.84k
paperswithcode_id
stringlengths
2
45
tags
list
lastModified
timestamp[us, tz=UTC]
createdAt
stringlengths
24
24
key
stringclasses
1 value
created
timestamp[us]
card
stringlengths
1
1.01M
embedding
list
library_name
stringclasses
21 values
pipeline_tag
stringclasses
27 values
mask_token
null
card_data
null
widget_data
null
model_index
null
config
null
transformers_info
null
spaces
null
safetensors
null
transformersInfo
null
modelId
stringlengths
5
111
embeddings
list
Back-up/test_ds_v3
Back-up
2023-11-14T14:57:49Z
0
0
null
[ "region:us" ]
2023-11-14T14:57:49Z
2023-11-14T14:57:46.000Z
2023-11-14T14:57:46
--- configs: - config_name: default data_files: - split: train path: data/train-* dataset_info: features: - name: id dtype: string - name: title dtype: string - name: context dtype: string - name: question dtype: string - name: response struct: - name: response dtype: string - name: answers struct: - name: answer_start sequence: int64 - name: text sequence: string - name: instruction dtype: string - name: prompt_name dtype: string - name: metadata struct: - name: max_ratio dtype: float64 - name: paragraph_similar dtype: string - name: start_index dtype: int64 splits: - name: train num_bytes: 21511788 num_examples: 7597 download_size: 8245485 dataset_size: 21511788 --- # Dataset Card for "test_ds_v3" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6591946482658386, -0.24136383831501007, 0.41192033886909485, 0.1468360722064972, -0.16635486483573914, -0.17036056518554688, 0.550854504108429, -0.12021468579769135, 0.7197896838188171, 0.5696881413459778, -0.9144682288169861, -0.733957827091217, -0.5800815224647522, -0.0240798983722925...
null
null
null
null
null
null
null
null
null
null
null
null
null
NomeIncrivel/Phineas
NomeIncrivel
2023-11-14T15:13:26Z
0
0
null
[ "license:openrail", "region:us" ]
2023-11-14T15:13:26Z
2023-11-14T15:12:30.000Z
2023-11-14T15:12:30
--- license: openrail ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.0478255338966846...
null
null
null
null
null
null
null
null
null
null
null
null
null
Sherinpatel5/Embeddings
Sherinpatel5
2023-11-14T15:13:21Z
0
0
null
[ "region:us" ]
2023-11-14T15:13:21Z
2023-11-14T15:12:55.000Z
2023-11-14T15:12:55
Entry not found
[ -0.3227645754814148, -0.22568479180335999, 0.8622263669967651, 0.43461522459983826, -0.52829909324646, 0.7012971639633179, 0.7915719747543335, 0.07618614286184311, 0.774603009223938, 0.2563217282295227, -0.7852813005447388, -0.22573819756507874, -0.9104475975036621, 0.5715674161911011, -...
null
null
null
null
null
null
null
null
null
null
null
null
null
scherrmann/adhoc_quad
scherrmann
2023-11-16T09:24:41Z
0
0
null
[ "arxiv:2311.08793", "region:us" ]
2023-11-16T09:24:41Z
2023-11-14T15:13:31.000Z
2023-11-14T15:13:31
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: validation path: data/validation-* dataset_info: features: - name: id dtype: string - name: context dtype: string - name: question dtype: string - name: answers sequence: - name: text dtype: string - name: answer_start dtype: int32 splits: - name: train num_bytes: 10365360 num_examples: 6659 - name: validation num_bytes: 1157605 num_examples: 748 download_size: 3088466 dataset_size: 11522965 --- # Dataset Card for "adhoc_quad" ## Dataset Summary The German Ad-Hoc Question Answering Dataset (AdHocQuAD) is a reading comprehension dataset for German financial texts. It is a machine generated dataset, where ChatGPT (Version 3.5) is used to ask questions on a set of German Ad-Hoc announcements. The answer to every question is a segment of text, or span, from the corresponding reading passage. ## Supported Tasks and Leaderboards extractive-qa, closed-domain-qa, open-domain-qa, text-retrieval: This dataset is intended to be used for open-domain-qa, but can also be used for information retrieval tasks. ## Languages The texts in the dataset are in German (de). # Dataset Structure ## Data Instances A sample from the training set is provided below: { "context": "This is a test context with eight words.", "id": "1", "question": "How many words contains the context?", "answers": { "answer_start": [28], "text": ["eight"] } } ## Data Fields id: a string feature. context: a string feature. question: a string feature. answers: a dictionary feature containing: text: a string feature. answer_start: a int32 feature. # Additional Information ## Details on the Generation of the Ad-Hoc QuAD Database To construct the ad-hoc QuAD database, I use 9,132 German ad-hoc announcements as context strings. Announcements exceeding 15 sentences are truncated to ensure compatibility with BERT's input limitations in subsequent applications. After that, there is a need to identify questions and appropriate answers that reference the given ad-hoc announcements. Given that manual generation of questions and answers is both resource-intensive and time-consuming, I employ the OpenAI's ChatGPT model (gpt-3.5-turbo). In a first step, I ask ChatGPT to generate three suitable questions for a given announcement. The prompt looks as follows: Create three questions for the following text. It should be possible to answer the question with a substring of the input text. The questions should ask for different aspects of the input. The questions should be in German. Text: <<context>> Question: In the pursuit of creating an extractive QuAD task, it is imperative to instruct the model such that every question can be answered using a substring from the provided announcement. This strategy aims to prevent the model from generating open-ended questions or those requiring external knowledge not present in the announcement. Additionally, the model is directed to address various aspects of the announcement to minimize question redundancy. Notably, despite the context strings being in German, ChatGPT occasionally formulates questions in English. To counteract this, explicit instructions are given to ensure questions are posed in German. Employing this methodology yields 9,132 unique context-question pairs. In a second step, I use ChatGPT again to extract the substring that answers to question to a specific context string. The respective prompt is given by: You have given a text and a question to that text. Find the answer as a substring of the input text. It is crucial that the answer is contained exactly as a substring in the input text, even if this implies that the answer is not a full sentence. Example: Text: 'Herr Müller ist 37 Jahre alt.' Question: 'Wie alt ist Herr Müller?' Answer: '37 Jahre' Text: <<context>> Question: <<question>> Answer: Evaluations of the method of extracting substrings from a specified context to answer a posed question via ChatGPT indicated a recurrent issue: ChatGPT frequently transformed the substring into a complete sentence, thereby compromising the extractive nature of the resultant database. Emphasizing the necessity for extractive answers, coupled with a demonstrative example, markedly enhanced the outcomes. However, of the responses generated by ChatGPT, 1,725 are not given as substrings of the context, leading to a final ad-hoc QuAD database size of 7,407. The code for creating the dataset can be found [here](https://github.com/FinTexIFB/AdHocQuAD). ## Dataset Curators The dataset was created by Moritz Scherrmann using ChatGPT 3.5 turbo ## Citation Information @misc{scherrmann2023german, title={German FinBERT: A German Pre-trained Language Model}, author={Moritz Scherrmann}, year={2023}, eprint={2311.08793}, archivePrefix={arXiv}, primaryClass={cs.CL} }
[ -0.6528488397598267, -1.3483771085739136, 0.20029203593730927, -0.15002328157424927, -0.34447088837623596, -0.15006160736083984, -0.08140237629413605, -0.44790270924568176, -0.04172268882393837, 0.2925701141357422, -0.6068993806838989, -0.5235095620155334, -0.35105231404304504, -0.05119470...
null
null
null
null
null
null
null
null
null
null
null
null
null
NomeIncrivel/Tivo-stan
NomeIncrivel
2023-11-14T15:22:36Z
0
0
null
[ "license:openrail", "region:us" ]
2023-11-14T15:22:36Z
2023-11-14T15:21:38.000Z
2023-11-14T15:21:38
--- license: openrail ---
[ -0.12853392958641052, -0.18616779148578644, 0.6529127955436707, 0.49436280131340027, -0.19319361448287964, 0.23607419431209564, 0.36072003841400146, 0.050563063472509384, 0.579365611076355, 0.7400140762329102, -0.6508104205131531, -0.23783954977989197, -0.7102249264717102, -0.0478260256350...
null
null
null
null
null
null
null
null
null
null
null
null
null
khelverskovp/Chemistry2e_embeddings
khelverskovp
2023-11-14T15:26:25Z
0
0
null
[ "license:mit", "region:us" ]
2023-11-14T15:26:25Z
2023-11-14T15:25:09.000Z
2023-11-14T15:25:09
--- license: mit ---
[ -0.12853392958641052, -0.18616779148578644, 0.6529127955436707, 0.49436280131340027, -0.19319361448287964, 0.23607419431209564, 0.36072003841400146, 0.050563063472509384, 0.579365611076355, 0.7400140762329102, -0.6508104205131531, -0.23783954977989197, -0.7102249264717102, -0.0478260256350...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/cc-pdf-extracted-100k
atom-in-the-universe
2023-11-14T15:41:47Z
0
0
null
[ "license:apache-2.0", "region:us" ]
2023-11-14T15:41:47Z
2023-11-14T15:29:17.000Z
2023-11-14T15:29:17
--- license: apache-2.0 --- # Stats for number of tokens: ``` +--------------+ |sum(num_words)| +--------------+ | 34469983| +--------------+ +---------------+ |sum(num_tokens)| +---------------+ | 59332879| +---------------+ +-----------------+ | avg(num_words)| +-----------------+ |3895.353486269635| +-----------------+ +-----------------+ | avg(num_tokens)| +-----------------+ |6705.037744377896| +-----------------+ ```
[ -0.4427693486213684, -0.3131462037563324, 0.27461734414100647, 0.7422711253166199, -0.680401086807251, -0.12773679196834564, 0.140186607837677, 0.0032228142954409122, 1.1242649555206299, 0.12275771796703339, -0.08561545610427856, -1.0885215997695923, -1.1214021444320679, 0.1601805388927459...
null
null
null
null
null
null
null
null
null
null
null
null
null
KaraKaraWitch/WitchesWarehouse
KaraKaraWitch
2023-11-14T15:55:41Z
0
0
null
[ "license:apache-2.0", "region:us" ]
2023-11-14T15:55:41Z
2023-11-14T15:29:39.000Z
2023-11-14T15:29:39
--- license: apache-2.0 pretty_name: Witches Warehouse --- # Dataset Card for Witches Warehouse If you got linked to here, you probably know what you want.
[ -0.11057830601930618, 0.011624020524322987, 0.3500499725341797, 0.1572766751050949, -0.544889509677887, -0.17970219254493713, 0.642971396446228, -0.314073383808136, 0.6681482195854187, 0.6301017999649048, -0.9696561694145203, -1.1616740226745605, -0.28424397110939026, -0.36371350288391113,...
null
null
null
null
null
null
null
null
null
null
null
null
null
Pablao0948/Naldo_Benny
Pablao0948
2023-11-14T15:31:37Z
0
0
null
[ "license:openrail", "region:us" ]
2023-11-14T15:31:37Z
2023-11-14T15:30:22.000Z
2023-11-14T15:30:22
--- license: openrail ---
[ -0.12853363156318665, -0.1861676573753357, 0.6529127359390259, 0.4943627119064331, -0.19319328665733337, 0.23607459664344788, 0.3607197105884552, 0.050563324242830276, 0.5793654322624207, 0.7400139570236206, -0.6508101224899292, -0.2378395050764084, -0.7102251648902893, -0.0478259027004241...
null
null
null
null
null
null
null
null
null
null
null
null
null
snake8c/ds-test
snake8c
2023-11-14T15:38:29Z
0
0
null
[ "region:us" ]
2023-11-14T15:38:29Z
2023-11-14T15:36:12.000Z
2023-11-14T15:36:12
Entry not found
[ -0.3227648437023163, -0.22568388283252716, 0.8622258901596069, 0.4346148371696472, -0.5282987356185913, 0.7012966275215149, 0.7915716171264648, 0.07618634402751923, 0.7746025919914246, 0.2563219666481018, -0.7852815389633179, -0.22573809325695038, -0.9104482531547546, 0.5715671181678772, ...
null
null
null
null
null
null
null
null
null
null
null
null
null
Daniil-plotnikov/musicdataset
Daniil-plotnikov
2023-11-15T14:23:22Z
0
0
null
[ "music", "region:us" ]
2023-11-15T14:23:22Z
2023-11-14T15:39:43.000Z
2023-11-14T15:39:43
--- tags: - music --- This dataset is a text file with music in ABC format. A compositions is separated from another by two '###'
[ -0.11738401651382446, -0.7522545456886292, -0.007395991124212742, 0.5898622870445251, -0.4662189483642578, 0.2957933247089386, -0.2633736729621887, -0.19053487479686737, 0.5890107154846191, 1.245043396949768, -1.0223201513290405, -0.6558211445808411, -0.6471477150917053, 0.4503186345100403...
null
null
null
null
null
null
null
null
null
null
null
null
null
chunping-hf/fish_diffusion_env
chunping-hf
2023-11-14T15:42:41Z
0
0
null
[ "region:us" ]
2023-11-14T15:42:41Z
2023-11-14T15:40:43.000Z
2023-11-14T15:40:43
Entry not found
[ -0.3227648437023163, -0.22568388283252716, 0.8622258901596069, 0.4346148371696472, -0.5282987356185913, 0.7012966275215149, 0.7915716171264648, 0.07618634402751923, 0.7746025919914246, 0.2563219666481018, -0.7852815389633179, -0.22573809325695038, -0.9104482531547546, 0.5715671181678772, ...
null
null
null
null
null
null
null
null
null
null
null
null
null
jzzcutler/github-issues
jzzcutler
2023-11-14T15:42:47Z
0
0
null
[ "region:us" ]
2023-11-14T15:42:47Z
2023-11-14T15:42:32.000Z
2023-11-14T15:42:32
--- dataset_info: features: - name: url dtype: string - name: repository_url dtype: string - name: labels_url dtype: string - name: comments_url dtype: string - name: events_url dtype: string - name: html_url dtype: string - name: id dtype: int64 - name: node_id dtype: string - name: number dtype: int64 - name: title dtype: string - name: user struct: - name: avatar_url dtype: string - name: events_url dtype: string - name: followers_url dtype: string - name: following_url dtype: string - name: gists_url dtype: string - name: gravatar_id dtype: string - name: html_url dtype: string - name: id dtype: int64 - name: login dtype: string - name: node_id dtype: string - name: organizations_url dtype: string - name: received_events_url dtype: string - name: repos_url dtype: string - name: site_admin dtype: bool - name: starred_url dtype: string - name: subscriptions_url dtype: string - name: type dtype: string - name: url dtype: string - name: labels list: - name: color dtype: string - name: default dtype: bool - name: description dtype: string - name: id dtype: int64 - name: name dtype: string - name: node_id dtype: string - name: url dtype: string - name: state dtype: string - name: locked dtype: bool - name: assignee struct: - name: avatar_url dtype: string - name: events_url dtype: string - name: followers_url dtype: string - name: following_url dtype: string - name: gists_url dtype: string - name: gravatar_id dtype: string - name: html_url dtype: string - name: id dtype: int64 - name: login dtype: string - name: node_id dtype: string - name: organizations_url dtype: string - name: received_events_url dtype: string - name: repos_url dtype: string - name: site_admin dtype: bool - name: starred_url dtype: string - name: subscriptions_url dtype: string - name: type dtype: string - name: url dtype: string - name: assignees list: - name: avatar_url dtype: string - name: events_url dtype: string - name: followers_url dtype: string - name: following_url dtype: string - name: gists_url dtype: string - name: gravatar_id dtype: string - name: html_url dtype: string - name: id dtype: int64 - name: login dtype: string - name: node_id dtype: string - name: organizations_url dtype: string - name: received_events_url dtype: string - name: repos_url dtype: string - name: site_admin dtype: bool - name: starred_url dtype: string - name: subscriptions_url dtype: string - name: type dtype: string - name: url dtype: string - name: milestone struct: - name: closed_at dtype: string - name: closed_issues dtype: int64 - name: created_at dtype: string - name: creator struct: - name: avatar_url dtype: string - name: events_url dtype: string - name: followers_url dtype: string - name: following_url dtype: string - name: gists_url dtype: string - name: gravatar_id dtype: string - name: html_url dtype: string - name: id dtype: int64 - name: login dtype: string - name: node_id dtype: string - name: organizations_url dtype: string - name: received_events_url dtype: string - name: repos_url dtype: string - name: site_admin dtype: bool - name: starred_url dtype: string - name: subscriptions_url dtype: string - name: type dtype: string - name: url dtype: string - name: description dtype: string - name: due_on dtype: string - name: html_url dtype: string - name: id dtype: int64 - name: labels_url dtype: string - name: node_id dtype: string - name: number dtype: int64 - name: open_issues dtype: int64 - name: state dtype: string - name: title dtype: string - name: updated_at dtype: string - name: url dtype: string - name: comments sequence: string - name: created_at dtype: timestamp[ns, tz=UTC] - name: updated_at dtype: timestamp[ns, tz=UTC] - name: closed_at dtype: timestamp[ns, tz=UTC] - name: author_association dtype: string - name: active_lock_reason dtype: float64 - name: body dtype: string - name: reactions struct: - name: '+1' dtype: int64 - name: '-1' dtype: int64 - name: confused dtype: int64 - name: eyes dtype: int64 - name: heart dtype: int64 - name: hooray dtype: int64 - name: laugh dtype: int64 - name: rocket dtype: int64 - name: total_count dtype: int64 - name: url dtype: string - name: timeline_url dtype: string - name: performed_via_github_app dtype: float64 - name: state_reason dtype: string - name: draft dtype: float64 - name: pull_request struct: - name: diff_url dtype: string - name: html_url dtype: string - name: merged_at dtype: string - name: patch_url dtype: string - name: url dtype: string - name: is_pull_request dtype: bool splits: - name: train num_bytes: 25458344 num_examples: 4000 download_size: 7291887 dataset_size: 25458344 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "github-issues" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.4579680562019348, -0.29978182911872864, 0.18261614441871643, 0.22594565153121948, -0.10234486311674118, 0.23124663531780243, 0.13614395260810852, -0.12474161386489868, 1.0116899013519287, 0.3888840079307556, -0.8210152387619019, -0.6706066131591797, -0.5103832483291626, -0.2694438695907...
null
null
null
null
null
null
null
null
null
null
null
null
null
niladriD/niladri-songs
niladriD
2023-11-14T15:57:34Z
0
0
null
[ "region:us" ]
2023-11-14T15:57:34Z
2023-11-14T15:55:20.000Z
2023-11-14T15:55:20
Entry not found
[ -0.3227647542953491, -0.22568407654762268, 0.8622258901596069, 0.4346148371696472, -0.5282984972000122, 0.7012965083122253, 0.7915717959403992, 0.07618629932403564, 0.7746022343635559, 0.2563222348690033, -0.785281777381897, -0.22573848068714142, -0.9104482531547546, 0.5715669393539429, ...
null
null
null
null
null
null
null
null
null
null
null
null
null
TRaw/Ditto
TRaw
2023-11-14T16:02:44Z
0
0
null
[ "region:us" ]
2023-11-14T16:02:44Z
2023-11-14T16:02:44.000Z
2023-11-14T16:02:44
Entry not found
[ -0.3227647542953491, -0.22568407654762268, 0.8622258901596069, 0.4346148371696472, -0.5282984972000122, 0.7012965083122253, 0.7915717959403992, 0.07618629932403564, 0.7746022343635559, 0.2563222348690033, -0.785281777381897, -0.22573848068714142, -0.9104482531547546, 0.5715669393539429, ...
null
null
null
null
null
null
null
null
null
null
null
null
null
hippocrates/MIMIC_SUM_test
hippocrates
2023-11-14T16:07:04Z
0
0
null
[ "region:us" ]
2023-11-14T16:07:04Z
2023-11-14T16:06:58.000Z
2023-11-14T16:06:58
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: valid path: data/valid-* - split: test path: data/test-* dataset_info: features: - name: id dtype: string - name: query dtype: string - name: answer dtype: string splits: - name: train num_bytes: 67587273 num_examples: 122014 - name: valid num_bytes: 534270 num_examples: 957 - name: test num_bytes: 1076442 num_examples: 1606 download_size: 24124983 dataset_size: 69197985 --- # Dataset Card for "MIMIC_SUM_test" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6077901124954224, -0.2769172489643097, -0.10909906774759293, 0.38231155276298523, -0.04104503244161606, 0.010904917493462563, 0.38514524698257446, -0.07049085199832916, 1.0486443042755127, 0.34949973225593567, -0.918722927570343, -0.4084319472312927, -0.45635268092155457, -0.07760294526...
null
null
null
null
null
null
null
null
null
null
null
null
null
andrinho1010/coringa
andrinho1010
2023-11-14T16:26:17Z
0
0
null
[ "license:openrail", "region:us" ]
2023-11-14T16:26:17Z
2023-11-14T16:11:11.000Z
2023-11-14T16:11:11
--- license: openrail ---
[ -0.12853392958641052, -0.18616779148578644, 0.6529127955436707, 0.49436280131340027, -0.19319361448287964, 0.23607419431209564, 0.36072003841400146, 0.050563063472509384, 0.579365611076355, 0.7400140762329102, -0.6508104205131531, -0.23783954977989197, -0.7102249264717102, -0.0478260256350...
null
null
null
null
null
null
null
null
null
null
null
null
null
chemNLP/chemistry-bookshelves-merged
chemNLP
2023-11-14T16:24:50Z
0
0
null
[ "region:us" ]
2023-11-14T16:24:50Z
2023-11-14T16:21:47.000Z
2023-11-14T16:21:47
--- dataset_info: features: - name: title dtype: string - name: url dtype: string - name: text dtype: string - name: __index_level_0__ dtype: int64 splits: - name: train num_bytes: 56206230 num_examples: 7728 download_size: 25267751 dataset_size: 56206230 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "chemistry-bookshelves-merged" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5629844665527344, 0.018414447084069252, 0.2995346784591675, -0.3286079168319702, -0.12991958856582642, 0.2399112582206726, 0.17570075392723083, 0.02235392853617668, 0.4312608242034912, 0.5541598200798035, -0.8922023773193359, -0.8455972075462341, -0.39212870597839355, -0.285624623298645...
null
null
null
null
null
null
null
null
null
null
null
null
null
dcodrut/glacier_mapping_alps
dcodrut
2023-11-19T12:06:07Z
0
0
null
[ "region:us" ]
2023-11-19T12:06:07Z
2023-11-14T16:23:00.000Z
2023-11-14T16:23:00
Entry not found
[ -0.32276472449302673, -0.22568407654762268, 0.8622258901596069, 0.4346148371696472, -0.5282984972000122, 0.7012965679168701, 0.7915717363357544, 0.07618629932403564, 0.7746022939682007, 0.2563222646713257, -0.785281777381897, -0.22573848068714142, -0.9104482531547546, 0.5715669393539429, ...
null
null
null
null
null
null
null
null
null
null
null
null
null
andrinho1010/coringa.mp3
andrinho1010
2023-11-14T16:49:04Z
0
0
null
[ "license:openrail", "region:us" ]
2023-11-14T16:49:04Z
2023-11-14T16:47:45.000Z
2023-11-14T16:47:45
--- license: openrail ---
[ -0.12853392958641052, -0.18616779148578644, 0.6529127955436707, 0.49436280131340027, -0.19319361448287964, 0.23607419431209564, 0.36072003841400146, 0.050563063472509384, 0.579365611076355, 0.7400140762329102, -0.6508104205131531, -0.23783954977989197, -0.7102249264717102, -0.0478260256350...
null
null
null
null
null
null
null
null
null
null
null
null
null
Kaue123456/JonathanNeves
Kaue123456
2023-11-14T16:50:07Z
0
0
null
[ "license:openrail", "region:us" ]
2023-11-14T16:50:07Z
2023-11-14T16:49:10.000Z
2023-11-14T16:49:10
--- license: openrail ---
[ -0.12853367626667023, -0.18616794049739838, 0.6529126763343811, 0.4943627417087555, -0.19319313764572144, 0.23607443273067474, 0.36071979999542236, 0.05056338757276535, 0.5793654322624207, 0.7400138974189758, -0.6508103013038635, -0.23783987760543823, -0.710224986076355, -0.047825977206230...
null
null
null
null
null
null
null
null
null
null
null
null
null
sameeryel/3D_Models
sameeryel
2023-11-14T17:01:59Z
0
0
null
[ "license:unknown", "region:us" ]
2023-11-14T17:01:59Z
2023-11-14T17:00:25.000Z
2023-11-14T17:00:25
--- license: unknown ---
[ -0.12853367626667023, -0.18616794049739838, 0.6529126763343811, 0.4943627417087555, -0.19319313764572144, 0.23607443273067474, 0.36071979999542236, 0.05056338757276535, 0.5793654322624207, 0.7400138974189758, -0.6508103013038635, -0.23783987760543823, -0.710224986076355, -0.047825977206230...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-10
atom-in-the-universe
2023-11-26T19:16:32Z
0
0
null
[ "region:us" ]
2023-11-26T19:16:32Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-25
atom-in-the-universe
2023-11-26T18:14:20Z
0
0
null
[ "region:us" ]
2023-11-26T18:14:20Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-74
atom-in-the-universe
2023-11-26T23:47:24Z
0
0
null
[ "region:us" ]
2023-11-26T23:47:24Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-54
atom-in-the-universe
2023-11-27T12:49:46Z
0
0
null
[ "region:us" ]
2023-11-27T12:49:46Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-21
atom-in-the-universe
2023-11-27T10:40:24Z
0
0
null
[ "region:us" ]
2023-11-27T10:40:24Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-29
atom-in-the-universe
2023-11-28T03:19:54Z
0
0
null
[ "region:us" ]
2023-11-28T03:19:54Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-63
atom-in-the-universe
2023-11-27T16:56:53Z
0
0
null
[ "region:us" ]
2023-11-27T16:56:53Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-18
atom-in-the-universe
2023-11-27T15:23:53Z
0
0
null
[ "region:us" ]
2023-11-27T15:23:53Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-31
atom-in-the-universe
2023-11-27T04:22:01Z
0
0
null
[ "region:us" ]
2023-11-27T04:22:01Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-88
atom-in-the-universe
2023-11-25T16:02:37Z
0
0
null
[ "region:us" ]
2023-11-25T16:02:37Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-51
atom-in-the-universe
2023-11-27T02:22:16Z
0
0
null
[ "region:us" ]
2023-11-27T02:22:16Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-41
atom-in-the-universe
2023-11-28T02:40:38Z
0
0
null
[ "region:us" ]
2023-11-28T02:40:38Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-17
atom-in-the-universe
2023-11-24T14:44:18Z
0
0
null
[ "region:us" ]
2023-11-24T14:44:18Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-75
atom-in-the-universe
2023-11-26T20:31:46Z
0
0
null
[ "region:us" ]
2023-11-26T20:31:46Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-89
atom-in-the-universe
2023-11-26T06:27:40Z
0
0
null
[ "region:us" ]
2023-11-26T06:27:40Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-87
atom-in-the-universe
2023-11-26T06:14:52Z
0
0
null
[ "region:us" ]
2023-11-26T06:14:52Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-85
atom-in-the-universe
2023-11-25T16:51:49Z
0
0
null
[ "region:us" ]
2023-11-25T16:51:49Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-84
atom-in-the-universe
2023-11-26T03:04:52Z
0
0
null
[ "region:us" ]
2023-11-26T03:04:52Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-64
atom-in-the-universe
2023-11-25T15:22:12Z
0
0
null
[ "region:us" ]
2023-11-25T15:22:12Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-52
atom-in-the-universe
2023-11-15T09:43:26Z
0
0
null
[ "region:us" ]
2023-11-15T09:43:26Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-71
atom-in-the-universe
2023-11-27T13:21:09Z
0
0
null
[ "region:us" ]
2023-11-27T13:21:09Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-68
atom-in-the-universe
2023-11-25T15:20:37Z
0
0
null
[ "region:us" ]
2023-11-25T15:20:37Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-66
atom-in-the-universe
2023-11-26T18:58:05Z
0
0
null
[ "region:us" ]
2023-11-26T18:58:05Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-30
atom-in-the-universe
2023-11-27T01:41:04Z
0
0
null
[ "region:us" ]
2023-11-27T01:41:04Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-40
atom-in-the-universe
2023-11-28T09:52:58Z
0
0
null
[ "region:us" ]
2023-11-28T09:52:58Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-22
atom-in-the-universe
2023-11-27T12:58:05Z
0
0
null
[ "region:us" ]
2023-11-27T12:58:05Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-53
atom-in-the-universe
2023-11-27T04:00:19Z
0
0
null
[ "region:us" ]
2023-11-27T04:00:19Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-60
atom-in-the-universe
2023-11-27T00:24:23Z
0
0
null
[ "region:us" ]
2023-11-27T00:24:23Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-79
atom-in-the-universe
2023-11-27T07:03:23Z
0
0
null
[ "region:us" ]
2023-11-27T07:03:23Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-70
atom-in-the-universe
2023-11-28T01:48:52Z
0
0
null
[ "region:us" ]
2023-11-28T01:48:52Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-15
atom-in-the-universe
2023-11-27T14:12:26Z
0
0
null
[ "region:us" ]
2023-11-27T14:12:26Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-45
atom-in-the-universe
2023-11-26T18:07:38Z
0
0
null
[ "region:us" ]
2023-11-26T18:07:38Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-36
atom-in-the-universe
2023-11-28T18:13:32Z
0
0
null
[ "region:us" ]
2023-11-28T18:13:32Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-32
atom-in-the-universe
2023-11-27T08:29:48Z
0
0
null
[ "region:us" ]
2023-11-27T08:29:48Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-58
atom-in-the-universe
2023-11-26T19:48:20Z
0
0
null
[ "region:us" ]
2023-11-26T19:48:20Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-65
atom-in-the-universe
2023-11-26T20:03:29Z
0
0
null
[ "region:us" ]
2023-11-26T20:03:29Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-62
atom-in-the-universe
2023-11-27T13:49:53Z
0
0
null
[ "region:us" ]
2023-11-27T13:49:53Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-69
atom-in-the-universe
2023-11-26T17:53:35Z
0
0
null
[ "region:us" ]
2023-11-26T17:53:35Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-77
atom-in-the-universe
2023-11-25T15:14:09Z
0
0
null
[ "region:us" ]
2023-11-25T15:14:09Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-34
atom-in-the-universe
2023-11-24T02:53:14Z
0
0
null
[ "region:us" ]
2023-11-24T02:53:14Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-48
atom-in-the-universe
2023-11-27T16:23:39Z
0
0
null
[ "region:us" ]
2023-11-27T16:23:39Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-23
atom-in-the-universe
2023-11-28T14:19:43Z
0
0
null
[ "region:us" ]
2023-11-28T14:19:43Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-38
atom-in-the-universe
2023-11-27T12:53:45Z
0
0
null
[ "region:us" ]
2023-11-27T12:53:45Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-39
atom-in-the-universe
2023-11-27T12:21:47Z
0
0
null
[ "region:us" ]
2023-11-27T12:21:47Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-61
atom-in-the-universe
2023-11-26T17:50:16Z
0
0
null
[ "region:us" ]
2023-11-26T17:50:16Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-55
atom-in-the-universe
2023-11-27T08:26:58Z
0
0
null
[ "region:us" ]
2023-11-27T08:26:58Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-78
atom-in-the-universe
2023-11-26T18:32:11Z
0
0
null
[ "region:us" ]
2023-11-26T18:32:11Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-76
atom-in-the-universe
2023-11-27T17:15:40Z
0
0
null
[ "region:us" ]
2023-11-27T17:15:40Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-33
atom-in-the-universe
2023-11-24T18:24:16Z
0
0
null
[ "region:us" ]
2023-11-24T18:24:16Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-28
atom-in-the-universe
2023-11-27T19:06:13Z
0
0
null
[ "region:us" ]
2023-11-27T19:06:13Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-20
atom-in-the-universe
2023-11-24T14:45:45Z
0
0
null
[ "region:us" ]
2023-11-24T14:45:45Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-37
atom-in-the-universe
2023-11-27T12:24:55Z
0
0
null
[ "region:us" ]
2023-11-27T12:24:55Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-83
atom-in-the-universe
2023-11-25T15:22:19Z
0
0
null
[ "region:us" ]
2023-11-25T15:22:19Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-81
atom-in-the-universe
2023-11-25T17:51:54Z
0
0
null
[ "region:us" ]
2023-11-25T17:51:54Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-47
atom-in-the-universe
2023-11-27T06:18:39Z
0
0
null
[ "region:us" ]
2023-11-27T06:18:39Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-80
atom-in-the-universe
2023-11-26T00:15:30Z
0
0
null
[ "region:us" ]
2023-11-26T00:15:30Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-13
atom-in-the-universe
2023-11-23T12:27:13Z
0
0
null
[ "region:us" ]
2023-11-23T12:27:13Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-14
atom-in-the-universe
2023-11-26T18:00:00Z
0
0
null
[ "region:us" ]
2023-11-26T18:00:00Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-27
atom-in-the-universe
2023-11-27T13:43:31Z
0
0
null
[ "region:us" ]
2023-11-27T13:43:31Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-49
atom-in-the-universe
2023-11-26T22:28:10Z
0
0
null
[ "region:us" ]
2023-11-26T22:28:10Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-46
atom-in-the-universe
2023-11-23T12:45:32Z
0
0
null
[ "region:us" ]
2023-11-23T12:45:32Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-73
atom-in-the-universe
2023-11-26T22:34:40Z
0
0
null
[ "region:us" ]
2023-11-26T22:34:40Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-44
atom-in-the-universe
2023-11-23T17:42:10Z
0
0
null
[ "region:us" ]
2023-11-23T17:42:10Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-42
atom-in-the-universe
2023-11-28T02:48:26Z
0
0
null
[ "region:us" ]
2023-11-28T02:48:26Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-11
atom-in-the-universe
2023-11-26T21:42:41Z
0
0
null
[ "region:us" ]
2023-11-26T21:42:41Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-35
atom-in-the-universe
2023-11-27T16:51:27Z
0
0
null
[ "region:us" ]
2023-11-27T16:51:27Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-56
atom-in-the-universe
2023-11-27T14:19:40Z
0
0
null
[ "region:us" ]
2023-11-27T14:19:40Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-59
atom-in-the-universe
2023-11-27T21:27:06Z
0
0
null
[ "region:us" ]
2023-11-27T21:27:06Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-67
atom-in-the-universe
2023-11-27T13:43:07Z
0
0
null
[ "region:us" ]
2023-11-27T13:43:07Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-24
atom-in-the-universe
2023-11-27T00:38:45Z
0
0
null
[ "region:us" ]
2023-11-27T00:38:45Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-86
atom-in-the-universe
2023-11-25T15:21:49Z
0
0
null
[ "region:us" ]
2023-11-25T15:21:49Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-82
atom-in-the-universe
2023-11-25T18:14:57Z
0
0
null
[ "region:us" ]
2023-11-25T18:14:57Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-19
atom-in-the-universe
2023-11-28T13:41:26Z
0
0
null
[ "region:us" ]
2023-11-28T13:41:26Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-43
atom-in-the-universe
2023-11-27T15:44:34Z
0
0
null
[ "region:us" ]
2023-11-27T15:44:34Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-26
atom-in-the-universe
2023-11-27T12:57:08Z
0
0
null
[ "region:us" ]
2023-11-27T12:57:08Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-57
atom-in-the-universe
2023-11-28T00:59:37Z
0
0
null
[ "region:us" ]
2023-11-28T00:59:37Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-12
atom-in-the-universe
2023-11-27T22:02:55Z
0
0
null
[ "region:us" ]
2023-11-27T22:02:55Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null
atom-in-the-universe/bild-deduped-50
atom-in-the-universe
2023-11-27T13:15:08Z
0
0
null
[ "region:us" ]
2023-11-27T13:15:08Z
2023-11-14T17:11:39.000Z
2023-11-14T17:11:39
Entry not found
[ -0.3227649927139282, -0.225684255361557, 0.862226128578186, 0.43461498618125916, -0.5282987952232361, 0.7012963891029358, 0.7915717363357544, 0.07618629932403564, 0.7746025919914246, 0.2563219666481018, -0.7852816581726074, -0.2257382869720459, -0.9104480743408203, 0.5715669393539429, -0...
null
null
null
null
null
null
null
null
null
null
null
null
null