diff --git a/app.py b/app.py index 0da0319a5b670dce5025888fde58916b96f19869..48428f5dd1d7647b047c7e3e60ce60c3c68e4eaf 100644 --- a/app.py +++ b/app.py @@ -1,64 +1,148 @@ +import json +from pathlib import Path + import gradio as gr -from huggingface_hub import InferenceClient - -""" -For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference -""" -client = InferenceClient("HuggingFaceH4/zephyr-7b-beta") - - -def respond( - message, - history: list[tuple[str, str]], - system_message, - max_tokens, - temperature, - top_p, -): - messages = [{"role": "system", "content": system_message}] - - for val in history: - if val[0]: - messages.append({"role": "user", "content": val[0]}) - if val[1]: - messages.append({"role": "assistant", "content": val[1]}) - - messages.append({"role": "user", "content": message}) - - response = "" - - for message in client.chat_completion( - messages, - max_tokens=max_tokens, - stream=True, - temperature=temperature, - top_p=top_p, - ): - token = message.choices[0].delta.content - - response += token - yield response - - -""" -For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface -""" -demo = gr.ChatInterface( - respond, - additional_inputs=[ - gr.Textbox(value="You are a friendly Chatbot.", label="System message"), - gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"), - gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"), - gr.Slider( - minimum=0.1, - maximum=1.0, - value=0.95, - step=0.05, - label="Top-p (nucleus sampling)", - ), - ], -) +import numpy as np + +from app.models.text_encoder import TextEncoder + +SUMMARY_DIR = Path("data/summaries") +EMBEDDING_DIR = Path("data/embeddings") +NAME_MAP_FILE = Path("data/name_map.json") + + +def search_memes(prompt, top_k=10): + """ + Search for memes based on the input prompt. + + Args: + prompt: The text prompt to search for + top_k: Number of results to return + + Returns: + List of dictionaries containing search results + """ + # Initialize results list + results = [] + + # Get the embedding file paths + embedding_paths = list(EMBEDDING_DIR.glob("*.npy")) + + # Load the embeddings + embeddings = [np.load(path) for path in embedding_paths] + + # Load the text encoder + text_encoder = TextEncoder() + + # Generate embeddings for the prompt + prompt_embedding = text_encoder.encode(prompt) + + # Calculate similarities + similarities = np.dot(embeddings, prompt_embedding) / ( + np.linalg.norm(embeddings, axis=1) * np.linalg.norm(prompt_embedding) + ) + + # Get the top k indices + top_k_indices = np.argsort(similarities)[-top_k:] + + # Load the summaries + summaries = [] + for path in SUMMARY_DIR.glob("*.txt"): + with open(path, "r", encoding="utf-8") as f: + summaries.append(f.read()) + + # Load the name map + with open(NAME_MAP_FILE, "r") as f: + name_map = json.load(f) + + # Process the top k results + for i, index in enumerate(top_k_indices[::-1]): + try: + result = { + "rank": i + 1, + "similarity": round(float(similarities[index]), 3), + "filename": embedding_paths[index].stem, + "original_filename": name_map.get( + embedding_paths[index].stem, "Unknown" + ), + "summary": summaries[index] + if index < len(summaries) + else "No summary available", + } + results.append(result) + except (IndexError, KeyError) as e: + results.append( + {"rank": i + 1, "error": f"Error processing result {i + 1}: {str(e)}"} + ) + + return results + + +def format_results(results): + """Format the results for display in the Gradio interface""" + html_output = "" + for result in results: + if "error" in result: + html_output += "
" + html_output += f"

Rank {result['rank']}: {result['error']}

" + html_output += "
" + else: + html_output += "
" + html_output += f"

Rank {result['rank']} (Similarity: {result['similarity']})

" + html_output += f"

File: {result['original_filename']}

" + html_output += f"

Summary: {result['summary']}

" + html_output += "
" + + return html_output + + +# Define the Gradio interface +def search_interface(prompt, top_k): + """Main search interface function for Gradio""" + if not prompt: + return "Please enter a search query" + + results = search_memes(prompt, int(top_k)) + formatted_results = format_results(results) + return formatted_results + + +# Create the Gradio app +with gr.Blocks(title="Meme Search", theme=gr.themes.Soft()) as demo: + gr.Markdown("# 🔍 Meme Search") + gr.Markdown("Search for memes using natural language descriptions") + + with gr.Row(): + with gr.Column(scale=4): + prompt_input = gr.Textbox( + label="Search Query", placeholder="Enter your search here..." + ) + with gr.Column(scale=1): + top_k_slider = gr.Slider( + minimum=1, maximum=20, value=5, step=1, label="Number of Results" + ) + + search_button = gr.Button("Search", variant="primary") + + output = gr.HTML(label="Results") + + search_button.click( + fn=search_interface, inputs=[prompt_input, top_k_slider], outputs=output + ) + + # Also trigger search on Enter key + prompt_input.submit( + fn=search_interface, inputs=[prompt_input, top_k_slider], outputs=output + ) + gr.Markdown("## How to use") + gr.Markdown(""" + 1. Enter a description of the meme you're looking for + 2. Adjust the number of results to show + 3. Click 'Search' or press Enter + 4. Results are sorted by similarity to your query + """) +# Launch the app if __name__ == "__main__": demo.launch() diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5ef0fa276a4f77827e54549a50c993b9af5cc5b0 --- /dev/null +++ b/app/__init__.py @@ -0,0 +1 @@ +"""Application for searching video summaries by natural language.""" diff --git a/app/models/__init__.py b/app/models/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..6ac15c706a10313db608387341d2e89e8bf4a88a --- /dev/null +++ b/app/models/__init__.py @@ -0,0 +1 @@ +"""Models for the application.""" diff --git a/app/models/text_encoder.py b/app/models/text_encoder.py new file mode 100644 index 0000000000000000000000000000000000000000..23553f3f13a4a8d2b6a542cfaba63b5525b40bd2 --- /dev/null +++ b/app/models/text_encoder.py @@ -0,0 +1,16 @@ +"""Text encoder.""" + +from sentence_transformers import SentenceTransformer +from torch import Tensor + + +class TextEncoder: + """Text encoder.""" + + def __init__(self) -> None: + """Initialize the text encoder.""" + self.model = SentenceTransformer("sentence-transformers/all-MiniLM-L12-v1") + + def encode(self, text: str) -> Tensor: + """Encode a string into an embedding.""" + return self.model.encode(text) diff --git a/data/embeddings/017d956359676be2393d8e07c0d9cd.npy b/data/embeddings/017d956359676be2393d8e07c0d9cd.npy new file mode 100644 index 0000000000000000000000000000000000000000..e0ce603d264b4224bc0b35e90b2ee4e627c59bd8 --- /dev/null +++ b/data/embeddings/017d956359676be2393d8e07c0d9cd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1acef571b048dafd4ad6e1068b14f903b1c4f104efdb39ac379e7fab07dad5 +size 1664 diff --git a/data/embeddings/0a4afbdf14f42abcaf731aedbd8783.npy b/data/embeddings/0a4afbdf14f42abcaf731aedbd8783.npy new file mode 100644 index 0000000000000000000000000000000000000000..60a9ea8ff8d2df52711fcb05a8d9e23ae7263f6d --- /dev/null +++ b/data/embeddings/0a4afbdf14f42abcaf731aedbd8783.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54370cc558e4dfe9e88fcfc4be2455e75979559809b31ace22d864d22c95572f +size 1664 diff --git a/data/embeddings/0z8eppisoyzd3jte.npy b/data/embeddings/0z8eppisoyzd3jte.npy new file mode 100644 index 0000000000000000000000000000000000000000..2245ce48133c822b375bec79ff3fbf835a02a968 --- /dev/null +++ b/data/embeddings/0z8eppisoyzd3jte.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9baf359732587eeb7d23eb9f1c72a117bc576f60603a5213257177ae0fd31df2 +size 1664 diff --git a/data/embeddings/1004332103284052018.npy b/data/embeddings/1004332103284052018.npy new file mode 100644 index 0000000000000000000000000000000000000000..5c9278fa7b76cd8671307fd772843eac37ee6e20 --- /dev/null +++ b/data/embeddings/1004332103284052018.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c6cab8513c6ee763b4d6e46145ca76c1c640b1aa4a652295e0951a8baad8ce +size 1664 diff --git a/data/embeddings/170f3a0d74d628f405745cd107d8fc.npy b/data/embeddings/170f3a0d74d628f405745cd107d8fc.npy new file mode 100644 index 0000000000000000000000000000000000000000..6493c3bb7b2902a53041d4282c6f305f6c9d77f4 --- /dev/null +++ b/data/embeddings/170f3a0d74d628f405745cd107d8fc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be38eed59873cedfd5af66461275ea4ed79f8fbbe8da4357e66c1a8e0714b741 +size 1664 diff --git a/data/embeddings/1_4972134405645533911.npy b/data/embeddings/1_4972134405645533911.npy new file mode 100644 index 0000000000000000000000000000000000000000..99b15edcb856790c5db534f222a1525866e54b0b --- /dev/null +++ b/data/embeddings/1_4972134405645533911.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a863fd8aea49898bc7eea5af07b7b259e81cfda142c7dfe8c8a010f4e52684f +size 1664 diff --git a/data/embeddings/1cmt9rrcral5m1t.npy b/data/embeddings/1cmt9rrcral5m1t.npy new file mode 100644 index 0000000000000000000000000000000000000000..740b2ee92f5696922da5b364244014a07effc930 --- /dev/null +++ b/data/embeddings/1cmt9rrcral5m1t.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29c62ceec03f9b667ac73efc1a5b4cb0d6a47f18ca3b57b6f3ffe9a95a563ce +size 1664 diff --git a/data/embeddings/1x_mpgvsmlwi4b4.npy b/data/embeddings/1x_mpgvsmlwi4b4.npy new file mode 100644 index 0000000000000000000000000000000000000000..31a93cc30b6e98db4331bf28e7e1d40888774bde --- /dev/null +++ b/data/embeddings/1x_mpgvsmlwi4b4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d1350110b8c416855ffee53990a846bca4a0aa3badda3d4e87de62cc98154c +size 1664 diff --git a/data/embeddings/20250209_cooperativeperfectpon.npy b/data/embeddings/20250209_cooperativeperfectpon.npy new file mode 100644 index 0000000000000000000000000000000000000000..c6cc018fd9aba640a01ab377b1fceedebb34fe20 --- /dev/null +++ b/data/embeddings/20250209_cooperativeperfectpon.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e402c40cd62d7e4aa66ce4d20b55dd08f5ca10e034225ac74ddf4fcf49e056 +size 1664 diff --git a/data/embeddings/244301680_1204542536721927_730.npy b/data/embeddings/244301680_1204542536721927_730.npy new file mode 100644 index 0000000000000000000000000000000000000000..863893e240978b80cc3fda39447221d47e732339 --- /dev/null +++ b/data/embeddings/244301680_1204542536721927_730.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a63e0e00f40677643cc395759cfe9d122ccbbfbea587cc4f25cca0e8f1d1150 +size 1664 diff --git a/data/embeddings/248320392_939578913314000_7632.npy b/data/embeddings/248320392_939578913314000_7632.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d442e31673fdc8195d5a0c824c1703fd52a620d --- /dev/null +++ b/data/embeddings/248320392_939578913314000_7632.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a724e3e9519fdf22dfbfcee43a0bc34c1cac7de6a1778dbc8db469a49776ef7 +size 1664 diff --git a/data/embeddings/2df31f1dd1d31b6d5b55934e2c0125.npy b/data/embeddings/2df31f1dd1d31b6d5b55934e2c0125.npy new file mode 100644 index 0000000000000000000000000000000000000000..ca81784d885def296ef2a7a1a2f41ce227b47441 --- /dev/null +++ b/data/embeddings/2df31f1dd1d31b6d5b55934e2c0125.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c31c3f38645bc9b29eaa224a00aed02eee3b42b471dc644ab7c070aaac17177 +size 1664 diff --git a/data/embeddings/2gtri3bqxrdkzp2.npy b/data/embeddings/2gtri3bqxrdkzp2.npy new file mode 100644 index 0000000000000000000000000000000000000000..e72600a11bc215cde5d740baf995235cefbb4471 --- /dev/null +++ b/data/embeddings/2gtri3bqxrdkzp2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c14e55edf321a1ff588b6739c092a92d4f12bed39eddbfe80c8e657cb1f7667 +size 1664 diff --git a/data/embeddings/2og27hbdaohr0_u7.npy b/data/embeddings/2og27hbdaohr0_u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..736dfa8b70e21abcda248b5cafddf75b24a28602 --- /dev/null +++ b/data/embeddings/2og27hbdaohr0_u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8dd11c7fb54be301478c3b207399f4e05477964a6427a77370d1d5aa7e7ce5c +size 1664 diff --git a/data/embeddings/311472807_847803186574673_6180.npy b/data/embeddings/311472807_847803186574673_6180.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d3427f90be5a54e53e6b4a0ccf8cbada0e5d0a1 --- /dev/null +++ b/data/embeddings/311472807_847803186574673_6180.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:318be9a37558cee400a6225d7726669f50e914351f4b59f3f3a10f6522a2b72f +size 1664 diff --git a/data/embeddings/317972007_872625493783372_7982.npy b/data/embeddings/317972007_872625493783372_7982.npy new file mode 100644 index 0000000000000000000000000000000000000000..03cf4194b20a98478fa429f49a240ae41be142ff --- /dev/null +++ b/data/embeddings/317972007_872625493783372_7982.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f15c811de05011b9a445d2b1787ac17563ed06f588bc05ad29ad061594ec2996 +size 1664 diff --git a/data/embeddings/3c494477159df432b7c51e2f809dd3.npy b/data/embeddings/3c494477159df432b7c51e2f809dd3.npy new file mode 100644 index 0000000000000000000000000000000000000000..aab67083b76c6b418c0a3781b50314fc39fed08c --- /dev/null +++ b/data/embeddings/3c494477159df432b7c51e2f809dd3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0cfb7abafb4ab98163e98cf31697636d9bd252a9ff00f013b182b65758f798 +size 1664 diff --git a/data/embeddings/3cl41iruuh0jfi27.npy b/data/embeddings/3cl41iruuh0jfi27.npy new file mode 100644 index 0000000000000000000000000000000000000000..eae7a0886cfa0b59abac7bbcdb26c877924711b4 --- /dev/null +++ b/data/embeddings/3cl41iruuh0jfi27.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6756974f7cff611b30b3328216be9b61785125ee55a5a8e04dcf98d52193a3d +size 1664 diff --git a/data/embeddings/3jev0656inc_e09p.npy b/data/embeddings/3jev0656inc_e09p.npy new file mode 100644 index 0000000000000000000000000000000000000000..ddc24df0bc5a6503b04c5566e17fbf1401490ff9 --- /dev/null +++ b/data/embeddings/3jev0656inc_e09p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef0831f8bf216eead06de2b451f065c0a5eed8292aa49e5f82328d42760ccbd +size 1664 diff --git a/data/embeddings/3wlic3cumg3yvudn.npy b/data/embeddings/3wlic3cumg3yvudn.npy new file mode 100644 index 0000000000000000000000000000000000000000..b5e759e2e81630b06ca88e2e0d3aa072a884914d --- /dev/null +++ b/data/embeddings/3wlic3cumg3yvudn.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0538ffda85460357b12f900540036f6dac0e0c58198381abe15637c5dfe36df7 +size 1664 diff --git a/data/embeddings/405360888_7293554827322499_503.npy b/data/embeddings/405360888_7293554827322499_503.npy new file mode 100644 index 0000000000000000000000000000000000000000..f79af46096bca80e23a4e56c48bf372d8143c3e7 --- /dev/null +++ b/data/embeddings/405360888_7293554827322499_503.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4175a575a76e4b5c5b095ab1d5204f92c407b54e562b50cd6725aea18124ad +size 1664 diff --git a/data/embeddings/441930059_1175058477005126_751.npy b/data/embeddings/441930059_1175058477005126_751.npy new file mode 100644 index 0000000000000000000000000000000000000000..aabc5a2a572a70a0ad94ac69b86ce28e117e8473 --- /dev/null +++ b/data/embeddings/441930059_1175058477005126_751.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2ea74d9b6f1f1d4036c7ab00c8a6ff6539e799a6139da55383ae462e3d0f46 +size 1664 diff --git a/data/embeddings/469182540_8739739586133293_167.npy b/data/embeddings/469182540_8739739586133293_167.npy new file mode 100644 index 0000000000000000000000000000000000000000..d01154d57a001a8006ebb496260cc863e44c1a9c --- /dev/null +++ b/data/embeddings/469182540_8739739586133293_167.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8849ac88c2f170fa51a63522a91f2944bfb00f278cf55ac80e5e1ef76b3a5f +size 1664 diff --git a/data/embeddings/471482695_9131258876896657_266.npy b/data/embeddings/471482695_9131258876896657_266.npy new file mode 100644 index 0000000000000000000000000000000000000000..7de47951312eb96164df40c8ab6ba34d281ca755 --- /dev/null +++ b/data/embeddings/471482695_9131258876896657_266.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5726208f69de7831c35fe63fb5c16c5aeec8f6169f78facc14d194e41275d5e5 +size 1664 diff --git a/data/embeddings/47671917_1318637692320758_5748.npy b/data/embeddings/47671917_1318637692320758_5748.npy new file mode 100644 index 0000000000000000000000000000000000000000..7ae10f3dbf1e818fbfb52c8dbbe7459af9c7ffed --- /dev/null +++ b/data/embeddings/47671917_1318637692320758_5748.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4a7bcc14540a669baa94db0664b7ce2c4db1582266a09d5ff65a15d3a63b33 +size 1664 diff --git a/data/embeddings/4bdeac2a1334624ce3c8afe96ea9c5.npy b/data/embeddings/4bdeac2a1334624ce3c8afe96ea9c5.npy new file mode 100644 index 0000000000000000000000000000000000000000..97b3db8e62dbba17febfd2d1ef6bd7a7f1eb9fea --- /dev/null +++ b/data/embeddings/4bdeac2a1334624ce3c8afe96ea9c5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec8784a36fe6809a51b41a3868f2573f11798c5db3c863ccdecedcaf186bccb +size 1664 diff --git a/data/embeddings/4kcamera.npy b/data/embeddings/4kcamera.npy new file mode 100644 index 0000000000000000000000000000000000000000..3107c267b3e8fd7c74ee0872b5f9661c59cf0368 --- /dev/null +++ b/data/embeddings/4kcamera.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1138af505b385bc9ad35970a66b5d66769a0f70a4879fced7b2c91037e97c0d3 +size 1664 diff --git a/data/embeddings/4x.npy b/data/embeddings/4x.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b38d8214cfbf20d10dfd35739760564a210ba4b --- /dev/null +++ b/data/embeddings/4x.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104ecd8927a00ea92ce2bcadace44dfa7eb4a7f99689110372eaa26e86aaa5c9 +size 1664 diff --git a/data/embeddings/5fb3731a8dcfd8172c9bdd12ae1970.npy b/data/embeddings/5fb3731a8dcfd8172c9bdd12ae1970.npy new file mode 100644 index 0000000000000000000000000000000000000000..258e744161dca2f131b7d8ff6020e881b2077f99 --- /dev/null +++ b/data/embeddings/5fb3731a8dcfd8172c9bdd12ae1970.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78060d6e575b4a34e711c836da5db1d4754db68f1bd5e5f43431af3232697308 +size 1664 diff --git a/data/embeddings/6e725c5ef715b822f11ea67c2ca9cb.npy b/data/embeddings/6e725c5ef715b822f11ea67c2ca9cb.npy new file mode 100644 index 0000000000000000000000000000000000000000..5b137d7ac99ad9ffaa12dc6ee48ddf0d881c043b --- /dev/null +++ b/data/embeddings/6e725c5ef715b822f11ea67c2ca9cb.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44228b7afd5116380c612f6382fd7b692b7d7af9ab0f3d2f09c405bbc748a401 +size 1664 diff --git a/data/embeddings/6o6psry1hrnpwhvo.npy b/data/embeddings/6o6psry1hrnpwhvo.npy new file mode 100644 index 0000000000000000000000000000000000000000..745d3681c533b7b36c917f3b2f3a901440a4a438 --- /dev/null +++ b/data/embeddings/6o6psry1hrnpwhvo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33298d136cc49822432a6360d135663352c42327d3643d69502534677d108856 +size 1664 diff --git a/data/embeddings/6rme9unctzitcye8.npy b/data/embeddings/6rme9unctzitcye8.npy new file mode 100644 index 0000000000000000000000000000000000000000..fb5af44efae02c8ea3024fcb0aa1e96421182a3e --- /dev/null +++ b/data/embeddings/6rme9unctzitcye8.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb63ed9ef3845e80e26b8ae2cd600a7745fd4c0b3c5ff2ec7bd54344ad3c95e6 +size 1664 diff --git a/data/embeddings/789591e5aee5552b63569b5aae9f91.npy b/data/embeddings/789591e5aee5552b63569b5aae9f91.npy new file mode 100644 index 0000000000000000000000000000000000000000..69e8b4de18d72a9a25b5fe0c0a45cdf04100ddb4 --- /dev/null +++ b/data/embeddings/789591e5aee5552b63569b5aae9f91.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5abf3013d3d2469b058d9bf8ede43f5d620d67dc3c3f7c4dbc02d0c4e45621 +size 1664 diff --git a/data/embeddings/8212422b9b4889a0770c55c18bbf96.npy b/data/embeddings/8212422b9b4889a0770c55c18bbf96.npy new file mode 100644 index 0000000000000000000000000000000000000000..82d0ff1e41382dccad19ff3a920306bc3e45b313 --- /dev/null +++ b/data/embeddings/8212422b9b4889a0770c55c18bbf96.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e35457d37a51952233dce64eeb633323cc94403d2a5ca8f2f7d9e7cee3927c1 +size 1664 diff --git a/data/embeddings/889c0176ad2dd4e71b6a9ba7691b0b.npy b/data/embeddings/889c0176ad2dd4e71b6a9ba7691b0b.npy new file mode 100644 index 0000000000000000000000000000000000000000..b08fd2b895eb3ba61b8ae1770b61c1422a01b63b --- /dev/null +++ b/data/embeddings/889c0176ad2dd4e71b6a9ba7691b0b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:accb41051a5c9b9f8ea3c7fd45de047b693030c8be89db22ecbf77fd0e49658b +size 1664 diff --git a/data/embeddings/8e4282f75a64f7e3c35175be4bbcf1.npy b/data/embeddings/8e4282f75a64f7e3c35175be4bbcf1.npy new file mode 100644 index 0000000000000000000000000000000000000000..5ab87acc8393f31db61fb97c5db8a5decbccc219 --- /dev/null +++ b/data/embeddings/8e4282f75a64f7e3c35175be4bbcf1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199a6212b7d30d5021634db203ae265a50b4cd7d1e07f17e7063c8d26af94bcc +size 1664 diff --git a/data/embeddings/8fi9o0y09mibdhjx.npy b/data/embeddings/8fi9o0y09mibdhjx.npy new file mode 100644 index 0000000000000000000000000000000000000000..92ba515ca442fb1ea2b1be7d016ea887ffd2ded1 --- /dev/null +++ b/data/embeddings/8fi9o0y09mibdhjx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1433234fd45e0c18a300a27bdfb19a5fbea2a1b61852329105a5dea0a7f4d6c1 +size 1664 diff --git a/data/embeddings/8v5z0c8f2unrtshm.npy b/data/embeddings/8v5z0c8f2unrtshm.npy new file mode 100644 index 0000000000000000000000000000000000000000..8236e83812d0abfda7ea671efc416c93b2269a93 --- /dev/null +++ b/data/embeddings/8v5z0c8f2unrtshm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4470a9d704aadce553b09b5c7bd29c9f31729e2c93d69a68d6f5e57d393c5396 +size 1664 diff --git a/data/embeddings/9b91784d80d2d2776635a21f3216ad.npy b/data/embeddings/9b91784d80d2d2776635a21f3216ad.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088165ce3fa0015594d0031c51a3bbbc8a80edb --- /dev/null +++ b/data/embeddings/9b91784d80d2d2776635a21f3216ad.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d6caeb6dae68fadea174f8adc595bb3bc1216188f8b92f792f20caac0d5f43 +size 1664 diff --git a/data/embeddings/9ef3d77d6ba7aaa02fb07a20e65002.npy b/data/embeddings/9ef3d77d6ba7aaa02fb07a20e65002.npy new file mode 100644 index 0000000000000000000000000000000000000000..4e3ca731b3aea4d10c3803c60f47a1b114b6c82a --- /dev/null +++ b/data/embeddings/9ef3d77d6ba7aaa02fb07a20e65002.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a653922751b6c5715119d4ce97ff90aeedcfc4a471670bbb80f12c380de799 +size 1664 diff --git a/data/embeddings/9qgdm3pnsbmkj0bp.npy b/data/embeddings/9qgdm3pnsbmkj0bp.npy new file mode 100644 index 0000000000000000000000000000000000000000..d5830ee5e6b162d5dc42ea95eac5d92c83933e2b --- /dev/null +++ b/data/embeddings/9qgdm3pnsbmkj0bp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929ba574f5bd455116ef4d44f7d6fbd6d3d9a832adf7809a8067041169512471 +size 1664 diff --git a/data/embeddings/_3qzrqxl7iyc0kcw.npy b/data/embeddings/_3qzrqxl7iyc0kcw.npy new file mode 100644 index 0000000000000000000000000000000000000000..da100231f78ed72c46e7a95caf2fd8905ee00416 --- /dev/null +++ b/data/embeddings/_3qzrqxl7iyc0kcw.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a861fc61fb65647e34efe639bcf2d19700c2892be7ad5f46154d690ac55b07e +size 1664 diff --git a/data/embeddings/_72rkphcvkjmc7x.npy b/data/embeddings/_72rkphcvkjmc7x.npy new file mode 100644 index 0000000000000000000000000000000000000000..3cef6835a6d940f7120ad536f39cb31cbfbdc9d7 --- /dev/null +++ b/data/embeddings/_72rkphcvkjmc7x.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe57f5a778b3b819669abde2757d59379423606b131ea1742dbc17aaf3890d2 +size 1664 diff --git a/data/embeddings/_agckaq6h32ycmqi.npy b/data/embeddings/_agckaq6h32ycmqi.npy new file mode 100644 index 0000000000000000000000000000000000000000..4e8feaeff185ba00073236bbf53f350f5b9769bb --- /dev/null +++ b/data/embeddings/_agckaq6h32ycmqi.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc655444a1e15df3c6f9921689e0a1b829f5c8fbdc00af0e3ab2c0d1f6f2fc66 +size 1664 diff --git a/data/embeddings/_owxv_jrbidwkise.npy b/data/embeddings/_owxv_jrbidwkise.npy new file mode 100644 index 0000000000000000000000000000000000000000..76b3e0f9e529540925b95da8f34167019a863999 --- /dev/null +++ b/data/embeddings/_owxv_jrbidwkise.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7a4b940c5dd0817042ff53c5b3ea442c99583a3e5bd07cd5684a3afbfe8ab6 +size 1664 diff --git a/data/embeddings/a34e43fd73ea2615461fa0de628606.npy b/data/embeddings/a34e43fd73ea2615461fa0de628606.npy new file mode 100644 index 0000000000000000000000000000000000000000..181b465b872e3500468cacd0d9876430e0bd716e --- /dev/null +++ b/data/embeddings/a34e43fd73ea2615461fa0de628606.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8678fb6ae9cba5a79b0bfede24b9b3233328a2576e8368036b4be6a8098da7d2 +size 1664 diff --git a/data/embeddings/a44dde0bcf48418e421888ded96142.npy b/data/embeddings/a44dde0bcf48418e421888ded96142.npy new file mode 100644 index 0000000000000000000000000000000000000000..5faa980a0b447c2026aa4bc72da5d8c281dc73c7 --- /dev/null +++ b/data/embeddings/a44dde0bcf48418e421888ded96142.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e990a0de3d98e37bf2af7198ec6c7d6989336c5e60cbb894bfd76aa857086fab +size 1664 diff --git a/data/embeddings/actco41llg3epur.npy b/data/embeddings/actco41llg3epur.npy new file mode 100644 index 0000000000000000000000000000000000000000..3cc98976b6774b99e289ea031744be2950afe1c3 --- /dev/null +++ b/data/embeddings/actco41llg3epur.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59799bcbcc5cb515af1a4a1cfe046a21da142e82859c93900ffcf219e745cf1 +size 1664 diff --git a/data/embeddings/an_q8r53s3owf37dudylabcnyebkjh.npy b/data/embeddings/an_q8r53s3owf37dudylabcnyebkjh.npy new file mode 100644 index 0000000000000000000000000000000000000000..05cb8de5a9b9b07fd4adb372bab0c2af78e24ebd --- /dev/null +++ b/data/embeddings/an_q8r53s3owf37dudylabcnyebkjh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5207bfa17ad5ab9a28ca5b8aa392cc314293fd05937f1de7346ae860006dacb +size 1664 diff --git a/data/embeddings/animeduck.npy b/data/embeddings/animeduck.npy new file mode 100644 index 0000000000000000000000000000000000000000..923670614f2264f87014a3c6257dde925d92e315 --- /dev/null +++ b/data/embeddings/animeduck.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2109e11fd15445564ef3954a435c353cd4d5f37d3c8aa9dacfd4f8bcadb78a4e +size 1664 diff --git a/data/embeddings/aqmrivm3iqgohe81vfgdgu7snmiz86.npy b/data/embeddings/aqmrivm3iqgohe81vfgdgu7snmiz86.npy new file mode 100644 index 0000000000000000000000000000000000000000..44b46e9ff4165161b53f905b6fe3ff18914530c6 --- /dev/null +++ b/data/embeddings/aqmrivm3iqgohe81vfgdgu7snmiz86.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2f2374c32f5cce1e8a6800df2bbba0db79f559735b3d53ca9f2d4a26fcfe3b +size 1664 diff --git a/data/embeddings/aqn9uc0aud6ow22sxj3tpv3uvz68r7.npy b/data/embeddings/aqn9uc0aud6ow22sxj3tpv3uvz68r7.npy new file mode 100644 index 0000000000000000000000000000000000000000..ed79360ac1a1a03ea517f4ae7a24ac2ea5d47b6e --- /dev/null +++ b/data/embeddings/aqn9uc0aud6ow22sxj3tpv3uvz68r7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65cb0f9c26ddfd50926e1112789ab4acfd6baf885b7e0f87f731caa987b07119 +size 1664 diff --git a/data/embeddings/aqne9jk18ijvwlubrohcev2m4yp2ij.npy b/data/embeddings/aqne9jk18ijvwlubrohcev2m4yp2ij.npy new file mode 100644 index 0000000000000000000000000000000000000000..76951da160f867b992121fdfcfa7d099994b0b9a --- /dev/null +++ b/data/embeddings/aqne9jk18ijvwlubrohcev2m4yp2ij.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3785b7f478ac48ca93d00c0687e6fecf5ce6d4041bad36c39aff0199b9faf30b +size 1664 diff --git a/data/embeddings/aqo7pz0pctyxtrzizqwslc7yoih55s.npy b/data/embeddings/aqo7pz0pctyxtrzizqwslc7yoih55s.npy new file mode 100644 index 0000000000000000000000000000000000000000..eb61e83772ee8d4a6cacd6e60914ce59b84c7050 --- /dev/null +++ b/data/embeddings/aqo7pz0pctyxtrzizqwslc7yoih55s.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a7b7bb1bbbfa69cc781e3e03022676c178c64cb1ccccc687fd2101497658c0 +size 1664 diff --git a/data/embeddings/aqofilmwaebo4_vlclpo_roaqvryy9.npy b/data/embeddings/aqofilmwaebo4_vlclpo_roaqvryy9.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9ce004a504a4acbe90feb66e6de0c39363bef6e --- /dev/null +++ b/data/embeddings/aqofilmwaebo4_vlclpo_roaqvryy9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8a9ba453bf8419a97e5f3bc8f275f94261034954087f60d102f32b856e49d2 +size 1664 diff --git a/data/embeddings/aqp3jfzrryrsi0aq5lo1zsvpdvkkka.npy b/data/embeddings/aqp3jfzrryrsi0aq5lo1zsvpdvkkka.npy new file mode 100644 index 0000000000000000000000000000000000000000..7a3c31402037ee9a191385e014b8d1e7b1a7a1f9 --- /dev/null +++ b/data/embeddings/aqp3jfzrryrsi0aq5lo1zsvpdvkkka.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a8bacdb389f0b1701915163e23ba13983c29d2e0590bf280d86cfd2cf381dc +size 1664 diff --git a/data/embeddings/aqpa8vqffgf8chahe3ophfsvneqaf1.npy b/data/embeddings/aqpa8vqffgf8chahe3ophfsvneqaf1.npy new file mode 100644 index 0000000000000000000000000000000000000000..874f88c669e1c6a6377146eea7f045ad24acfa98 --- /dev/null +++ b/data/embeddings/aqpa8vqffgf8chahe3ophfsvneqaf1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07bce8e5f00218d7f4811abcae6c348a11bfe5b00d8aa46f4d8f586171e7cbb3 +size 1664 diff --git a/data/embeddings/ard7xnzrwsdsejur.npy b/data/embeddings/ard7xnzrwsdsejur.npy new file mode 100644 index 0000000000000000000000000000000000000000..cf5ec4403aa4263d8757c6b2177fcfb2b95fd3b5 --- /dev/null +++ b/data/embeddings/ard7xnzrwsdsejur.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e214ed82ba5ca38ffbdac4b25970deeb4ba8020293a87eebdaefb3c07f76829c +size 1664 diff --git a/data/embeddings/asdads.npy b/data/embeddings/asdads.npy new file mode 100644 index 0000000000000000000000000000000000000000..7e5f2d8815b19b000ae1d181698779d02cf884ec --- /dev/null +++ b/data/embeddings/asdads.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6eba8e15464782f3f92513e500ec9358373f67d77bcb853910242d3152a06c +size 1664 diff --git a/data/embeddings/asdasd.npy b/data/embeddings/asdasd.npy new file mode 100644 index 0000000000000000000000000000000000000000..353b30c55fd3759c7d16633e25d0d99487505623 --- /dev/null +++ b/data/embeddings/asdasd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e631bfb347453ad2513558f4a4b3f03164583486e885666cf0d0b042519e60 +size 1664 diff --git a/data/embeddings/asdasdadasd.npy b/data/embeddings/asdasdadasd.npy new file mode 100644 index 0000000000000000000000000000000000000000..da9fe696b6a8c1a1fcea8f97ebfdbfd7718c61aa --- /dev/null +++ b/data/embeddings/asdasdadasd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:226ae48e425741578e3cdc916a9860e0fa2ef1182eb712c98734347f9027f2f7 +size 1664 diff --git a/data/embeddings/asdasdads.npy b/data/embeddings/asdasdads.npy new file mode 100644 index 0000000000000000000000000000000000000000..c37b63aac18561495f2e3d2a85d58879e5199704 --- /dev/null +++ b/data/embeddings/asdasdads.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c976f321eee8e4fd16d16d4d1ab996f4cc4543a33a32749487fba17dd05f0ac6 +size 1664 diff --git a/data/embeddings/asdasdasdasdasdasd.npy b/data/embeddings/asdasdasdasdasdasd.npy new file mode 100644 index 0000000000000000000000000000000000000000..76acd0b4f09a552ab9352a8e2477b98a2a821422 --- /dev/null +++ b/data/embeddings/asdasdasdasdasdasd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb768234f83e3ef7b2eb77cc5ca83d097cc87a1b99c76d0a9b5e49a912af04d +size 1664 diff --git a/data/embeddings/asdjahsdkjhasd.npy b/data/embeddings/asdjahsdkjhasd.npy new file mode 100644 index 0000000000000000000000000000000000000000..b28b29ed94669156de6e888a10511fbcc760ce2f --- /dev/null +++ b/data/embeddings/asdjahsdkjhasd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abb1867b476828f728c657916dca063f3c7ba462759cfb81b368200ce089590 +size 1664 diff --git a/data/embeddings/atcm0h4ohnyo809lwilrmjp0eq720.npy b/data/embeddings/atcm0h4ohnyo809lwilrmjp0eq720.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc2986400653b602189e24df3c7ab02bf5d6797e --- /dev/null +++ b/data/embeddings/atcm0h4ohnyo809lwilrmjp0eq720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b4f2ed560665f8990751113342f0f270d38a378c08ed6173b45271e04cb9c3 +size 1664 diff --git a/data/embeddings/atcmkndoiqmxknsp11fubazygg.npy b/data/embeddings/atcmkndoiqmxknsp11fubazygg.npy new file mode 100644 index 0000000000000000000000000000000000000000..b925f8646c0578baf1bc55e366d7987a06eb0b87 --- /dev/null +++ b/data/embeddings/atcmkndoiqmxknsp11fubazygg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed233cbd4fadf7e21cc43e008feeb1ea067795cccba02ae78ea68070afe94b19 +size 1664 diff --git a/data/embeddings/b6km77y9umgddmcl.npy b/data/embeddings/b6km77y9umgddmcl.npy new file mode 100644 index 0000000000000000000000000000000000000000..e1c2a4411c553138af434750151c9eaace9ad85b --- /dev/null +++ b/data/embeddings/b6km77y9umgddmcl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce98c299c6a5ca70e854e5297125ccb1620d226123abb8bd9a5f627bb3033841 +size 1664 diff --git a/data/embeddings/b9ojoo2ezabflidp.npy b/data/embeddings/b9ojoo2ezabflidp.npy new file mode 100644 index 0000000000000000000000000000000000000000..9fa5132ca304dac9d375ce2ada61dad8dc36e9fb --- /dev/null +++ b/data/embeddings/b9ojoo2ezabflidp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58345b455df73150581915eb33585b9261868156bc6af98fa9e13e9f6bf6f115 +size 1664 diff --git a/data/embeddings/bc02da4a6f8c4ede27b1a529de4180.npy b/data/embeddings/bc02da4a6f8c4ede27b1a529de4180.npy new file mode 100644 index 0000000000000000000000000000000000000000..7af9d554c0b98fe60bbb9808787100e65d8f5449 --- /dev/null +++ b/data/embeddings/bc02da4a6f8c4ede27b1a529de4180.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ad5b2d9310bff51fe8da8840a6f3e70d6ef39f340497ddb22975aa9834218b +size 1664 diff --git a/data/embeddings/bhoyq9puxrtm65d.npy b/data/embeddings/bhoyq9puxrtm65d.npy new file mode 100644 index 0000000000000000000000000000000000000000..30a1159e3960a0e6e85d72fbb595a647755011a3 --- /dev/null +++ b/data/embeddings/bhoyq9puxrtm65d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360d15f05a3db436eb38ea4f586a43022003a67af90d07033fa8a5c2e2fc50b7 +size 1664 diff --git a/data/embeddings/binkyfish.npy b/data/embeddings/binkyfish.npy new file mode 100644 index 0000000000000000000000000000000000000000..4aa7cc4bba7aaed3261bb090f54d25e11a7478c1 --- /dev/null +++ b/data/embeddings/binkyfish.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4315abd2143ef12f938a090123a9ec2d22fe0b27eb2afeb4413319e35c46721 +size 1664 diff --git a/data/embeddings/birdsofoz_6871529526262893826.npy b/data/embeddings/birdsofoz_6871529526262893826.npy new file mode 100644 index 0000000000000000000000000000000000000000..96e9ac22397cfd306f864f5b4d5bf5da573a338c --- /dev/null +++ b/data/embeddings/birdsofoz_6871529526262893826.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03016dddfed66469ee7005601a0aa23ac0e38dbc98b9d20eb21ad38f5fbf0171 +size 1664 diff --git a/data/embeddings/bkxib3qhjezelv0e.npy b/data/embeddings/bkxib3qhjezelv0e.npy new file mode 100644 index 0000000000000000000000000000000000000000..66036011f148c5a2157769fc8a2bd1f3b661b3aa --- /dev/null +++ b/data/embeddings/bkxib3qhjezelv0e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6283ce96bd440eac1c19d360e983a8acc09455dcf1fc958e98bc860a38f86b04 +size 1664 diff --git a/data/embeddings/bqwv_r7ksyj_kbzt.npy b/data/embeddings/bqwv_r7ksyj_kbzt.npy new file mode 100644 index 0000000000000000000000000000000000000000..1ff876fd8bb3d04b3d45fe028f76b423ef859b8c --- /dev/null +++ b/data/embeddings/bqwv_r7ksyj_kbzt.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a39388d949ff43e33fe4beb96a5966a74797d5223963caf85869eae1dc80238 +size 1664 diff --git a/data/embeddings/browassweatinghardspellinggoti.npy b/data/embeddings/browassweatinghardspellinggoti.npy new file mode 100644 index 0000000000000000000000000000000000000000..d6d983d49cc389890316ccd101d8afaf1929ab2a --- /dev/null +++ b/data/embeddings/browassweatinghardspellinggoti.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ac300540799cce75bc27629492909e866d66d8a4d93be6e5300455ef5564f3 +size 1664 diff --git a/data/embeddings/burgerking.npy b/data/embeddings/burgerking.npy new file mode 100644 index 0000000000000000000000000000000000000000..69df03907172e1a193751a317c55df4c48b52f35 --- /dev/null +++ b/data/embeddings/burgerking.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16800b36f11af8a79de66d3864167e545e41a6122e48c60aa4934be5be5e152 +size 1664 diff --git a/data/embeddings/burritooo.npy b/data/embeddings/burritooo.npy new file mode 100644 index 0000000000000000000000000000000000000000..d4ce45b91176aa21c973fe75b533cda342fa6147 --- /dev/null +++ b/data/embeddings/burritooo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab086cc24c557ab8ce974208183584bcd1d8fefd43fafbae96275f93c461a200 +size 1664 diff --git a/data/embeddings/bvsd9zqxmf9xillu.npy b/data/embeddings/bvsd9zqxmf9xillu.npy new file mode 100644 index 0000000000000000000000000000000000000000..34415d8d6a5152a2d1d994bc2e8810f93d616942 --- /dev/null +++ b/data/embeddings/bvsd9zqxmf9xillu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736ab81113ebdd653399effd310a24ef134b31034163bfb2a8183c8a9c17cb3f +size 1664 diff --git a/data/embeddings/byhxpkhkfdrrlmy.npy b/data/embeddings/byhxpkhkfdrrlmy.npy new file mode 100644 index 0000000000000000000000000000000000000000..8dffc977231faebb4732f112eab8549fd0aecc63 --- /dev/null +++ b/data/embeddings/byhxpkhkfdrrlmy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1741cc9aca994abffef0731903b9a35bab85e539b3d9fd461d03817119ba372e +size 1664 diff --git a/data/embeddings/c8lrehkd1pyohsgk.npy b/data/embeddings/c8lrehkd1pyohsgk.npy new file mode 100644 index 0000000000000000000000000000000000000000..0de56f7d67365d8877030c370343270713d30913 --- /dev/null +++ b/data/embeddings/c8lrehkd1pyohsgk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e534727326ee22e3f6d1302888a259b925208c6a6d719c2099fd8ecaf42c09c6 +size 1664 diff --git a/data/embeddings/cageymeditatedhairy_457f04_117.npy b/data/embeddings/cageymeditatedhairy_457f04_117.npy new file mode 100644 index 0000000000000000000000000000000000000000..125af30f2e1ff9fce85bc161846990d0a2cbb2e6 --- /dev/null +++ b/data/embeddings/cageymeditatedhairy_457f04_117.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc2b5dfc30900f7c970febb9c6cb8d82f19080dda5029b10e5df0cb693373b6 +size 1664 diff --git a/data/embeddings/candlethatmakesyourheadablocko.npy b/data/embeddings/candlethatmakesyourheadablocko.npy new file mode 100644 index 0000000000000000000000000000000000000000..2ad5be8d72bb4f82f98c0eb5cb148dffd2305ab1 --- /dev/null +++ b/data/embeddings/candlethatmakesyourheadablocko.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce9cb5ec3bde627f8204ab3df6cb97eb878fb4d477caf53824698587d68956d +size 1664 diff --git a/data/embeddings/catjamkiss.npy b/data/embeddings/catjamkiss.npy new file mode 100644 index 0000000000000000000000000000000000000000..593447ee341da61e9856a19d2402975d003fc2c8 --- /dev/null +++ b/data/embeddings/catjamkiss.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f845b09244dd560a1394d5be120ee04a715b1e0c8db2f6b2809ff4d7cac69a04 +size 1664 diff --git a/data/embeddings/cb2.npy b/data/embeddings/cb2.npy new file mode 100644 index 0000000000000000000000000000000000000000..6d537968692280ff25e38c3bafba29ee2a05e27d --- /dev/null +++ b/data/embeddings/cb2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0798cead13cc2a240a517a4dc77dd428b87359b2e289b3fc70342758d7c9e19d +size 1664 diff --git a/data/embeddings/cd41c35762fc5843fdc8875521e45e.npy b/data/embeddings/cd41c35762fc5843fdc8875521e45e.npy new file mode 100644 index 0000000000000000000000000000000000000000..984344a20952c3b9f1b48695b31671af9c2e7a6e --- /dev/null +++ b/data/embeddings/cd41c35762fc5843fdc8875521e45e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21305802db7ff863cc835f34de61428f02380783ba1185c9326c4f0768956387 +size 1664 diff --git a/data/embeddings/ck13qbi4kodqdujz.npy b/data/embeddings/ck13qbi4kodqdujz.npy new file mode 100644 index 0000000000000000000000000000000000000000..19bef1620ad7bc41f246cbe1629e0d474587ac9f --- /dev/null +++ b/data/embeddings/ck13qbi4kodqdujz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8225398373951b939571e5ebe9c6d7bc0992b4e9d1dc2dbe42c97df008b33fb +size 1664 diff --git a/data/embeddings/ckpvwmqjsu4gho9y.npy b/data/embeddings/ckpvwmqjsu4gho9y.npy new file mode 100644 index 0000000000000000000000000000000000000000..1bbb655c3b98eac71b54daec644327a991703a0c --- /dev/null +++ b/data/embeddings/ckpvwmqjsu4gho9y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea33e092310c6e181c3d0dd8993910dc60da15d08f558d9f02e440325f3c2e3 +size 1664 diff --git a/data/embeddings/cmp1tz8yz088poaz.npy b/data/embeddings/cmp1tz8yz088poaz.npy new file mode 100644 index 0000000000000000000000000000000000000000..cc05340b412a84acf6e586bf91f26886678f99a2 --- /dev/null +++ b/data/embeddings/cmp1tz8yz088poaz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f7ebb36feb3f8507f407fee32c379eb5b74c19697d28c4fbd28f21e2b2aaa0 +size 1664 diff --git a/data/embeddings/cp5fxsjdcks0bafp.npy b/data/embeddings/cp5fxsjdcks0bafp.npy new file mode 100644 index 0000000000000000000000000000000000000000..236af2af1d08b28484c31d738e6c1dc500cc5a31 --- /dev/null +++ b/data/embeddings/cp5fxsjdcks0bafp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723f15bff3b76b65b6a62a3c15e5b1623fdacc3fe3e5230b321f9704a435cb64 +size 1664 diff --git a/data/embeddings/d05b54c356bbdd9475e39167a10f95.npy b/data/embeddings/d05b54c356bbdd9475e39167a10f95.npy new file mode 100644 index 0000000000000000000000000000000000000000..af7f8dc8074155572a97d3636ea05bc0c1785f89 --- /dev/null +++ b/data/embeddings/d05b54c356bbdd9475e39167a10f95.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578a50fb3e3ea1e50a59efb4fc5bd851a87c6dca871a2299b852b5d278684d01 +size 1664 diff --git a/data/embeddings/d0wtghlwsaiu0se.npy b/data/embeddings/d0wtghlwsaiu0se.npy new file mode 100644 index 0000000000000000000000000000000000000000..0cdc620f14aa4d8fb83179fad6bcf77d1c8b8b12 --- /dev/null +++ b/data/embeddings/d0wtghlwsaiu0se.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20194c9e6a5c8b093511ab2c611000849a903cee3fdbb25c5563c6ebb4375887 +size 1664 diff --git a/data/embeddings/d1ivxtow0aitywfjpglarge.npy b/data/embeddings/d1ivxtow0aitywfjpglarge.npy new file mode 100644 index 0000000000000000000000000000000000000000..7992efdd5a1bf407a74ff4071c012343de8e712a --- /dev/null +++ b/data/embeddings/d1ivxtow0aitywfjpglarge.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ff3875b224244151cdcc523f2daff1500769a557aad82c227d5dce0c8a00a0 +size 1664 diff --git a/data/embeddings/d3kxq61uwaa9mh1.npy b/data/embeddings/d3kxq61uwaa9mh1.npy new file mode 100644 index 0000000000000000000000000000000000000000..5ce5bc0267d14edd97bdb12529607140507ec589 --- /dev/null +++ b/data/embeddings/d3kxq61uwaa9mh1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9616f68d4d2fafc54d826e9a119e5c5e805d857bef29e6133b391497e0082 +size 1664 diff --git a/data/embeddings/d5_sl6ew4ael8js.npy b/data/embeddings/d5_sl6ew4ael8js.npy new file mode 100644 index 0000000000000000000000000000000000000000..6bd9fa5bb4030912ed1c4bad091b22ae3fb06b76 --- /dev/null +++ b/data/embeddings/d5_sl6ew4ael8js.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045229ee7f0e67ccd83c19bb253d04887550c8958eb1f1cbbcea607114eccfee +size 1664 diff --git a/data/embeddings/dallemini_2022618_234934.npy b/data/embeddings/dallemini_2022618_234934.npy new file mode 100644 index 0000000000000000000000000000000000000000..3ee8b869571bd6616a35c235a2cc0b7c52c1fe81 --- /dev/null +++ b/data/embeddings/dallemini_2022618_234934.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8687c9c2dae5e6aa8b6533d74dbc8a48ef9c4d0fdf029d7a9323d61e94192661 +size 1664 diff --git a/data/embeddings/dimglz1zw5ih35l9.npy b/data/embeddings/dimglz1zw5ih35l9.npy new file mode 100644 index 0000000000000000000000000000000000000000..481fcd50ed44b1c35e9209fe9a20df9a3e27ae6d --- /dev/null +++ b/data/embeddings/dimglz1zw5ih35l9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb4e48867822d693c0d90929dd4e21a884ee465febae1628ec0f373e7832248 +size 1664 diff --git a/data/embeddings/doctor.npy b/data/embeddings/doctor.npy new file mode 100644 index 0000000000000000000000000000000000000000..406e4750e974d33d0f321e0a8fe1cb7ec48a2c51 --- /dev/null +++ b/data/embeddings/doctor.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03c172ed591e6e88e8e018476cefab4e5a9fb32329ff72ac00d0c2dc75a3ef7 +size 1664 diff --git a/data/embeddings/doge1.npy b/data/embeddings/doge1.npy new file mode 100644 index 0000000000000000000000000000000000000000..fc88eba9a786c76423430e6bc5ba611b186b4d5c --- /dev/null +++ b/data/embeddings/doge1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58b0973386cd04c65ca93047c9cbd840f0801fb4fe27820e1596c64602834bf +size 1664 diff --git a/data/embeddings/doge2.npy b/data/embeddings/doge2.npy new file mode 100644 index 0000000000000000000000000000000000000000..ebec9f84b97f618327a1a9c226d99fcc3dbef3fd --- /dev/null +++ b/data/embeddings/doge2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26555f5e265dbf75685f01d542782790eb12da47c0603f2a773dcc3347478a25 +size 1664 diff --git a/data/embeddings/doughslappin.npy b/data/embeddings/doughslappin.npy new file mode 100644 index 0000000000000000000000000000000000000000..63dc63937708c608dc93734a99d20bf65d2dc299 --- /dev/null +++ b/data/embeddings/doughslappin.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12621038398bf3d49ffbf50215018576bf39034655f5c2e807f84495748ef8ec +size 1664 diff --git a/data/embeddings/download.npy b/data/embeddings/download.npy new file mode 100644 index 0000000000000000000000000000000000000000..f2d7ff2da0d2276a862130f65b0698317f76e6c9 --- /dev/null +++ b/data/embeddings/download.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e2648e3490c461ce9fef1d52b1580e1f636be420a1ec3990d623dbec7ef166 +size 1664 diff --git a/data/embeddings/download1.npy b/data/embeddings/download1.npy new file mode 100644 index 0000000000000000000000000000000000000000..e8e03df18f6e089a87c6e6eda89af45db0134dde --- /dev/null +++ b/data/embeddings/download1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509e044d7b1182e9cb79685bc1aa2f3d5caf8a02acb52e0381eff85e09044c32 +size 1664 diff --git a/data/embeddings/download2.npy b/data/embeddings/download2.npy new file mode 100644 index 0000000000000000000000000000000000000000..06757464986dc6d1b1af2bb9a1d6c9c712520ecd --- /dev/null +++ b/data/embeddings/download2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b047ae0f26370c421c7bb6a69a5a4ca742c3fe7a1f990ff0f32f28891968e024 +size 1664 diff --git a/data/embeddings/download3.npy b/data/embeddings/download3.npy new file mode 100644 index 0000000000000000000000000000000000000000..5d0027a5a51c3f442b4ec7828fa28d794a5899bb --- /dev/null +++ b/data/embeddings/download3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6333429430106cd643db6848012653d99c84a9ff4c685e7bb8d67976140b3d17 +size 1664 diff --git a/data/embeddings/download5.npy b/data/embeddings/download5.npy new file mode 100644 index 0000000000000000000000000000000000000000..84405dfd062632695f6db0db432d46389cdcccef --- /dev/null +++ b/data/embeddings/download5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b406ae3f929c3c244fc1b788bff6b3288f397474e7ca10da075f8bba51dc446f +size 1664 diff --git a/data/embeddings/drqhjjowkaal0wr.npy b/data/embeddings/drqhjjowkaal0wr.npy new file mode 100644 index 0000000000000000000000000000000000000000..d9ca0f76a1ed67b1553a08e1ff1c2321f1470871 --- /dev/null +++ b/data/embeddings/drqhjjowkaal0wr.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e506845574aa144f2e785d3beaa1292c1b8adbfeb66b1c9594c949748fbe5b1c +size 1664 diff --git a/data/embeddings/dt1gybauuaacxpl.npy b/data/embeddings/dt1gybauuaacxpl.npy new file mode 100644 index 0000000000000000000000000000000000000000..2226fa3f6b64fceb5a4826dd409d374178c476e3 --- /dev/null +++ b/data/embeddings/dt1gybauuaacxpl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3680fb4fa22f066c5bbc0090919ed68d9b6af03e4cafd9df51b900f055420f1c +size 1664 diff --git a/data/embeddings/dvwsbx8xgaao9la.npy b/data/embeddings/dvwsbx8xgaao9la.npy new file mode 100644 index 0000000000000000000000000000000000000000..f1388d80b289358145fca5db7e11660e4076ffaa --- /dev/null +++ b/data/embeddings/dvwsbx8xgaao9la.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb923b6a8bdc980a9c4c422ba61b567662151534a268e71aea4f9abe8600d8d +size 1664 diff --git a/data/embeddings/dynamicpurplesore_8ace6a_10258.npy b/data/embeddings/dynamicpurplesore_8ace6a_10258.npy new file mode 100644 index 0000000000000000000000000000000000000000..a55456c404cff2dfc87a6d2547f5f07a96076396 --- /dev/null +++ b/data/embeddings/dynamicpurplesore_8ace6a_10258.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679707b5e7fa029643c9f4f1dd02b685eedcadf07af804acca57562bd1e7f802 +size 1664 diff --git a/data/embeddings/dyyzulvumqezdmd.npy b/data/embeddings/dyyzulvumqezdmd.npy new file mode 100644 index 0000000000000000000000000000000000000000..e4a9a20ca5102a2efc56282722a16e72df0eb9de --- /dev/null +++ b/data/embeddings/dyyzulvumqezdmd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd558c2a6e3189680bf089c15dc002a5a30a48692b83db5a6c4a664475232762 +size 1664 diff --git a/data/embeddings/e10dcb8b535edda1d59de9c6576583.npy b/data/embeddings/e10dcb8b535edda1d59de9c6576583.npy new file mode 100644 index 0000000000000000000000000000000000000000..c9321a642f5abfd246ee7d90fc5e64e398e3d74c --- /dev/null +++ b/data/embeddings/e10dcb8b535edda1d59de9c6576583.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd914e6c86ca21cb621fb67dd1947406db8b9e55400883b9190a9c2e1ced9298 +size 1664 diff --git a/data/embeddings/ebbtg6wwaaeu0i.npy b/data/embeddings/ebbtg6wwaaeu0i.npy new file mode 100644 index 0000000000000000000000000000000000000000..65c12e24293857bd8539471da22da3e6cc183879 --- /dev/null +++ b/data/embeddings/ebbtg6wwaaeu0i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058f15faf3c8df7a18d6b89e2fde8449b56aaf515e02b9ffa49a0065c48d9b26 +size 1664 diff --git a/data/embeddings/ebqabllxsaaznnq.npy b/data/embeddings/ebqabllxsaaznnq.npy new file mode 100644 index 0000000000000000000000000000000000000000..56cef78f164a7c4bca396aa9adb93b45aac599c9 --- /dev/null +++ b/data/embeddings/ebqabllxsaaznnq.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7eac5fbdc9dd75a2e56581ce57c5e6dc4936c67d855f4df7d6a647c2a9d2035 +size 1664 diff --git a/data/embeddings/echidna_bathurst_1000.npy b/data/embeddings/echidna_bathurst_1000.npy new file mode 100644 index 0000000000000000000000000000000000000000..81e0a9ebd8b6bcb5f2aba24dfba6d917676bc35c --- /dev/null +++ b/data/embeddings/echidna_bathurst_1000.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c3640d9a430fa1f2419f6c475cb53163215ec0b488344c74f34860c853cbf3 +size 1664 diff --git a/data/embeddings/edrdpeft6fnvawjm.npy b/data/embeddings/edrdpeft6fnvawjm.npy new file mode 100644 index 0000000000000000000000000000000000000000..98ad8f493f2df906293d0c801035a9e25fb3d438 --- /dev/null +++ b/data/embeddings/edrdpeft6fnvawjm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc13db267634a7b08355fad9e2913700cd49e917d05d854dc622de61a02e505 +size 1664 diff --git a/data/embeddings/eefxrokxoaimik1.npy b/data/embeddings/eefxrokxoaimik1.npy new file mode 100644 index 0000000000000000000000000000000000000000..c7c9de797bb632105d1d8b09ce480234f4d96030 --- /dev/null +++ b/data/embeddings/eefxrokxoaimik1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b62d4a374701753b699e018d9761af87f25910098fb6fd1aa9b86a776c5d3a0 +size 1664 diff --git a/data/embeddings/eemaaw3xkaevhfb.npy b/data/embeddings/eemaaw3xkaevhfb.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d819b71a24b4ea440156b7f4bb88241becbce8b --- /dev/null +++ b/data/embeddings/eemaaw3xkaevhfb.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bfcf090ed195cc7fdbda6716bca1c063cd24985bf1ae7af1872968052dce753 +size 1664 diff --git a/data/embeddings/elpegl8wkaarda4.npy b/data/embeddings/elpegl8wkaarda4.npy new file mode 100644 index 0000000000000000000000000000000000000000..c2a7141b7e9969fb42306e7a361c377889d3da56 --- /dev/null +++ b/data/embeddings/elpegl8wkaarda4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69523ee8c21aab41c8207923f5397e73e407217df38c752ce9ef6e838f964540 +size 1664 diff --git a/data/embeddings/elpegl8wkaarda4sticker.npy b/data/embeddings/elpegl8wkaarda4sticker.npy new file mode 100644 index 0000000000000000000000000000000000000000..6df9dee921e7fce3b1142cbdfee35f935dbb487a --- /dev/null +++ b/data/embeddings/elpegl8wkaarda4sticker.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d055261e78baa422d9b84f2b5c5712762aa310c8283e68dbd7d97450ba390e5e +size 1664 diff --git a/data/embeddings/em2dcacvuaanu9c.npy b/data/embeddings/em2dcacvuaanu9c.npy new file mode 100644 index 0000000000000000000000000000000000000000..acd94e2ba64315847000f26a644e79bf7eb15485 --- /dev/null +++ b/data/embeddings/em2dcacvuaanu9c.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f693fd1eededdf2bbc652f63c248303cc9f313158c86a50f2fbd13a661725fac +size 1664 diff --git a/data/embeddings/emma_6872821372339408134.npy b/data/embeddings/emma_6872821372339408134.npy new file mode 100644 index 0000000000000000000000000000000000000000..b3e8abea9272a5c40d887c2d27d764bce165fcdd --- /dev/null +++ b/data/embeddings/emma_6872821372339408134.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02d44ba800a9f8f8672dbfd4580a09b62e1b608d9f1af549d99f54e2c6ca1485 +size 1664 diff --git a/data/embeddings/eyqjvqeucaapaw.npy b/data/embeddings/eyqjvqeucaapaw.npy new file mode 100644 index 0000000000000000000000000000000000000000..7e1e5fe178f946da1b99665447a977fc0a35e0e8 --- /dev/null +++ b/data/embeddings/eyqjvqeucaapaw.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fd665203ee2937fe8933302a32454a689866265548a2b30a0fd09b16672ba9 +size 1664 diff --git a/data/embeddings/ezy427jwkaeejrr.npy b/data/embeddings/ezy427jwkaeejrr.npy new file mode 100644 index 0000000000000000000000000000000000000000..4ecce9823f067263aabaabc86af6ab95f5ce3aad --- /dev/null +++ b/data/embeddings/ezy427jwkaeejrr.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87326f4fd71e0a74d2650819914285a528ea5a409e2f74ce9bce0e362dd9e51 +size 1664 diff --git a/data/embeddings/f038534e564e43aa05d55b7c01c0b7.npy b/data/embeddings/f038534e564e43aa05d55b7c01c0b7.npy new file mode 100644 index 0000000000000000000000000000000000000000..0b5d8cc1d9ec7d94e1bfb5e39a8ad1df8b44cb3d --- /dev/null +++ b/data/embeddings/f038534e564e43aa05d55b7c01c0b7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b894cece495393b30bbb9d8d5b1ef01a5a45fa1de99361769c95edaf700b96 +size 1664 diff --git a/data/embeddings/f3avkgppaa9jo6it.npy b/data/embeddings/f3avkgppaa9jo6it.npy new file mode 100644 index 0000000000000000000000000000000000000000..29c885a7b42121540486b34f345f20de17adc3b9 --- /dev/null +++ b/data/embeddings/f3avkgppaa9jo6it.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb697b4029f00e5622155fba46eaf593a992c66ab4f9b70a4f26460f119858c0 +size 1664 diff --git a/data/embeddings/f6qsf0krrv9gnro5.npy b/data/embeddings/f6qsf0krrv9gnro5.npy new file mode 100644 index 0000000000000000000000000000000000000000..12bccf543054c740d0e38dda6e3c0796884002c9 --- /dev/null +++ b/data/embeddings/f6qsf0krrv9gnro5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75cc85e9a2a1b523a39b29d6226c9adb24c92dfa507a7b93c465f9f68d4619c0 +size 1664 diff --git a/data/embeddings/fave.npy b/data/embeddings/fave.npy new file mode 100644 index 0000000000000000000000000000000000000000..3ea633416aee9efb1dc786145f33bf013ac409e3 --- /dev/null +++ b/data/embeddings/fave.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0587301fd2809bf0bb831c1b49a59a8d354d7bfa66c8d1ad560b8e5770a6f8 +size 1664 diff --git a/data/embeddings/fggsy5eqparmcqef.npy b/data/embeddings/fggsy5eqparmcqef.npy new file mode 100644 index 0000000000000000000000000000000000000000..f297932025c08838c6924a30a02f833a3e999f8c --- /dev/null +++ b/data/embeddings/fggsy5eqparmcqef.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:497b5534fb9a5c269e529ed09c1c2fa334b27ec2c40203af55499c51dc296cae +size 1664 diff --git a/data/embeddings/fh1qguhx_5xlriga.npy b/data/embeddings/fh1qguhx_5xlriga.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4e68aaac5319228b186e78f54d08ac5822de629 --- /dev/null +++ b/data/embeddings/fh1qguhx_5xlriga.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee205d0d6db5b062ebc3bc43c74652b9ac7d3e869afebe52b19a8039bd48e076 +size 1664 diff --git a/data/embeddings/fish.npy b/data/embeddings/fish.npy new file mode 100644 index 0000000000000000000000000000000000000000..2e90f8e95ce3ce82a0ca7b0b894bfafebb482771 --- /dev/null +++ b/data/embeddings/fish.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1435c2a49223f16d81f8acc9b60d4474633a44ca61b5fb87bac612e7c4c538d9 +size 1664 diff --git a/data/embeddings/fjb9glvwuaubrb6.npy b/data/embeddings/fjb9glvwuaubrb6.npy new file mode 100644 index 0000000000000000000000000000000000000000..28953813453cbd2f399e224cf1347d3b8444987d --- /dev/null +++ b/data/embeddings/fjb9glvwuaubrb6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa730b003a2dd386a41be191c799c080f2eda4a814505045436bfa927e0f4da7 +size 1664 diff --git a/data/embeddings/fliestony.npy b/data/embeddings/fliestony.npy new file mode 100644 index 0000000000000000000000000000000000000000..2105125b833bd8bcb3289726a6b89bc0ccd02b0e --- /dev/null +++ b/data/embeddings/fliestony.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29403d91a3c6ef80dd24d0d7b54d7da8691597ff176572ae0a7ccfd6d899cf6c +size 1664 diff --git a/data/embeddings/fshgrbywoaio8r88.npy b/data/embeddings/fshgrbywoaio8r88.npy new file mode 100644 index 0000000000000000000000000000000000000000..18c6840f7c44e8ddc956a1405991b0244a5a7539 --- /dev/null +++ b/data/embeddings/fshgrbywoaio8r88.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a2b692c04b14be367faebc05b57de2ad9b28a31a090c38d733a8b9d1ec5674 +size 1664 diff --git a/data/embeddings/fvdcf4md7mfdzchx.npy b/data/embeddings/fvdcf4md7mfdzchx.npy new file mode 100644 index 0000000000000000000000000000000000000000..6f0e7bb325c19401cb9f9e6eb7ef30481c282c38 --- /dev/null +++ b/data/embeddings/fvdcf4md7mfdzchx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d804ffe3919ab653e40b3e8d2571b1bfa6a7625524dab82cb0bb84bc7321003 +size 1664 diff --git a/data/embeddings/fyng5h5zmbgx_lji.npy b/data/embeddings/fyng5h5zmbgx_lji.npy new file mode 100644 index 0000000000000000000000000000000000000000..df78e02bad48bb06f04ed054c387fe6350d7d406 --- /dev/null +++ b/data/embeddings/fyng5h5zmbgx_lji.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e162542723f1d77b981d7b2f4ee81cf7b685d3b68702c6de3fe49dbb5342a68 +size 1664 diff --git a/data/embeddings/fzuv04xwamwec_.npy b/data/embeddings/fzuv04xwamwec_.npy new file mode 100644 index 0000000000000000000000000000000000000000..b26ed2d8435cecc5d77724d8fbf3b96583925daa --- /dev/null +++ b/data/embeddings/fzuv04xwamwec_.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce20e898288f72939d3670700be6b5aa8a0ca23f80bf0cf67720e23ee5d2f85 +size 1664 diff --git a/data/embeddings/generalincomprehensibleinking_.npy b/data/embeddings/generalincomprehensibleinking_.npy new file mode 100644 index 0000000000000000000000000000000000000000..bccea6165c2fbb8a42d18fed4356cfbe10bbae49 --- /dev/null +++ b/data/embeddings/generalincomprehensibleinking_.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0af1e50dc23a5fb13c5a42f5b402e6fa513b85b9d273b03fc6d3db0672c5fd5 +size 1664 diff --git a/data/embeddings/gettingchanged.npy b/data/embeddings/gettingchanged.npy new file mode 100644 index 0000000000000000000000000000000000000000..8a90630c949f2fc922045368a59b07ca2ee45cc3 --- /dev/null +++ b/data/embeddings/gettingchanged.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942a8c68835eec1697d0303f7f685c6f3d581500381cc42dbe5253116ae37ef6 +size 1664 diff --git a/data/embeddings/ha5cgwzrlbfpagun.npy b/data/embeddings/ha5cgwzrlbfpagun.npy new file mode 100644 index 0000000000000000000000000000000000000000..9b9b5f187cc726a15bcd2852c5072646f6003361 --- /dev/null +++ b/data/embeddings/ha5cgwzrlbfpagun.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a342d9b5f8f836cdc00c210b0a417a46ac0ae3267dc37b3d21a8821e03bf0da +size 1664 diff --git a/data/embeddings/hbkm4n0dzn0o2ncj.npy b/data/embeddings/hbkm4n0dzn0o2ncj.npy new file mode 100644 index 0000000000000000000000000000000000000000..9323d31b22579504cf0f231389a5566908d3a7ea --- /dev/null +++ b/data/embeddings/hbkm4n0dzn0o2ncj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f699f753645f8802ae81145165323367cd5b83f09f80426d919915f85c8224 +size 1664 diff --git a/data/embeddings/hd6is8jqsygkdzi8.npy b/data/embeddings/hd6is8jqsygkdzi8.npy new file mode 100644 index 0000000000000000000000000000000000000000..c38d90dad49fd07c34556b52535dd1a2583df648 --- /dev/null +++ b/data/embeddings/hd6is8jqsygkdzi8.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d62349a33ad276498191163fa5a90f6953f8a631ac9dc6b9f3cf623c8ce5737 +size 1664 diff --git a/data/embeddings/hergh.npy b/data/embeddings/hergh.npy new file mode 100644 index 0000000000000000000000000000000000000000..8ec289a9409fd72c07c248c0fa127e32ed5b3eed --- /dev/null +++ b/data/embeddings/hergh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2851b592ec371b6224b7ab2bf06db34a6aedd93d7df84a44d2c4db19c171eed +size 1664 diff --git a/data/embeddings/horrorgame.npy b/data/embeddings/horrorgame.npy new file mode 100644 index 0000000000000000000000000000000000000000..f37865ebbac50001395950f50307a7097e69a1c2 --- /dev/null +++ b/data/embeddings/horrorgame.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17330cb423e98cae6e0cebef5c6ed4e48d54b7b1149cadce0bf1b955b62ffabb +size 1664 diff --git a/data/embeddings/howlandnovathecollies_68738638.npy b/data/embeddings/howlandnovathecollies_68738638.npy new file mode 100644 index 0000000000000000000000000000000000000000..0fd2c514cf3499784ee501f277bb740c6ec62160 --- /dev/null +++ b/data/embeddings/howlandnovathecollies_68738638.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3fe80a3b9f309a0a978f8391c2b492b60c0c2843f7a4f969b0da8d7eb91a49 +size 1664 diff --git a/data/embeddings/htdtdxauioztf.npy b/data/embeddings/htdtdxauioztf.npy new file mode 100644 index 0000000000000000000000000000000000000000..2d416f234535cfdbf6eecf3b39fb00b977611dee --- /dev/null +++ b/data/embeddings/htdtdxauioztf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30510f55241d4461d7f11678eeb3f9a85b24c534f01186c13ce824e621b0aad +size 1664 diff --git a/data/embeddings/hzdrbjmjnjmlpuls.npy b/data/embeddings/hzdrbjmjnjmlpuls.npy new file mode 100644 index 0000000000000000000000000000000000000000..797516515ca427e363b9ed96256c2a06c872129e --- /dev/null +++ b/data/embeddings/hzdrbjmjnjmlpuls.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c31c03ba363c8e184dae14d1c68b1329a7b42fb1cd4a430458452004f7731e96 +size 1664 diff --git a/data/embeddings/i0red7yngpkcrase.npy b/data/embeddings/i0red7yngpkcrase.npy new file mode 100644 index 0000000000000000000000000000000000000000..7d74bd0202a12a48ea7f4b59e6504bc24bbcf84e --- /dev/null +++ b/data/embeddings/i0red7yngpkcrase.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d5f17f77b03d6dd3643eac46d8e42632cbfa78a7488e7d667a868b698b980f +size 1664 diff --git a/data/embeddings/i565oygnmhnpp03u.npy b/data/embeddings/i565oygnmhnpp03u.npy new file mode 100644 index 0000000000000000000000000000000000000000..7dd95c003df1ec95cf5bc470bcaf3794c35c17da --- /dev/null +++ b/data/embeddings/i565oygnmhnpp03u.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd60b5dbcda17d8656b8754ab537e309ba420c88c517e701d0faabac2129090a +size 1664 diff --git a/data/embeddings/ibisv9rsbrlrbvnnwaboplar0hdp3g.npy b/data/embeddings/ibisv9rsbrlrbvnnwaboplar0hdp3g.npy new file mode 100644 index 0000000000000000000000000000000000000000..498c4a99d4ca76fef4aab6e2b9013f9e14f25977 --- /dev/null +++ b/data/embeddings/ibisv9rsbrlrbvnnwaboplar0hdp3g.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77d9adf003baa4ba4b54675c1800675bd4d7c841aa0310df4e313ab4533083f +size 1664 diff --git a/data/embeddings/igvideo1_1.npy b/data/embeddings/igvideo1_1.npy new file mode 100644 index 0000000000000000000000000000000000000000..7aff27ad4fb33fc2bd89195b4b2b24b004280a85 --- /dev/null +++ b/data/embeddings/igvideo1_1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6d176a80fb66f0ee38ba86ef8ccd13b6c41e4a8ccab64cad8132300b02eacf +size 1664 diff --git a/data/embeddings/images.npy b/data/embeddings/images.npy new file mode 100644 index 0000000000000000000000000000000000000000..6ab6292982cbdbda02e7c78f930337c91fe8b86b --- /dev/null +++ b/data/embeddings/images.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70a4a76968ee402f845c72e0162b6b6d38a6d68cb86eab680e7ec3bb934b447 +size 1664 diff --git a/data/embeddings/index.npy b/data/embeddings/index.npy new file mode 100644 index 0000000000000000000000000000000000000000..06e19e33e683bc1bf5ece360d3c3649b3a52427b --- /dev/null +++ b/data/embeddings/index.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0c4394eedaa3935fa59a6569efa957b0252e11eaa6b884ffe8274c527c2506 +size 1664 diff --git a/data/embeddings/injuriousoperatinghappygolucky.npy b/data/embeddings/injuriousoperatinghappygolucky.npy new file mode 100644 index 0000000000000000000000000000000000000000..302e1741db269060106c9eb4cf36128083439e32 --- /dev/null +++ b/data/embeddings/injuriousoperatinghappygolucky.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f4b4980f21bd9d4cdb95c81b3b82b8f11ba5a069cdfa38f1001c4c78651c243 +size 1664 diff --git a/data/embeddings/insanewellgroomedaccountant_4b.npy b/data/embeddings/insanewellgroomedaccountant_4b.npy new file mode 100644 index 0000000000000000000000000000000000000000..0a4190d126e7c6d3012266e84611450fefbea2d2 --- /dev/null +++ b/data/embeddings/insanewellgroomedaccountant_4b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b89986e1b9480983b03ea470235ebbb9c0eb7a8e79a2c349a7ff4930c0b3804 +size 1664 diff --git a/data/embeddings/jad59lwdmidb6di6.npy b/data/embeddings/jad59lwdmidb6di6.npy new file mode 100644 index 0000000000000000000000000000000000000000..1451c70cbd174c17d811aae0096fc2056393ab5d --- /dev/null +++ b/data/embeddings/jad59lwdmidb6di6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec7a5fe1d4b9eb58b30127dbd44409af7e778cdfff80b53455e54aefe24cdfa +size 1664 diff --git a/data/embeddings/jaypee_6865092104721304837.npy b/data/embeddings/jaypee_6865092104721304837.npy new file mode 100644 index 0000000000000000000000000000000000000000..5193aa1ac06503d4a0182da1a0c137320967011b --- /dev/null +++ b/data/embeddings/jaypee_6865092104721304837.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80610ab5f269e25575cda0e0efa4f9a96bc4bf077f96828b5b5a34e145727480 +size 1664 diff --git a/data/embeddings/jc_jmovgi1io0dxl.npy b/data/embeddings/jc_jmovgi1io0dxl.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a861566ed73f7e560018d7856ba52dbff9366ca --- /dev/null +++ b/data/embeddings/jc_jmovgi1io0dxl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8a0bdddd8b62e469c1c14c1655fe4890282e819520d9ad7abdcf3a24e1bf38 +size 1664 diff --git a/data/embeddings/jkzc7etuubg25vfd.npy b/data/embeddings/jkzc7etuubg25vfd.npy new file mode 100644 index 0000000000000000000000000000000000000000..694387e2cc71840ad1b3487b1d75f816a97f8276 --- /dev/null +++ b/data/embeddings/jkzc7etuubg25vfd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced9399a1da1b08bd181a185ff6d8a204c925588da561710b78145e6e988f3b8 +size 1664 diff --git a/data/embeddings/jordanpetersontakesaload.npy b/data/embeddings/jordanpetersontakesaload.npy new file mode 100644 index 0000000000000000000000000000000000000000..34ec821b706040e1b2c213242ade191b3dbf3b31 --- /dev/null +++ b/data/embeddings/jordanpetersontakesaload.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78fc4539d5ba27515d1695927bdff638a739d20df2a8e64c9289248a1aa44b38 +size 1664 diff --git a/data/embeddings/jux8fsykzs7_niu.npy b/data/embeddings/jux8fsykzs7_niu.npy new file mode 100644 index 0000000000000000000000000000000000000000..01c6832a8811cf65c1f998f3ed83333cd2e869e9 --- /dev/null +++ b/data/embeddings/jux8fsykzs7_niu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2b96b9f088732ccf0bdbf74fa69974bb409745cf155b4b8461865a130884f9 +size 1664 diff --git a/data/embeddings/k1fua2a6zgweix27.npy b/data/embeddings/k1fua2a6zgweix27.npy new file mode 100644 index 0000000000000000000000000000000000000000..0eef9518b5502ebfa9542ad4d8a71947587da45e --- /dev/null +++ b/data/embeddings/k1fua2a6zgweix27.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ecd1807f15fa9a39c1f6201c3c6d93b982c93d45b42c42583e0a34509d0aff3 +size 1664 diff --git a/data/embeddings/k2iwgp7o9c8w8a_o.npy b/data/embeddings/k2iwgp7o9c8w8a_o.npy new file mode 100644 index 0000000000000000000000000000000000000000..1ee050c0781fd73cad4d915ab4b4f8f48fa1076a --- /dev/null +++ b/data/embeddings/k2iwgp7o9c8w8a_o.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97e4abb39ca6c1cbe2cb6795fc399edb5538ebb6c380fd14bd640cb9cb8ebb05 +size 1664 diff --git a/data/embeddings/k6reuef_4oowg9a.npy b/data/embeddings/k6reuef_4oowg9a.npy new file mode 100644 index 0000000000000000000000000000000000000000..d557de30cb92eade8dca07ef0f7760b33a497e13 --- /dev/null +++ b/data/embeddings/k6reuef_4oowg9a.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7661fa3f6de7739af93a5559e18b5a2d5bf4a696b0c4b5a5ed1f6732443e6e4f +size 1664 diff --git a/data/embeddings/kaputformativetaut_03d7f7_1228.npy b/data/embeddings/kaputformativetaut_03d7f7_1228.npy new file mode 100644 index 0000000000000000000000000000000000000000..883ad17370189b45390b0de4493cdb153f81b5ad --- /dev/null +++ b/data/embeddings/kaputformativetaut_03d7f7_1228.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee8568a6373260aeb4f9cde04e3f73f9797359a7c92cece6e920286ead3f395 +size 1664 diff --git a/data/embeddings/khakmqdidbaoy8qc.npy b/data/embeddings/khakmqdidbaoy8qc.npy new file mode 100644 index 0000000000000000000000000000000000000000..f80a7064609162c8b18ad350c2d43d87a02f2b09 --- /dev/null +++ b/data/embeddings/khakmqdidbaoy8qc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7b23444a9c748528b8151bc0c00540b44a1cd44149ed436eb0b0149ae4c6b6 +size 1664 diff --git a/data/embeddings/kounterkittyslurper.npy b/data/embeddings/kounterkittyslurper.npy new file mode 100644 index 0000000000000000000000000000000000000000..da1c6a383fd5b73b5426df66c5c19be6e12f4e29 --- /dev/null +++ b/data/embeddings/kounterkittyslurper.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aece8a67ba7d7d59fd1d744f63d2ed882b3cc352902abea339066bc54c293cc +size 1664 diff --git a/data/embeddings/kuzlkhnvn9926ibj.npy b/data/embeddings/kuzlkhnvn9926ibj.npy new file mode 100644 index 0000000000000000000000000000000000000000..cc48d18fc4d52a9668a37f93e4daf7c960ace81d --- /dev/null +++ b/data/embeddings/kuzlkhnvn9926ibj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63164784eca31090fab1b9ce39335b71e88557087c4882dc041af72962c70f6 +size 1664 diff --git a/data/embeddings/l9ja83mkhw13e4o.npy b/data/embeddings/l9ja83mkhw13e4o.npy new file mode 100644 index 0000000000000000000000000000000000000000..1379c40bc07baf5f62900cfc115ed4aef357a79f --- /dev/null +++ b/data/embeddings/l9ja83mkhw13e4o.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46d76bc813d8e35dd8e63d75ee8194107e133d8bf969a95c9bafecd9dfae0b9 +size 1664 diff --git a/data/embeddings/lbsqpjgudiggdfcg.npy b/data/embeddings/lbsqpjgudiggdfcg.npy new file mode 100644 index 0000000000000000000000000000000000000000..743963098cdf3e9348be96ee6bd2838a8dffbcbf --- /dev/null +++ b/data/embeddings/lbsqpjgudiggdfcg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df3fc038073d82ba299ef3a2ef2d5e9d82b9c77d71f251c1cb3246dcde1596c +size 1664 diff --git a/data/embeddings/lch3037ehv6711.npy b/data/embeddings/lch3037ehv6711.npy new file mode 100644 index 0000000000000000000000000000000000000000..5b6debd0a3aa357464b479c052b093e05dd96c55 --- /dev/null +++ b/data/embeddings/lch3037ehv6711.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28399ba1b9f93f90f1935b598ea69690b0fd1a219bbe3d357c2b6daee83e236a +size 1664 diff --git a/data/embeddings/leftatlondon_69990546340147397.npy b/data/embeddings/leftatlondon_69990546340147397.npy new file mode 100644 index 0000000000000000000000000000000000000000..25117ff6022606cfd5eda33477c58fc0350ca56c --- /dev/null +++ b/data/embeddings/leftatlondon_69990546340147397.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c761d76c05acf44dbe86b5c2a3e90c18bd59d5d2bd8dde44f04982ea6dab78 +size 1664 diff --git a/data/embeddings/leonkennedy2.npy b/data/embeddings/leonkennedy2.npy new file mode 100644 index 0000000000000000000000000000000000000000..2e253ea45a1691ec39f9deb09ec111121a8b7171 --- /dev/null +++ b/data/embeddings/leonkennedy2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ded6ec3a9b92746981e98e0a2cf0aaa1b46a3e3fea5cd5cf870926d5cb45a4 +size 1664 diff --git a/data/embeddings/lewdsouls_67020b_11705629.npy b/data/embeddings/lewdsouls_67020b_11705629.npy new file mode 100644 index 0000000000000000000000000000000000000000..39a8d506380576a4b0ed2fa3dbb3d0c1b4063607 --- /dev/null +++ b/data/embeddings/lewdsouls_67020b_11705629.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5dc9f54367a38303deef27f389ac4ea88fef90decf97f24093cc6ad2fe2ac27 +size 1664 diff --git a/data/embeddings/licfixzflyd3nxlj.npy b/data/embeddings/licfixzflyd3nxlj.npy new file mode 100644 index 0000000000000000000000000000000000000000..8cd27750de460a567bb51cee21264d4dafaad95a --- /dev/null +++ b/data/embeddings/licfixzflyd3nxlj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7dd2daccf7eedfbd03e1dcacdffd9c6e8c67c989438828ff1bc493ff5dcbe04 +size 1664 diff --git a/data/embeddings/lightestadversewinningest_4f22.npy b/data/embeddings/lightestadversewinningest_4f22.npy new file mode 100644 index 0000000000000000000000000000000000000000..0103a2ac8fab53c1919d2164fea411f2106ad924 --- /dev/null +++ b/data/embeddings/lightestadversewinningest_4f22.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1ba74e9140dfc4a2140dca9fd903ba30e6b5c88cf0a17300a9720d5b7cfbfd +size 1664 diff --git a/data/embeddings/love_miley_6871985317335796998.npy b/data/embeddings/love_miley_6871985317335796998.npy new file mode 100644 index 0000000000000000000000000000000000000000..8a0db667eb8bf04f9fd759b41f3b382356b2a40b --- /dev/null +++ b/data/embeddings/love_miley_6871985317335796998.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f49d6eb2afd8905507825700cc5a8365db5ed77298f2e703443e94de5891e7 +size 1664 diff --git a/data/embeddings/lvzzvbhboqdye16.npy b/data/embeddings/lvzzvbhboqdye16.npy new file mode 100644 index 0000000000000000000000000000000000000000..70e1af8a1cee73c6018c9a56981d8a78d9a4f76e --- /dev/null +++ b/data/embeddings/lvzzvbhboqdye16.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0d237823cc62845ff844978bbaf5fd00f832b4e20cfca1a53512b87f50cee0 +size 1664 diff --git a/data/embeddings/m994nqwqddwg5yw.npy b/data/embeddings/m994nqwqddwg5yw.npy new file mode 100644 index 0000000000000000000000000000000000000000..28dbf790bce8bbc8a62f5e96359dd1d3a7d91742 --- /dev/null +++ b/data/embeddings/m994nqwqddwg5yw.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7804ba5db1dd7ed10b7874c4b78798dd5fc8e31fecfd78148854115dbd410b +size 1664 diff --git a/data/embeddings/mellowwildcat_e38664_9792319.npy b/data/embeddings/mellowwildcat_e38664_9792319.npy new file mode 100644 index 0000000000000000000000000000000000000000..e126449a65b3a2947ae8e845a6b2092d40a10be9 --- /dev/null +++ b/data/embeddings/mellowwildcat_e38664_9792319.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea4dece0efa558c420851ee270ef73494cf692c6aab46abda23655deec629a6 +size 1664 diff --git a/data/embeddings/mkstq1ipav3jlnq_.npy b/data/embeddings/mkstq1ipav3jlnq_.npy new file mode 100644 index 0000000000000000000000000000000000000000..e9d22bfdae407594223ab6554569d86a141f047d --- /dev/null +++ b/data/embeddings/mkstq1ipav3jlnq_.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035be5d31a099b2b2b856aef9725551bb103831e63f6418013c94458f38edd25 +size 1664 diff --git a/data/embeddings/mmdpdsslaeudwa.npy b/data/embeddings/mmdpdsslaeudwa.npy new file mode 100644 index 0000000000000000000000000000000000000000..e6a4a346e815285bd1ecaff72724c92b6b2f8417 --- /dev/null +++ b/data/embeddings/mmdpdsslaeudwa.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf9d719584542d82c64ce32d804108fd70e77a9ba8150379b3085ec676e1ea3 +size 1664 diff --git a/data/embeddings/mnsqqeomzyzabguj.npy b/data/embeddings/mnsqqeomzyzabguj.npy new file mode 100644 index 0000000000000000000000000000000000000000..ad153fc257ceb0b847d4eec7cb4fa816dc95cc5a --- /dev/null +++ b/data/embeddings/mnsqqeomzyzabguj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86c1d7ef3ea71e8e107930a2543f1f257e9bdcf817930d59378f43e946eec8a +size 1664 diff --git a/data/embeddings/mqba2nqzgai65ru.npy b/data/embeddings/mqba2nqzgai65ru.npy new file mode 100644 index 0000000000000000000000000000000000000000..d8ba35d4ab73a23cd0f89a65fd9b450ce8c662cc --- /dev/null +++ b/data/embeddings/mqba2nqzgai65ru.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de556c1daccef9047d577061a18089d1713147fdb808938207eb0c779917ffbc +size 1664 diff --git a/data/embeddings/mzibzbgvxvzgkdam.npy b/data/embeddings/mzibzbgvxvzgkdam.npy new file mode 100644 index 0000000000000000000000000000000000000000..a7ffedf9ae696170df888407295869bcb6d769fd --- /dev/null +++ b/data/embeddings/mzibzbgvxvzgkdam.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6762314cfac189fa7dc3b4a9174b0c89715c63b7f96fd56012a125de7a23b1c5 +size 1664 diff --git a/data/embeddings/n0ttet0pspzmmvbz.npy b/data/embeddings/n0ttet0pspzmmvbz.npy new file mode 100644 index 0000000000000000000000000000000000000000..49b3c0902394336d3eabf3083a0304948a6e3665 --- /dev/null +++ b/data/embeddings/n0ttet0pspzmmvbz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806bc0ab7a43749b3248524112adabafac3a10463af01c66215a13d07550dd4b +size 1664 diff --git a/data/embeddings/n3tlyz04fqqstrwv.npy b/data/embeddings/n3tlyz04fqqstrwv.npy new file mode 100644 index 0000000000000000000000000000000000000000..6f605465bdbe27d6193d17e8a4c1ec2704125467 --- /dev/null +++ b/data/embeddings/n3tlyz04fqqstrwv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f640656c8a2033b9fb354e62ed018fc890d018cd2f38dd9aaad2e517036328b +size 1664 diff --git a/data/embeddings/n93effsaxmxf2kor.npy b/data/embeddings/n93effsaxmxf2kor.npy new file mode 100644 index 0000000000000000000000000000000000000000..8211c38b75ee75c26f52cbdf2713828d51eabdf5 --- /dev/null +++ b/data/embeddings/n93effsaxmxf2kor.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aaad8cf495ef31727e3d980e25345a1fd71ae208f68242fbfe8c8f4a662ba02 +size 1664 diff --git a/data/embeddings/nahfrv0sjg3s56uczw81.npy b/data/embeddings/nahfrv0sjg3s56uczw81.npy new file mode 100644 index 0000000000000000000000000000000000000000..cd36f4781aa77bea4bdc95245fe66a745527f20b --- /dev/null +++ b/data/embeddings/nahfrv0sjg3s56uczw81.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b76be00efc455ccb0b0e77c400c1ab4ce726e13ad77ff8259b0eb678c33e534 +size 1664 diff --git a/data/embeddings/neverbackdownneverwhat.npy b/data/embeddings/neverbackdownneverwhat.npy new file mode 100644 index 0000000000000000000000000000000000000000..1ab36c28efa2b6134745808546fadc2892e36e56 --- /dev/null +++ b/data/embeddings/neverbackdownneverwhat.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d12abb049ef5e7d1f91cf9fbba7a4f914674b51df67cc7618baba459621a4f6 +size 1664 diff --git a/data/embeddings/newcanvas.npy b/data/embeddings/newcanvas.npy new file mode 100644 index 0000000000000000000000000000000000000000..40a98096a9de12cda22b3110b2be58a48e66c164 --- /dev/null +++ b/data/embeddings/newcanvas.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75610da3002e5ceb7d034b84a0b6d0400b36fe65fdac91b7d98d3fc36a2b67ce +size 1664 diff --git a/data/embeddings/ngzo_4miejrnd3sk.npy b/data/embeddings/ngzo_4miejrnd3sk.npy new file mode 100644 index 0000000000000000000000000000000000000000..f07f5cebe8add84123dfe4690b14bf070c21f685 --- /dev/null +++ b/data/embeddings/ngzo_4miejrnd3sk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7629c910f3344da085a705709d3864adfc00d4b20c68999d8f2377d0e73bd935 +size 1664 diff --git a/data/embeddings/nikodavis_6866459592591805702.npy b/data/embeddings/nikodavis_6866459592591805702.npy new file mode 100644 index 0000000000000000000000000000000000000000..a3eb08ae2f9d0fc89f39943c5178a305d9516a1c --- /dev/null +++ b/data/embeddings/nikodavis_6866459592591805702.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848d9be469c5eb4cfeed858fc1ccda6f531f8eea3e95e9a473504b2763a85645 +size 1664 diff --git a/data/embeddings/ninenews.npy b/data/embeddings/ninenews.npy new file mode 100644 index 0000000000000000000000000000000000000000..408ce81305d91428cfb8f9358545eda46249efaa --- /dev/null +++ b/data/embeddings/ninenews.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a33f3b581d7fdfd531fca4b61f13ebeb4d9a3dd80c8f12b528db52a0b33a925 +size 1664 diff --git a/data/embeddings/noizxlsakr5gkeo8.npy b/data/embeddings/noizxlsakr5gkeo8.npy new file mode 100644 index 0000000000000000000000000000000000000000..f683543e958814c75e240393d1358399afc9f2ff --- /dev/null +++ b/data/embeddings/noizxlsakr5gkeo8.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c450201b0d1e1daceb3c40b59d9b6f3e18be2649d208d945c06fe5bf16b1b4 +size 1664 diff --git a/data/embeddings/o8wkds87xgtozhqa.npy b/data/embeddings/o8wkds87xgtozhqa.npy new file mode 100644 index 0000000000000000000000000000000000000000..b3992199a46301818f3e4c56b89aede506bd3307 --- /dev/null +++ b/data/embeddings/o8wkds87xgtozhqa.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7002099b43976aae83e149124b05a10acf9e17324800134ef49997d16e9dfc4e +size 1664 diff --git a/data/embeddings/okmcxk9ii4ry7gh.npy b/data/embeddings/okmcxk9ii4ry7gh.npy new file mode 100644 index 0000000000000000000000000000000000000000..08cb018933bdc1f30e6b3c180a76fa30d893ac4a --- /dev/null +++ b/data/embeddings/okmcxk9ii4ry7gh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee00e6db410a0eb50d25e707adc214b4acbb20441097439140de644e4d5419c +size 1664 diff --git a/data/embeddings/omg.npy b/data/embeddings/omg.npy new file mode 100644 index 0000000000000000000000000000000000000000..84fcf60a4bc024f56f7afb361519c1995bd4669d --- /dev/null +++ b/data/embeddings/omg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a3b22d9cc5e8acd3091f7569df676d5a55762bc5d4afae884cc92f6860a12f +size 1664 diff --git a/data/embeddings/oof_dcb340_12285762.npy b/data/embeddings/oof_dcb340_12285762.npy new file mode 100644 index 0000000000000000000000000000000000000000..a578e8185a32dbb182517020dfd0a96d23ca78aa --- /dev/null +++ b/data/embeddings/oof_dcb340_12285762.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fc11e0cc673a2e4d8670eb735fd4d14a476d8b2158f847025b26bcf22f9874 +size 1664 diff --git a/data/embeddings/oppenheimer.npy b/data/embeddings/oppenheimer.npy new file mode 100644 index 0000000000000000000000000000000000000000..f0afe0ce1a015e36d2856d85356290146a760f38 --- /dev/null +++ b/data/embeddings/oppenheimer.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab17a5066e0dd172760ed707bee3d907b11bd7aad7d6f4e8281c4d31bb742afc +size 1664 diff --git a/data/embeddings/orsfp8lahrsggsu.npy b/data/embeddings/orsfp8lahrsggsu.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e0914c226a92f5f1955a58c736d49aef751f7e0 --- /dev/null +++ b/data/embeddings/orsfp8lahrsggsu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450250556c123fb6f25efe22e9ce8b2e637c9ccc6d18e209b92facab1cc0730f +size 1664 diff --git a/data/embeddings/osxjarsdh_hmok69.npy b/data/embeddings/osxjarsdh_hmok69.npy new file mode 100644 index 0000000000000000000000000000000000000000..08af0403b220b857236c9c1d3da47280138d26bb --- /dev/null +++ b/data/embeddings/osxjarsdh_hmok69.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68363e5fe459c0488cb81371253975fc0ee55cf5adc9bc8c9904fc4fd405ffe2 +size 1664 diff --git a/data/embeddings/otehze8bd_ixkree.npy b/data/embeddings/otehze8bd_ixkree.npy new file mode 100644 index 0000000000000000000000000000000000000000..3ab3ff342cc1f233136ec3e51683ec3170637993 --- /dev/null +++ b/data/embeddings/otehze8bd_ixkree.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0bc2bb3aeddab7bade17a580743d60c934f1014fd6ce9fb4775b8d11a0e771f +size 1664 diff --git a/data/embeddings/oymxczue0nnv7_fu.npy b/data/embeddings/oymxczue0nnv7_fu.npy new file mode 100644 index 0000000000000000000000000000000000000000..e547e67fc36fed779348c936207441251dfe9cb5 --- /dev/null +++ b/data/embeddings/oymxczue0nnv7_fu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24782ecef45917b709511aae9ad1f9924cfb95a602dfb88a55cdc67049ef951c +size 1664 diff --git a/data/embeddings/parallellinestony.npy b/data/embeddings/parallellinestony.npy new file mode 100644 index 0000000000000000000000000000000000000000..a41a8ff9c97f8ea8ecb3357ea0ca86b65704986a --- /dev/null +++ b/data/embeddings/parallellinestony.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efb468da60389d6ba72f5772c54d3e32ecd6004808d0c8c3e2dba147ab62642 +size 1664 diff --git a/data/embeddings/piastriembarassment.npy b/data/embeddings/piastriembarassment.npy new file mode 100644 index 0000000000000000000000000000000000000000..30d45b59009dacfaaf3d1a0e53112928c07762ff --- /dev/null +++ b/data/embeddings/piastriembarassment.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec553a317b8d023bdffd33e6442b37006d56e9edc3d701ed391451a738d0800 +size 1664 diff --git a/data/embeddings/pissing_all_by_yourself.npy b/data/embeddings/pissing_all_by_yourself.npy new file mode 100644 index 0000000000000000000000000000000000000000..67e3c8591418f84af5ce2b01e98a005b6f1c3a08 --- /dev/null +++ b/data/embeddings/pissing_all_by_yourself.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d640a2d56df88918cdcd7f5ab3f4158ba4149c273715ccd24b0ac8d6cd2d779d +size 1664 diff --git a/data/embeddings/prescientaberrantbridged_766a7.npy b/data/embeddings/prescientaberrantbridged_766a7.npy new file mode 100644 index 0000000000000000000000000000000000000000..5b4d6fa0526ec3473756be36a5df8a6922d01e33 --- /dev/null +++ b/data/embeddings/prescientaberrantbridged_766a7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb9365167507f3f7490d6964beea5dfae8e3bfdd054826363c2edc3cd79d3524 +size 1664 diff --git a/data/embeddings/pvltmijei3ktofhm.npy b/data/embeddings/pvltmijei3ktofhm.npy new file mode 100644 index 0000000000000000000000000000000000000000..98628477a88502220805696417e02bfc87f80848 --- /dev/null +++ b/data/embeddings/pvltmijei3ktofhm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced52fef98b48a97f37faaa0562ab8070928bab623babaa5b11b5f52103549e5 +size 1664 diff --git a/data/embeddings/pxl_20230504_083022355ts3.npy b/data/embeddings/pxl_20230504_083022355ts3.npy new file mode 100644 index 0000000000000000000000000000000000000000..6e0e187f7cc6503bd1182ea7da7979deb5ce0044 --- /dev/null +++ b/data/embeddings/pxl_20230504_083022355ts3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc27eec30f01762e9001ceec4b5643008d98f9b5221b78d1433000373f489ac3 +size 1664 diff --git a/data/embeddings/pxl_20250120_171712912ts1.npy b/data/embeddings/pxl_20250120_171712912ts1.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a6c6fc834c7dbae039fb68c3519255536c16117 --- /dev/null +++ b/data/embeddings/pxl_20250120_171712912ts1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb34a001bb177b2b9d821da6b35ccefd34d6039d17fcf55c4c48d4b183a0bc20 +size 1664 diff --git a/data/embeddings/pzjasougx0xl7ch.npy b/data/embeddings/pzjasougx0xl7ch.npy new file mode 100644 index 0000000000000000000000000000000000000000..0676e854928c05b067b7003a366b2fc0b392bccc --- /dev/null +++ b/data/embeddings/pzjasougx0xl7ch.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432a7eee570370a66fcd50df5e5efae144de844b5ac2736fe386061d9f2cee9f +size 1664 diff --git a/data/embeddings/qgsqndxwzz45n_43.npy b/data/embeddings/qgsqndxwzz45n_43.npy new file mode 100644 index 0000000000000000000000000000000000000000..78a3aa8f3f518c8f733188a47014391dc7b5b39f --- /dev/null +++ b/data/embeddings/qgsqndxwzz45n_43.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a29e310bce6bab8f727cb73223c3e417af71aa6949ec040f48cdf737a4d3e7 +size 1664 diff --git a/data/embeddings/qhqbmp_yfkcxhzxh.npy b/data/embeddings/qhqbmp_yfkcxhzxh.npy new file mode 100644 index 0000000000000000000000000000000000000000..5e61317b9fa39efa0c6eab4fe8b2416de2eb1002 --- /dev/null +++ b/data/embeddings/qhqbmp_yfkcxhzxh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd2a46f5af868b6592bf4950d89e4df17ed848a7cef0b2414cc261e80e4025c +size 1664 diff --git a/data/embeddings/qmgas8gregc21rta.npy b/data/embeddings/qmgas8gregc21rta.npy new file mode 100644 index 0000000000000000000000000000000000000000..19ff6e8b91e7386bab24dfa1e766ff9b8407a1eb --- /dev/null +++ b/data/embeddings/qmgas8gregc21rta.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585f3abf1adc9399d017aa165714b73d6c707e0b2b219e2a6284d0366a6deef7 +size 1664 diff --git a/data/embeddings/qnqp9kgewqaxmvvw.npy b/data/embeddings/qnqp9kgewqaxmvvw.npy new file mode 100644 index 0000000000000000000000000000000000000000..81427dba20b2497dbfa1503cce1cb383978c8c3c --- /dev/null +++ b/data/embeddings/qnqp9kgewqaxmvvw.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd043ac14ef475ef30f346d52728b55927607fefcdcc826f987c2d9722649cc +size 1664 diff --git a/data/embeddings/qt9xfqxkkwrohllj.npy b/data/embeddings/qt9xfqxkkwrohllj.npy new file mode 100644 index 0000000000000000000000000000000000000000..d44f8e4c4f9ec1d3bf06331da3657944f2e71ca9 --- /dev/null +++ b/data/embeddings/qt9xfqxkkwrohllj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d2fa6b4e5a7c8c473148277baa7e1419bda3a837541aeadb53704ce03a1228 +size 1664 diff --git a/data/embeddings/r4gqvsc9ou_sqen.npy b/data/embeddings/r4gqvsc9ou_sqen.npy new file mode 100644 index 0000000000000000000000000000000000000000..0a5cd47396b372c15f9f46f2883798f3f0de7e2b --- /dev/null +++ b/data/embeddings/r4gqvsc9ou_sqen.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bad9422e13a3491d620cde68dd889bfeefb4bc13a945bb49f5a5ccfb5703b6d +size 1664 diff --git a/data/embeddings/rapidsavecom_i_present_you_the.npy b/data/embeddings/rapidsavecom_i_present_you_the.npy new file mode 100644 index 0000000000000000000000000000000000000000..a008b51b07bf8e94eec6fd7acdfbc8d147e1ac8a --- /dev/null +++ b/data/embeddings/rapidsavecom_i_present_you_the.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a4d3b32236585f641e5b42874eeb6a11c0ec3c803a9c9c05ebfb2fb3698aee +size 1664 diff --git a/data/embeddings/ratlove.npy b/data/embeddings/ratlove.npy new file mode 100644 index 0000000000000000000000000000000000000000..c64c2e21a2f98e6f23ae00387c26227f228bcba0 --- /dev/null +++ b/data/embeddings/ratlove.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d7c4173d577fd60177064c8414b320d214943f1a0ee2307e671726e5bdef58 +size 1664 diff --git a/data/embeddings/rea4xbawqq8thmko.npy b/data/embeddings/rea4xbawqq8thmko.npy new file mode 100644 index 0000000000000000000000000000000000000000..ae07a786fc48122e26b2dd86fe90b335f9a5a4b1 --- /dev/null +++ b/data/embeddings/rea4xbawqq8thmko.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34073c9fe4b06fbf42260482b829a32102d6fade9ec29d162f43b3f9de549d5e +size 1664 diff --git a/data/embeddings/redditsavecom__2zhvauh3dj691.npy b/data/embeddings/redditsavecom__2zhvauh3dj691.npy new file mode 100644 index 0000000000000000000000000000000000000000..95e0227a6fe5916e7dfb99bd370dfb96a6462466 --- /dev/null +++ b/data/embeddings/redditsavecom__2zhvauh3dj691.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c1914979288bf20eb4a9d9088d694d898dfe784d54928cd57aed9adadbd91bf +size 1664 diff --git a/data/embeddings/redditsavecom_hes_an_omega_lev.npy b/data/embeddings/redditsavecom_hes_an_omega_lev.npy new file mode 100644 index 0000000000000000000000000000000000000000..3eefa18f4c58b34a5449f66a09dcfe7a6a049e23 --- /dev/null +++ b/data/embeddings/redditsavecom_hes_an_omega_lev.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab52d079978764bff3af3c63428c3ca0e8b0db76040f413eb7833c319bbfcd69 +size 1664 diff --git a/data/embeddings/redditsavecom_i_think_this_bel.npy b/data/embeddings/redditsavecom_i_think_this_bel.npy new file mode 100644 index 0000000000000000000000000000000000000000..bdc85d2454888add0a45161874c8ccc2a6f76857 --- /dev/null +++ b/data/embeddings/redditsavecom_i_think_this_bel.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c142fd58fee6768ba4b6a4c2a05817f222875983a70e154799020d9cc4bd883a +size 1664 diff --git a/data/embeddings/redditsavecom_theres_no_way_a_.npy b/data/embeddings/redditsavecom_theres_no_way_a_.npy new file mode 100644 index 0000000000000000000000000000000000000000..40f5c5ab7ed2e17c4722e50be3a012c336a36ec4 --- /dev/null +++ b/data/embeddings/redditsavecom_theres_no_way_a_.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059070d244f03640fc6998bf953f714fa3491ae80f7e674bdab3970091e48872 +size 1664 diff --git a/data/embeddings/redditsavecom_they_did_itk7c5t.npy b/data/embeddings/redditsavecom_they_did_itk7c5t.npy new file mode 100644 index 0000000000000000000000000000000000000000..8e5cf66e6e759075312636158ba2c9ac0e7a0f4e --- /dev/null +++ b/data/embeddings/redditsavecom_they_did_itk7c5t.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db5142165b7ef917f42de9fc77f7d7c54dbd8525da7552bf4837a38e21f6d39 +size 1664 diff --git a/data/embeddings/redunadvisedodd_a4e39c_1230263.npy b/data/embeddings/redunadvisedodd_a4e39c_1230263.npy new file mode 100644 index 0000000000000000000000000000000000000000..501232bcf3b1df12184f06cb84136523bb9d6e4d --- /dev/null +++ b/data/embeddings/redunadvisedodd_a4e39c_1230263.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af9faa9e33bcf8081e11c1d83b0b465781639afc15a3081bc505157301ccefb +size 1664 diff --git a/data/embeddings/rgtg0uogscxeoxk.npy b/data/embeddings/rgtg0uogscxeoxk.npy new file mode 100644 index 0000000000000000000000000000000000000000..b2ceee9a098342c629398da1e2ec00f732e18e25 --- /dev/null +++ b/data/embeddings/rgtg0uogscxeoxk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647a4d406ac7a9cdc3abab0b312c88015fab7f48598d547ba0c217baaf06600e +size 1664 diff --git a/data/embeddings/rmzmsmswryh2uk2.npy b/data/embeddings/rmzmsmswryh2uk2.npy new file mode 100644 index 0000000000000000000000000000000000000000..58f702e7f461c4343487eedf4e1efb02bc8999ad --- /dev/null +++ b/data/embeddings/rmzmsmswryh2uk2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b88dafbd04e3374d20dcfe5ca35560d690657af19d4e1825fccd4722f64b35 +size 1664 diff --git a/data/embeddings/rn_image_picker_lib_temp_6d697.npy b/data/embeddings/rn_image_picker_lib_temp_6d697.npy new file mode 100644 index 0000000000000000000000000000000000000000..d4ce2bfe9cff6683dc7f54790775296013940606 --- /dev/null +++ b/data/embeddings/rn_image_picker_lib_temp_6d697.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1005a049266a0dc1f605899620d0239e68a631ce7a6b6f2d69b486840c1b60c7 +size 1664 diff --git a/data/embeddings/robobro.npy b/data/embeddings/robobro.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d16d54c523e6bb159d23c2750c00e54cf420e7f --- /dev/null +++ b/data/embeddings/robobro.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865ff072fce49e905f755b4af04c46ce8851950ffa1a1d3a4d0e811bc35cfde8 +size 1664 diff --git a/data/embeddings/rounddog.npy b/data/embeddings/rounddog.npy new file mode 100644 index 0000000000000000000000000000000000000000..8387a0bd5bcd23e3fb5b436a7c07041e5452abd8 --- /dev/null +++ b/data/embeddings/rounddog.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754f46f8db6fdbb1e42fd8cf3724d0b0f7d985eb390ef64f77a79fbc0a31ad84 +size 1664 diff --git a/data/embeddings/rrjfvq7krpivctr9.npy b/data/embeddings/rrjfvq7krpivctr9.npy new file mode 100644 index 0000000000000000000000000000000000000000..527d8e6f1aa1ba4802662134ffb3cb0afe07bc23 --- /dev/null +++ b/data/embeddings/rrjfvq7krpivctr9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afeca027408a0c0c2de173705f84aac67aeadab82b9573a0da776d6a32d4af6 +size 1664 diff --git a/data/embeddings/rsg9eyy6btyveyp_.npy b/data/embeddings/rsg9eyy6btyveyp_.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee8aa64c193839dc028ea4b39dc35a3d46f50c9c --- /dev/null +++ b/data/embeddings/rsg9eyy6btyveyp_.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:858840011c647c08de51ff3f074317d74a02ae1607cb34891ddbb705e49145d3 +size 1664 diff --git a/data/embeddings/rwt4ffbiegespghf.npy b/data/embeddings/rwt4ffbiegespghf.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a7d24fe3188d73dc5f756420eec813f6adb37d9 --- /dev/null +++ b/data/embeddings/rwt4ffbiegespghf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53dbf7a237894a535162e841e3ff1beca7bdf0cee250a7259f0440beacef796 +size 1664 diff --git a/data/embeddings/rx4rkzheyhyaozdg.npy b/data/embeddings/rx4rkzheyhyaozdg.npy new file mode 100644 index 0000000000000000000000000000000000000000..4550e7d491688207bfe5361aa2a672bb181a9d49 --- /dev/null +++ b/data/embeddings/rx4rkzheyhyaozdg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b716ab182d17e32b934645081264d78bd00daf6f476c4ba0b1fbad483647e62d +size 1664 diff --git a/data/embeddings/rxq3fgsdc8e4ivjv.npy b/data/embeddings/rxq3fgsdc8e4ivjv.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea31dc0d84d7d11b5a0f50fe620c2ab2bb83d02 --- /dev/null +++ b/data/embeddings/rxq3fgsdc8e4ivjv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2ddcfdfc60e59d4906c94f3cca0a70c010d9a3e9aab9f7c158e21ddc231337 +size 1664 diff --git a/data/embeddings/s0azfmmnif3twp20.npy b/data/embeddings/s0azfmmnif3twp20.npy new file mode 100644 index 0000000000000000000000000000000000000000..d4ba187879808a83908f1f9fa2ec3c6e1d366669 --- /dev/null +++ b/data/embeddings/s0azfmmnif3twp20.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e754c9ecf85f6c2cc985f1f227cdf0f56bb345ef29d5a4f28239562b237fbc +size 1664 diff --git a/data/embeddings/s1wrpvsv_uwvfj6.npy b/data/embeddings/s1wrpvsv_uwvfj6.npy new file mode 100644 index 0000000000000000000000000000000000000000..8a1cbe5a5f843637bfcb842a80e80abb76dceeb4 --- /dev/null +++ b/data/embeddings/s1wrpvsv_uwvfj6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1bc01962f654912fcc5cae4a099a294dc8d56fe99679198eec6bde942d237e +size 1664 diff --git a/data/embeddings/salsamachine.npy b/data/embeddings/salsamachine.npy new file mode 100644 index 0000000000000000000000000000000000000000..d07183e36ad41f2d12939a344205e65266368444 --- /dev/null +++ b/data/embeddings/salsamachine.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4056743af5ba45c0acb13beb9f32606d48cd298e821c96814b8e5a3b3e6a911e +size 1664 diff --git a/data/embeddings/screen202208162212513.npy b/data/embeddings/screen202208162212513.npy new file mode 100644 index 0000000000000000000000000000000000000000..e38d7f9b24a8702333bbe15090e53b4a8bf9d801 --- /dev/null +++ b/data/embeddings/screen202208162212513.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531ad2fb571b70a3cd3172c65ef7b39332ea5c00caabc96589c0128b7f339d0f +size 1664 diff --git a/data/embeddings/screen_recording_2022022011352.npy b/data/embeddings/screen_recording_2022022011352.npy new file mode 100644 index 0000000000000000000000000000000000000000..08f68fc10813e7df38d5d44d7401170802cf93f6 --- /dev/null +++ b/data/embeddings/screen_recording_2022022011352.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6977d55644056521c6025dd2d300261e7c5625d4728d7e3c58fc614a2976c2 +size 1664 diff --git a/data/embeddings/screenshot20240622at1359341one.npy b/data/embeddings/screenshot20240622at1359341one.npy new file mode 100644 index 0000000000000000000000000000000000000000..0374859643c3566bd16ec0fd0904c904772ed213 --- /dev/null +++ b/data/embeddings/screenshot20240622at1359341one.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63dd1fd8ea0c983fcad8f0c98f605058c6ec888d62399440ca8bd0aaf2acab4 +size 1664 diff --git a/data/embeddings/screenshot_2020080200464338.npy b/data/embeddings/screenshot_2020080200464338.npy new file mode 100644 index 0000000000000000000000000000000000000000..7127a245895bf971a993c6c0b974b1f3eefd7b77 --- /dev/null +++ b/data/embeddings/screenshot_2020080200464338.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380700d51ca53ff740475ed90e66f18068a7124c857cf140c08226b7a0ec3fda +size 1664 diff --git a/data/embeddings/sdfgvxcvxcvxcvxcv.npy b/data/embeddings/sdfgvxcvxcvxcvxcv.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b7cc205b496aedf928ebf3ca8aa1d2a89f6b290 --- /dev/null +++ b/data/embeddings/sdfgvxcvxcvxcvxcv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f38666f6e807b85aa7921714f447fc0868ac435414235ef042ac09ec76e8aad +size 1664 diff --git a/data/embeddings/sdfsdfsdf1.npy b/data/embeddings/sdfsdfsdf1.npy new file mode 100644 index 0000000000000000000000000000000000000000..e95eac89701399c82969e7653bddcc44e8c96a12 --- /dev/null +++ b/data/embeddings/sdfsdfsdf1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a7bfcdf78f04df73e12be01ad8ad1901477d3ce1cffad611d190eceef35fac +size 1664 diff --git a/data/embeddings/sealbounce.npy b/data/embeddings/sealbounce.npy new file mode 100644 index 0000000000000000000000000000000000000000..7275168a2e7d68ba720cfc979b20b689cd52c6eb --- /dev/null +++ b/data/embeddings/sealbounce.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3676cfe675572d598ed54635b8ce78a6d6de7cd5b52cd6a1288157ad4cd1278 +size 1664 diff --git a/data/embeddings/seashanty2_but_somethings_diff.npy b/data/embeddings/seashanty2_but_somethings_diff.npy new file mode 100644 index 0000000000000000000000000000000000000000..544919d9413e54ccee534627c42e5b6008f105eb --- /dev/null +++ b/data/embeddings/seashanty2_but_somethings_diff.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4008a0c4472902755dffd6a4eca9ef736e6c2b00378b4b218898d94039b136df +size 1664 diff --git a/data/embeddings/shakenpastelabsent_ae9e42_1101.npy b/data/embeddings/shakenpastelabsent_ae9e42_1101.npy new file mode 100644 index 0000000000000000000000000000000000000000..e105f7f87d5b7e2216ba66a63dfde5f0c6805ecc --- /dev/null +++ b/data/embeddings/shakenpastelabsent_ae9e42_1101.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6317d9f5eb2192d0956b92856676cef913da206daf7cb72d5f6fced8cfa584c6 +size 1664 diff --git a/data/embeddings/shrimp.npy b/data/embeddings/shrimp.npy new file mode 100644 index 0000000000000000000000000000000000000000..eb236d35a314481f74a0cb13c072232f775aaa3d --- /dev/null +++ b/data/embeddings/shrimp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29bf14ef6f2f227fc7414b9434950ba5ceca36ee6b60241d5dd5c92fcdbf0ae5 +size 1664 diff --git a/data/embeddings/sindl8igbksah9q1.npy b/data/embeddings/sindl8igbksah9q1.npy new file mode 100644 index 0000000000000000000000000000000000000000..789a830b5e23ba0734989c21cdc7b24f21c62a97 --- /dev/null +++ b/data/embeddings/sindl8igbksah9q1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c590ea7df9d2fef8137e9cdc958836e74de1b1ac083f07790acb0aab80e32c93 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_163282601_1.npy b/data/embeddings/snapinstaapp_video_163282601_1.npy new file mode 100644 index 0000000000000000000000000000000000000000..c431cfc169496184c3a587a13bc67264ac29b1b7 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_163282601_1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ade385f9901c5f31a50958abe6867b191d231da18997a7142c21dab2dc369b +size 1664 diff --git a/data/embeddings/snapinstaapp_video_321193628_7.npy b/data/embeddings/snapinstaapp_video_321193628_7.npy new file mode 100644 index 0000000000000000000000000000000000000000..0c8c5218d920fa67596dfc29bc8f2e432bea2765 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_321193628_7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c34a4659cb718da376d7598910fde075a1eb6d64d0668bf9594b5db4c7d5523 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_332523165_7.npy b/data/embeddings/snapinstaapp_video_332523165_7.npy new file mode 100644 index 0000000000000000000000000000000000000000..98a23304cf961ba0b7c1b5a34268d3c50ed9f71e --- /dev/null +++ b/data/embeddings/snapinstaapp_video_332523165_7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3725b197ff7c444b3007012993185e7be47b03833b4426ff98842627abd68fd1 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_47669493_10.npy b/data/embeddings/snapinstaapp_video_47669493_10.npy new file mode 100644 index 0000000000000000000000000000000000000000..a45c4f51db10637bee755e8b3291530f1c6a7f4c --- /dev/null +++ b/data/embeddings/snapinstaapp_video_47669493_10.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead41760b6d1921468331c2e08eb0f0b83bf9150e43fd2a94f1fddc541bba5be +size 1664 diff --git a/data/embeddings/snapinstaapp_video_54449357_28.npy b/data/embeddings/snapinstaapp_video_54449357_28.npy new file mode 100644 index 0000000000000000000000000000000000000000..21130cfeb450f66352f4352279883d0281368fe2 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_54449357_28.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff5effd942f6a22cc576288638f4aa46228a6b52b7922a284e6d1111a552c8b +size 1664 diff --git a/data/embeddings/snapinstaapp_video_894a1754009.npy b/data/embeddings/snapinstaapp_video_894a1754009.npy new file mode 100644 index 0000000000000000000000000000000000000000..9d4ff46cf5fd6a3cf5c4533dfa6d5e5a00f01d3b --- /dev/null +++ b/data/embeddings/snapinstaapp_video_894a1754009.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8711c6cc66c615f46357c72975e50eba9709bca1aa9ac38277719858457085c3 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_an82j9syhul.npy b/data/embeddings/snapinstaapp_video_an82j9syhul.npy new file mode 100644 index 0000000000000000000000000000000000000000..8b1ea21ffc68d59862642984bdb7e2fa95d2e5e4 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_an82j9syhul.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0817aeab2fff49ddd0396037dd57c43034d19a30b1f3eff30da66d1fb73bc030 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_an9esvyt4lh.npy b/data/embeddings/snapinstaapp_video_an9esvyt4lh.npy new file mode 100644 index 0000000000000000000000000000000000000000..dbd58f75fb35e0c925b794b6f5d4daa17f7580b5 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_an9esvyt4lh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2e5e0c0046329b8241487c9547fd117d2ff5e1bf09adee7f52220075d9e941 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_an_m964jpwu.npy b/data/embeddings/snapinstaapp_video_an_m964jpwu.npy new file mode 100644 index 0000000000000000000000000000000000000000..190ced65e50d7815125e21067322993dc1543712 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_an_m964jpwu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216208d6db93df21cee5756dcd7370782fe5d45671ef8502e1148947ef645f7a +size 1664 diff --git a/data/embeddings/snapinstaapp_video_aqodrarbnss.npy b/data/embeddings/snapinstaapp_video_aqodrarbnss.npy new file mode 100644 index 0000000000000000000000000000000000000000..223e32e4c81cc5d389f2bad92ad4ebb440bbd5fb --- /dev/null +++ b/data/embeddings/snapinstaapp_video_aqodrarbnss.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9aaf26b0a595f2ecc22bf3999a629a379b7dca52f51b8fdbffe351881393bea +size 1664 diff --git a/data/embeddings/snapinstaapp_video_aqpsvmxmvr3.npy b/data/embeddings/snapinstaapp_video_aqpsvmxmvr3.npy new file mode 100644 index 0000000000000000000000000000000000000000..9692cd4ed0bbf19b1c4cfd6660dc92975629ed90 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_aqpsvmxmvr3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744d10330fa3531be6ef95a5bb9c4c450f6969093e96119edfe9bd7b16261753 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_bd4a699a45d.npy b/data/embeddings/snapinstaapp_video_bd4a699a45d.npy new file mode 100644 index 0000000000000000000000000000000000000000..6293aa32e93c0d87baea35a644cfee08540087ea --- /dev/null +++ b/data/embeddings/snapinstaapp_video_bd4a699a45d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64ebe38651c61101a0560a6a020dae0b0d6c48ff968b862cfb7aab7df623ba8 +size 1664 diff --git a/data/embeddings/snapinstaapp_video_c840837805b.npy b/data/embeddings/snapinstaapp_video_c840837805b.npy new file mode 100644 index 0000000000000000000000000000000000000000..75cd30bf93448bcd482e1e6ba7560226a93f8f2d --- /dev/null +++ b/data/embeddings/snapinstaapp_video_c840837805b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a17f98f25e59d22ffcd2f9b5c2902572fff990726590253095b734a417869ae +size 1664 diff --git a/data/embeddings/snapinstaapp_video_fc45fb95595.npy b/data/embeddings/snapinstaapp_video_fc45fb95595.npy new file mode 100644 index 0000000000000000000000000000000000000000..10be31a081bb0107d736f5462e887ce69b52c9cc --- /dev/null +++ b/data/embeddings/snapinstaapp_video_fc45fb95595.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f52bcbfe0655785e06a3518de53830b36d12ee0f9ad92b1aa8887bc6a146ae +size 1664 diff --git a/data/embeddings/snapinstaapp_video_gb7e3ho8evr.npy b/data/embeddings/snapinstaapp_video_gb7e3ho8evr.npy new file mode 100644 index 0000000000000000000000000000000000000000..6011ae7662275fb0d199e89d831187e02c3680b1 --- /dev/null +++ b/data/embeddings/snapinstaapp_video_gb7e3ho8evr.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b602719e2dc47ba20fc9eac4890504c17c2cbbeb15317d3c397797c7ed330c4d +size 1664 diff --git a/data/embeddings/snaptikapp_7226237414149197099.npy b/data/embeddings/snaptikapp_7226237414149197099.npy new file mode 100644 index 0000000000000000000000000000000000000000..29f1cf06426e9b73a5d77df2714083dbce430073 --- /dev/null +++ b/data/embeddings/snaptikapp_7226237414149197099.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d86b3ffaff86deb3bc9899f28a34c0cc756fa26de53062d88876e0d80e16308 +size 1664 diff --git a/data/embeddings/snaptikapp_7235133942335163653.npy b/data/embeddings/snaptikapp_7235133942335163653.npy new file mode 100644 index 0000000000000000000000000000000000000000..6ae4d70452e3c12e3a1efa155469876ebe0d7e7e --- /dev/null +++ b/data/embeddings/snaptikapp_7235133942335163653.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636849369a80d04b28e4bcb8571344cd8adf90f363c75507d3e6fe8981fa5c7a +size 1664 diff --git a/data/embeddings/snaptikapp_7235391626737241387.npy b/data/embeddings/snaptikapp_7235391626737241387.npy new file mode 100644 index 0000000000000000000000000000000000000000..c56e70738a35c07637520a1f9df40a28aa4a30c2 --- /dev/null +++ b/data/embeddings/snaptikapp_7235391626737241387.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9786c8a87f035e13f236994d29fa124e2ea9fcaa9b2e6b351b36954ee0aead98 +size 1664 diff --git a/data/embeddings/snaptikapp_7265553545204698374.npy b/data/embeddings/snaptikapp_7265553545204698374.npy new file mode 100644 index 0000000000000000000000000000000000000000..b310fd397448d5223b40bbb03576bb5be0dba79e --- /dev/null +++ b/data/embeddings/snaptikapp_7265553545204698374.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640fb8e40962b4610187a8da6aa5b966ddf5585672bf96fce955f7e3f46ba698 +size 1664 diff --git a/data/embeddings/snaptikapp_7349202484293864737.npy b/data/embeddings/snaptikapp_7349202484293864737.npy new file mode 100644 index 0000000000000000000000000000000000000000..6ce221409576e7a9ff5313dcddeac195a62913e2 --- /dev/null +++ b/data/embeddings/snaptikapp_7349202484293864737.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f95da86f6cd57c0c886a86a3d2aecc1e4573dea62e0667d91d3775dbaaf567 +size 1664 diff --git a/data/embeddings/sns52wt7pkh9l_l.npy b/data/embeddings/sns52wt7pkh9l_l.npy new file mode 100644 index 0000000000000000000000000000000000000000..6eb88c186e1ca8524555a6ba18fc5b34badfbb05 --- /dev/null +++ b/data/embeddings/sns52wt7pkh9l_l.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114c5757b7678642af75627d716658ef493c994c2e077c36c05e072ca6ba62d0 +size 1664 diff --git a/data/embeddings/snsdj_eerta5vhhs.npy b/data/embeddings/snsdj_eerta5vhhs.npy new file mode 100644 index 0000000000000000000000000000000000000000..0037c9c6b4c9af0cc1f6f8ecab42870228f0e5df --- /dev/null +++ b/data/embeddings/snsdj_eerta5vhhs.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed991b9f9f2e81baa6ed4299896f9ec07221d8da5691d4045a268ddb1716ad74 +size 1664 diff --git a/data/embeddings/spincarrot.npy b/data/embeddings/spincarrot.npy new file mode 100644 index 0000000000000000000000000000000000000000..1aed77e7503f41f0ace20c81048d40603e43d048 --- /dev/null +++ b/data/embeddings/spincarrot.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ba766b34225ca8e0578b727607c9644cf70ffd651993b8099deeb3b64ab9d5e +size 1664 diff --git a/data/embeddings/streamladdersus.npy b/data/embeddings/streamladdersus.npy new file mode 100644 index 0000000000000000000000000000000000000000..b04f42d5c3d956d88b422e0db5d53c5d4c8d599c --- /dev/null +++ b/data/embeddings/streamladdersus.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634ef211aa3831a3d8ed93762e38f5499d3b4c4442ab5bf42ffd76d76cd049c0 +size 1664 diff --git a/data/embeddings/streamladderuntitled1.npy b/data/embeddings/streamladderuntitled1.npy new file mode 100644 index 0000000000000000000000000000000000000000..90ab71131063fa0f1fae51022afae2fef143acaf --- /dev/null +++ b/data/embeddings/streamladderuntitled1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7875fa55116b36eb6f168953e2ce7ff242ff889821599e9d849bc0fc861cc8 +size 1664 diff --git a/data/embeddings/suddenbrawnyenchanted_a93914_1.npy b/data/embeddings/suddenbrawnyenchanted_a93914_1.npy new file mode 100644 index 0000000000000000000000000000000000000000..6f5892747e8e61b0a346b36bebb2f53d0581ccce --- /dev/null +++ b/data/embeddings/suddenbrawnyenchanted_a93914_1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b6153399fbd405dd2a3ebc33d1eb70972157bd2f68a31e434d1ebd3ab95ba3 +size 1664 diff --git a/data/embeddings/t7sz2tgd6xvnuile.npy b/data/embeddings/t7sz2tgd6xvnuile.npy new file mode 100644 index 0000000000000000000000000000000000000000..6553c2c588743e35a6af1d7f74c4d923a5bab260 --- /dev/null +++ b/data/embeddings/t7sz2tgd6xvnuile.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794938cf44338c3ac1975114bca46be95677634df063b23f644aafac282b5cad +size 1664 diff --git a/data/embeddings/td9tqct7k_pkdjqx.npy b/data/embeddings/td9tqct7k_pkdjqx.npy new file mode 100644 index 0000000000000000000000000000000000000000..f5d79ecdc6ba3a1c208906cb15fc2371cffc6e28 --- /dev/null +++ b/data/embeddings/td9tqct7k_pkdjqx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aee04b5961609a298a89d6ae6f2ba12db9ee12e5907c7c9d79861bc86538b909 +size 1664 diff --git a/data/embeddings/th.npy b/data/embeddings/th.npy new file mode 100644 index 0000000000000000000000000000000000000000..f424cab7f14f54a2a740ca485fca312485fbdb40 --- /dev/null +++ b/data/embeddings/th.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd142203e25221e485483bdcd64c0e7aae3eecbec58c027a6e270692c6e47065 +size 1664 diff --git a/data/embeddings/thdmwz6yqocxmmv0.npy b/data/embeddings/thdmwz6yqocxmmv0.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7a38550fa03243c1a467afe935559edee66dd30 --- /dev/null +++ b/data/embeddings/thdmwz6yqocxmmv0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78fe94040ed53255901a8a0457b305919e713f6cdea9e572e37b618231da6cd8 +size 1664 diff --git a/data/embeddings/themfstreets.npy b/data/embeddings/themfstreets.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc3b63e20d2aafc75834669da1ec9af6194719a0 --- /dev/null +++ b/data/embeddings/themfstreets.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34126ba04a4955dffd5ebab00449205b15ab14610531fb3dd4e6d0f58c5f9c1b +size 1664 diff --git a/data/embeddings/thisisyourautisticchild.npy b/data/embeddings/thisisyourautisticchild.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d5ab803ee328921508b52efe14bccca731c0ac3 --- /dev/null +++ b/data/embeddings/thisisyourautisticchild.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17b42818fb3035d31493b8711df194db0195ce7d30a98a9cd2a93b245d56f965 +size 1664 diff --git a/data/embeddings/tiktok_ichristopher_7364474144.npy b/data/embeddings/tiktok_ichristopher_7364474144.npy new file mode 100644 index 0000000000000000000000000000000000000000..122819c7738192fab236f9d9ac813aaef0912d32 --- /dev/null +++ b/data/embeddings/tiktok_ichristopher_7364474144.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da1b7fdb0838410350e6985b34ab064f2a2906e4cd665233130d00de6aff9a5 +size 1664 diff --git a/data/embeddings/tiktok_thedailyshow_7459544295.npy b/data/embeddings/tiktok_thedailyshow_7459544295.npy new file mode 100644 index 0000000000000000000000000000000000000000..3a9514112c2f740112a77c5260d47da6fe619e3b --- /dev/null +++ b/data/embeddings/tiktok_thedailyshow_7459544295.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e3a14fb563dfa6a5fab3d3c51efba5ab71e98ad75b8cc39cd636c2ba240eb8 +size 1664 diff --git a/data/embeddings/tiktok_wanderinglittlejay_7421.npy b/data/embeddings/tiktok_wanderinglittlejay_7421.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4119c6ca10702a97d74b3ce36bef9ae1279f565 --- /dev/null +++ b/data/embeddings/tiktok_wanderinglittlejay_7421.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e665735284103e031ae87682ea815f2051724c3c77e6b96299a9852806daffb9 +size 1664 diff --git a/data/embeddings/tll9nhvfpeft3dib.npy b/data/embeddings/tll9nhvfpeft3dib.npy new file mode 100644 index 0000000000000000000000000000000000000000..dea220526dbd765d7cf7e8f9d79b68c9e04a191d --- /dev/null +++ b/data/embeddings/tll9nhvfpeft3dib.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5676c547e801c3026eecf776952b0bd15982f97a2d6325a27253a0837b641b60 +size 1664 diff --git a/data/embeddings/tth_m7txtrys2fge.npy b/data/embeddings/tth_m7txtrys2fge.npy new file mode 100644 index 0000000000000000000000000000000000000000..9dc47b672889395387f4428ac7872c68c348c171 --- /dev/null +++ b/data/embeddings/tth_m7txtrys2fge.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7afd2ab9f25f47effa7e8dfbc530860937cb31b6b12a7b00995d8811aeec909 +size 1664 diff --git a/data/embeddings/tumblr_0213294e57d70cf3bef9f89.npy b/data/embeddings/tumblr_0213294e57d70cf3bef9f89.npy new file mode 100644 index 0000000000000000000000000000000000000000..7f84900277285ab1d888269af13c951a7a8c24af --- /dev/null +++ b/data/embeddings/tumblr_0213294e57d70cf3bef9f89.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e308cca4dc30f1857ec69bfa1812b8488b521b5788055045e0d621222ab72c5f +size 1664 diff --git a/data/embeddings/tumblr_0535012913fb2f3a51a414a.npy b/data/embeddings/tumblr_0535012913fb2f3a51a414a.npy new file mode 100644 index 0000000000000000000000000000000000000000..2ed88180d789ca0fa52ff4f453220562761ffead --- /dev/null +++ b/data/embeddings/tumblr_0535012913fb2f3a51a414a.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7759bf84f756a3a43c3bc0a19d7a0a1f3b10c58edf517561c5895ad057310a +size 1664 diff --git a/data/embeddings/tumblr_0c74c87cbbf109cd50d6d70.npy b/data/embeddings/tumblr_0c74c87cbbf109cd50d6d70.npy new file mode 100644 index 0000000000000000000000000000000000000000..9d1993fc4056ed9773363de9f481a50b8c006ba2 --- /dev/null +++ b/data/embeddings/tumblr_0c74c87cbbf109cd50d6d70.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e0ca87f3914d6510c1fcb5e5019f0e70a4beb72bb0f63a95e567fb28f3820e +size 1664 diff --git a/data/embeddings/tumblr_110d1883d13787b80091b7e.npy b/data/embeddings/tumblr_110d1883d13787b80091b7e.npy new file mode 100644 index 0000000000000000000000000000000000000000..8282da99188b2527e88ac20259b001de7397a4d5 --- /dev/null +++ b/data/embeddings/tumblr_110d1883d13787b80091b7e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c354ad0b0d3985a00b30b40bab6a026a14a51769ffe4b5fab62fdb0d74b86259 +size 1664 diff --git a/data/embeddings/tumblr_1179feb2c0d9e99eff0c31a.npy b/data/embeddings/tumblr_1179feb2c0d9e99eff0c31a.npy new file mode 100644 index 0000000000000000000000000000000000000000..f02f2de44c15fde21911820655865925563012db --- /dev/null +++ b/data/embeddings/tumblr_1179feb2c0d9e99eff0c31a.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13dd407bf75d726ecfa934fdede626a834f7b41589d413957f81276763369a60 +size 1664 diff --git a/data/embeddings/tumblr_12f154799b69e0f7786c6dc.npy b/data/embeddings/tumblr_12f154799b69e0f7786c6dc.npy new file mode 100644 index 0000000000000000000000000000000000000000..4cdc0c9300531eb2b466592e7a21a59b7aa84045 --- /dev/null +++ b/data/embeddings/tumblr_12f154799b69e0f7786c6dc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023a95955caa01cb70c0be98222b3dcfce336d9dca16da86d132f512b7fde203 +size 1664 diff --git a/data/embeddings/tumblr_181f93488ce76cdb819992d.npy b/data/embeddings/tumblr_181f93488ce76cdb819992d.npy new file mode 100644 index 0000000000000000000000000000000000000000..52b6e1c4813d8a5956d26374afca4c276f287aa1 --- /dev/null +++ b/data/embeddings/tumblr_181f93488ce76cdb819992d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae972b6f0d9749ba12757f828ce9649f006e3ec803725225dc5e1895055a65d +size 1664 diff --git a/data/embeddings/tumblr_24acfb09752258cd5ddc879.npy b/data/embeddings/tumblr_24acfb09752258cd5ddc879.npy new file mode 100644 index 0000000000000000000000000000000000000000..87fd92b82e57ca600a0aed1c2d78cdc2b39af988 --- /dev/null +++ b/data/embeddings/tumblr_24acfb09752258cd5ddc879.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014e473fa755bdd874ef9c420ad82436c3dc0428e1ff461cdd1a989f45f3a66b +size 1664 diff --git a/data/embeddings/tumblr_24fe18fe5f478c10ba01dda.npy b/data/embeddings/tumblr_24fe18fe5f478c10ba01dda.npy new file mode 100644 index 0000000000000000000000000000000000000000..25a05a58c20daed8f97bac2f2fa202d99a673369 --- /dev/null +++ b/data/embeddings/tumblr_24fe18fe5f478c10ba01dda.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b0138e7e70cf5cae7e986c7eed3d8d5c80470f3dcf04ec0dc98842594b9c7c +size 1664 diff --git a/data/embeddings/tumblr_2602fb207786b37125f3c3f.npy b/data/embeddings/tumblr_2602fb207786b37125f3c3f.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa006c1cd300af72b24de8c2a499a3805d955680 --- /dev/null +++ b/data/embeddings/tumblr_2602fb207786b37125f3c3f.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c2a4c285202d119fd2673a66122b3f6448a2332f1e1fcf4ee6aefc03af8b7a +size 1664 diff --git a/data/embeddings/tumblr_26657fa47543e5622e9a611.npy b/data/embeddings/tumblr_26657fa47543e5622e9a611.npy new file mode 100644 index 0000000000000000000000000000000000000000..74f8abfc99143495bcc98824f4209201d4445ac2 --- /dev/null +++ b/data/embeddings/tumblr_26657fa47543e5622e9a611.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eda6d6de98a87e2b82c2af739d3630908eaeafdaef228bd562f803e39bb0d86 +size 1664 diff --git a/data/embeddings/tumblr_3748f9c76c6ecf089ea8750.npy b/data/embeddings/tumblr_3748f9c76c6ecf089ea8750.npy new file mode 100644 index 0000000000000000000000000000000000000000..a163909259915fbd080ca4c6e622245e495099b6 --- /dev/null +++ b/data/embeddings/tumblr_3748f9c76c6ecf089ea8750.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f42a6c5a664f919a9e7df37d1fba35527eddfa52150175374344e47c3624bd9 +size 1664 diff --git a/data/embeddings/tumblr_404dc93594cccd3b49b18c1.npy b/data/embeddings/tumblr_404dc93594cccd3b49b18c1.npy new file mode 100644 index 0000000000000000000000000000000000000000..4c29bf00a8b5ad86689cbffd55d788352be40cc9 --- /dev/null +++ b/data/embeddings/tumblr_404dc93594cccd3b49b18c1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a9dcb414d1b57b747ec2cea6fb872e8b7deb0fad2d2441424c1cb18f63431e +size 1664 diff --git a/data/embeddings/tumblr_463df70969c21e0f9ce28f6.npy b/data/embeddings/tumblr_463df70969c21e0f9ce28f6.npy new file mode 100644 index 0000000000000000000000000000000000000000..a0bbcd474a7496ab61351b90817cc3379bb3418c --- /dev/null +++ b/data/embeddings/tumblr_463df70969c21e0f9ce28f6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4a79d02b218724a26169131c78e05535c42afcb108aa59ccc8974b7d36e36d +size 1664 diff --git a/data/embeddings/tumblr_478ea635fcecbe62553797a.npy b/data/embeddings/tumblr_478ea635fcecbe62553797a.npy new file mode 100644 index 0000000000000000000000000000000000000000..b19af6db984a8a5b5d2416f6a1c02d796a2c289a --- /dev/null +++ b/data/embeddings/tumblr_478ea635fcecbe62553797a.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9643eb23f03c3567cf34c77754d4eed58988041440598112406ba82fd0a7c8f4 +size 1664 diff --git a/data/embeddings/tumblr_4f29b3bb5fbb08ae6d09f27.npy b/data/embeddings/tumblr_4f29b3bb5fbb08ae6d09f27.npy new file mode 100644 index 0000000000000000000000000000000000000000..f0988f0a271d72ee47cf11ff6d26ed0a11c7c1eb --- /dev/null +++ b/data/embeddings/tumblr_4f29b3bb5fbb08ae6d09f27.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa91830b021519d4e1aee05a823b4927b526760b528fd41676ecc0f0fd744f0 +size 1664 diff --git a/data/embeddings/tumblr_56efd871d63c2a6b24ce8f4.npy b/data/embeddings/tumblr_56efd871d63c2a6b24ce8f4.npy new file mode 100644 index 0000000000000000000000000000000000000000..3773cfb695095ab20d1e02ef33ba2356dd82ef55 --- /dev/null +++ b/data/embeddings/tumblr_56efd871d63c2a6b24ce8f4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6905b39a685e64b310360232a2a99d85780ad8f569855caee35e7d7383bf29e4 +size 1664 diff --git a/data/embeddings/tumblr_5d01116b6a72d0fef4cf632.npy b/data/embeddings/tumblr_5d01116b6a72d0fef4cf632.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4c7829802261f65334d6d9e0bbf8f9c30d23808 --- /dev/null +++ b/data/embeddings/tumblr_5d01116b6a72d0fef4cf632.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd0869752e3c884ae75a7a91cab1b0467b2e575b60baab63257885ba96a4e77 +size 1664 diff --git a/data/embeddings/tumblr_5d2140cea40608406c9ff19.npy b/data/embeddings/tumblr_5d2140cea40608406c9ff19.npy new file mode 100644 index 0000000000000000000000000000000000000000..64d746e38ce87c48c0f4dc758f577fd4ed6545c5 --- /dev/null +++ b/data/embeddings/tumblr_5d2140cea40608406c9ff19.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b358f361661d960e45350c6cddd36947ebca392bfbceec0830e792f1e96bf0 +size 1664 diff --git a/data/embeddings/tumblr_5f6cf03bad545ef00f56dc4.npy b/data/embeddings/tumblr_5f6cf03bad545ef00f56dc4.npy new file mode 100644 index 0000000000000000000000000000000000000000..276eed562a6f4690da25f0c6f5673d2c18145865 --- /dev/null +++ b/data/embeddings/tumblr_5f6cf03bad545ef00f56dc4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b86ffa851ed8decf0b92df1acba3eb115b9f7c72c9bcabc5fabe44daa3e4725 +size 1664 diff --git a/data/embeddings/tumblr_631431ad8ad753246714978.npy b/data/embeddings/tumblr_631431ad8ad753246714978.npy new file mode 100644 index 0000000000000000000000000000000000000000..ce199af3091179a8f8ba597a63730a0737c50258 --- /dev/null +++ b/data/embeddings/tumblr_631431ad8ad753246714978.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4545695bd4d54f805256303dbbf35c7878cd512f57e0d4e50b601bda3fba3956 +size 1664 diff --git a/data/embeddings/tumblr_63352bafb04e2286ffe0c24.npy b/data/embeddings/tumblr_63352bafb04e2286ffe0c24.npy new file mode 100644 index 0000000000000000000000000000000000000000..1bce4d1fcb91429f246db2ec6e8f97c048bb6f4d --- /dev/null +++ b/data/embeddings/tumblr_63352bafb04e2286ffe0c24.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0765308ae95d96a684d281d22fc161a00f78f77353d364f37f39f6f64936516b +size 1664 diff --git a/data/embeddings/tumblr_65d2b20d7d7cbfda32cf94e.npy b/data/embeddings/tumblr_65d2b20d7d7cbfda32cf94e.npy new file mode 100644 index 0000000000000000000000000000000000000000..30be8c12c40a66fc1cc5192d466a2b6f572f5591 --- /dev/null +++ b/data/embeddings/tumblr_65d2b20d7d7cbfda32cf94e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04024a366519ef50f1f8afa79b212edd8f1a75cf05e0b8f2eb67fa540407f63d +size 1664 diff --git a/data/embeddings/tumblr_69365289a8626bf2d4592eb.npy b/data/embeddings/tumblr_69365289a8626bf2d4592eb.npy new file mode 100644 index 0000000000000000000000000000000000000000..4044c9a8511f27e63fb55b4b78a101afca32d6b7 --- /dev/null +++ b/data/embeddings/tumblr_69365289a8626bf2d4592eb.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45879b804fb2cbd021b7992c9a94e4f01dec87276e6975751044f9c16183a303 +size 1664 diff --git a/data/embeddings/tumblr_6ad8fe08f89e33f8badaff5.npy b/data/embeddings/tumblr_6ad8fe08f89e33f8badaff5.npy new file mode 100644 index 0000000000000000000000000000000000000000..34e8c233b9d1454458589b361f5a3bb691fe585e --- /dev/null +++ b/data/embeddings/tumblr_6ad8fe08f89e33f8badaff5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853ae96f0ea321880973020a73f40ff3a904df294145917d3cafd4cd4a583452 +size 1664 diff --git a/data/embeddings/tumblr_797440bf87f093439a0a201.npy b/data/embeddings/tumblr_797440bf87f093439a0a201.npy new file mode 100644 index 0000000000000000000000000000000000000000..3c2968716811ad3caa45f1f193ed90853edf7dda --- /dev/null +++ b/data/embeddings/tumblr_797440bf87f093439a0a201.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:034868f6b29e14f2c316c2143f4e2c3d36208986a270da22db9a8e407aa131a8 +size 1664 diff --git a/data/embeddings/tumblr_79a8f93f7e2bc5cd2599a03.npy b/data/embeddings/tumblr_79a8f93f7e2bc5cd2599a03.npy new file mode 100644 index 0000000000000000000000000000000000000000..abcc4f4000823d32246dc29db8763a408bba144d --- /dev/null +++ b/data/embeddings/tumblr_79a8f93f7e2bc5cd2599a03.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81775646ed849ef5d0fee34a837459dd17bbc322be687eeea323611ef8fd5ab +size 1664 diff --git a/data/embeddings/tumblr_7d44e099aaf29b3de971a3b.npy b/data/embeddings/tumblr_7d44e099aaf29b3de971a3b.npy new file mode 100644 index 0000000000000000000000000000000000000000..bca0d835457d1099f43ccf80395fea8862b1ecd2 --- /dev/null +++ b/data/embeddings/tumblr_7d44e099aaf29b3de971a3b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5cca7055516badd06d272d55344d85ea11cdd69b98f81d2139987274fbda05d +size 1664 diff --git a/data/embeddings/tumblr_7f7a241b304609908dc75f0.npy b/data/embeddings/tumblr_7f7a241b304609908dc75f0.npy new file mode 100644 index 0000000000000000000000000000000000000000..bdcdad998fd3e1d5693ad4164c76802d90633b5e --- /dev/null +++ b/data/embeddings/tumblr_7f7a241b304609908dc75f0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f611c5edb7219fe710c7d6e61d7bb027a9fe2b91169006f5353bdbd7585a448d +size 1664 diff --git a/data/embeddings/tumblr_8531196024878c332ee4c00.npy b/data/embeddings/tumblr_8531196024878c332ee4c00.npy new file mode 100644 index 0000000000000000000000000000000000000000..e22bcb40620a180a1091b1b511805b2ea58f9bc6 --- /dev/null +++ b/data/embeddings/tumblr_8531196024878c332ee4c00.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b71387dcc6401e1e33a58666fa3ac5abe8b5360a140e2ca9459eecc7dc4c9fe +size 1664 diff --git a/data/embeddings/tumblr_880985540ca3cc411f1483f.npy b/data/embeddings/tumblr_880985540ca3cc411f1483f.npy new file mode 100644 index 0000000000000000000000000000000000000000..d35d36843a1fe4359183e5bc764cead4cca5d7c9 --- /dev/null +++ b/data/embeddings/tumblr_880985540ca3cc411f1483f.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a9cf01a0e60e3571724d90238b9b322c932bb0c7c471a2150e4e6110a2c2c7 +size 1664 diff --git a/data/embeddings/tumblr_89cdcd658bdcd655b8c24b0.npy b/data/embeddings/tumblr_89cdcd658bdcd655b8c24b0.npy new file mode 100644 index 0000000000000000000000000000000000000000..096939dc2140d70edc0c7b28b8e6aefd2511e108 --- /dev/null +++ b/data/embeddings/tumblr_89cdcd658bdcd655b8c24b0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e55887cba9aa4cc3e049a96a994d3fbbeb0b0c36855ce1f82ff4062dfa74445 +size 1664 diff --git a/data/embeddings/tumblr_8d9bdcae1e1620ef0da06fe.npy b/data/embeddings/tumblr_8d9bdcae1e1620ef0da06fe.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7916d42d2fe7487b0aaad7fc1e7a2a12add23a9 --- /dev/null +++ b/data/embeddings/tumblr_8d9bdcae1e1620ef0da06fe.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8af558ef3ece82a7c07a16ea4713de74c50962f1b683eedbbf11bcea36f198 +size 1664 diff --git a/data/embeddings/tumblr_929823ab234b0282d8b3868.npy b/data/embeddings/tumblr_929823ab234b0282d8b3868.npy new file mode 100644 index 0000000000000000000000000000000000000000..62160c1fae2f51ad3f37535c4eae328fae15f08d --- /dev/null +++ b/data/embeddings/tumblr_929823ab234b0282d8b3868.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf31a15cb706e0984002a6ea6739f3e174a39897e3e4fe99b507c9e403b5ceb8 +size 1664 diff --git a/data/embeddings/tumblr_9ecf4eae8152f05ff68964c.npy b/data/embeddings/tumblr_9ecf4eae8152f05ff68964c.npy new file mode 100644 index 0000000000000000000000000000000000000000..a94fa6fc32ed85e3e7a8d4be729df4bb017c3978 --- /dev/null +++ b/data/embeddings/tumblr_9ecf4eae8152f05ff68964c.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8670974f80666c9a8361825f0a3b4cfbda9366472f0b2d8d03ba104dc326f6c6 +size 1664 diff --git a/data/embeddings/tumblr_a15b8b07b12029e048d0916.npy b/data/embeddings/tumblr_a15b8b07b12029e048d0916.npy new file mode 100644 index 0000000000000000000000000000000000000000..9741d75491bd011372c089e669e5f6a387d2bff5 --- /dev/null +++ b/data/embeddings/tumblr_a15b8b07b12029e048d0916.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4d470cfe5545b405d2399c447c48bc7163a6084a59fd34e587db68409532c4 +size 1664 diff --git a/data/embeddings/tumblr_a1b08fcacb7aeed6b0274f2.npy b/data/embeddings/tumblr_a1b08fcacb7aeed6b0274f2.npy new file mode 100644 index 0000000000000000000000000000000000000000..2a5f4c3b4bdced9cb9d9c42d128e6b4b37504a03 --- /dev/null +++ b/data/embeddings/tumblr_a1b08fcacb7aeed6b0274f2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a833783339e529c966a02b86c5143aa7a5e2829b1876bf1b787013c18451f3f7 +size 1664 diff --git a/data/embeddings/tumblr_a6a4822a3fb5938db6e77c4.npy b/data/embeddings/tumblr_a6a4822a3fb5938db6e77c4.npy new file mode 100644 index 0000000000000000000000000000000000000000..d16064ed6e1e2e054e659968d1987e7e5028c5cb --- /dev/null +++ b/data/embeddings/tumblr_a6a4822a3fb5938db6e77c4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0abb1b8e173ee5fe490cf66959232a42fa933723446907f8365cff6b5a6db540 +size 1664 diff --git a/data/embeddings/tumblr_a8ef7300bce88758558e2b0.npy b/data/embeddings/tumblr_a8ef7300bce88758558e2b0.npy new file mode 100644 index 0000000000000000000000000000000000000000..845fd0867efa000378e577bbd38e2cfb5eb513c6 --- /dev/null +++ b/data/embeddings/tumblr_a8ef7300bce88758558e2b0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59e0af2c8b1b244c42bc716985dd0f5ea3a888ea7ad914f18edc97613b529fa9 +size 1664 diff --git a/data/embeddings/tumblr_aea047dc6705d15f4363f0e.npy b/data/embeddings/tumblr_aea047dc6705d15f4363f0e.npy new file mode 100644 index 0000000000000000000000000000000000000000..41931375693b6a99e1ff1d08722d47ec496a39dd --- /dev/null +++ b/data/embeddings/tumblr_aea047dc6705d15f4363f0e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39858a988688dc7ace502bd444d8036365df9866a641c5fa0ba1f835b538f9a +size 1664 diff --git a/data/embeddings/tumblr_b05ee6c063687adf6a4cf24.npy b/data/embeddings/tumblr_b05ee6c063687adf6a4cf24.npy new file mode 100644 index 0000000000000000000000000000000000000000..0b68ca0c2a1dcc65ccedc2d70e57a56a19d30d9e --- /dev/null +++ b/data/embeddings/tumblr_b05ee6c063687adf6a4cf24.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563a025457d32b5a7fdb508e5947711d3fdef33659f27771da486d3ef63a16ed +size 1664 diff --git a/data/embeddings/tumblr_b55a190767068bedfe6ce33.npy b/data/embeddings/tumblr_b55a190767068bedfe6ce33.npy new file mode 100644 index 0000000000000000000000000000000000000000..b78ce664b306a5c164fe32e9bea29bb1d68f3af5 --- /dev/null +++ b/data/embeddings/tumblr_b55a190767068bedfe6ce33.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67dfe9b3ac65d6fdc4296c85147319709467b11d1760919266bc198fe671d86e +size 1664 diff --git a/data/embeddings/tumblr_b5dfea703bdb80d0a9206fe.npy b/data/embeddings/tumblr_b5dfea703bdb80d0a9206fe.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f2357c2e09e8ced0ab3057be07896dbd4fed8f0 --- /dev/null +++ b/data/embeddings/tumblr_b5dfea703bdb80d0a9206fe.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d779d14c3c79764f61b18124989884b5f503f8072fecdd54605ba2742221447 +size 1664 diff --git a/data/embeddings/tumblr_bfa50e636ffb816c917e8bc.npy b/data/embeddings/tumblr_bfa50e636ffb816c917e8bc.npy new file mode 100644 index 0000000000000000000000000000000000000000..857dc4be1c7ba229f903d02d245d31e16f56ea4c --- /dev/null +++ b/data/embeddings/tumblr_bfa50e636ffb816c917e8bc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a289f61b3bd939d3138ef3f332b41198e418cf1fdcd8acc9313ce38a160de8a4 +size 1664 diff --git a/data/embeddings/tumblr_c47dfea71d0689c27122560.npy b/data/embeddings/tumblr_c47dfea71d0689c27122560.npy new file mode 100644 index 0000000000000000000000000000000000000000..e287cdae869d0ae95a22350228413ff974bc3469 --- /dev/null +++ b/data/embeddings/tumblr_c47dfea71d0689c27122560.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f53d8283b732387163d1ad6f13795484df3c6b970c3303ca3cc258139f50a3 +size 1664 diff --git a/data/embeddings/tumblr_c5274f4befeb9eed213ce35.npy b/data/embeddings/tumblr_c5274f4befeb9eed213ce35.npy new file mode 100644 index 0000000000000000000000000000000000000000..884903ed51d63dcd9dff5ecfeba6a0ca481ae765 --- /dev/null +++ b/data/embeddings/tumblr_c5274f4befeb9eed213ce35.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ba6ddcef23daf53f55cd3173811d5f3189bee7a37687720727d6cda85a4c12 +size 1664 diff --git a/data/embeddings/tumblr_c9187a69e66b512ab7724ef.npy b/data/embeddings/tumblr_c9187a69e66b512ab7724ef.npy new file mode 100644 index 0000000000000000000000000000000000000000..d10294a9749e5c7a97f91ec1b127a5e1dce8dae2 --- /dev/null +++ b/data/embeddings/tumblr_c9187a69e66b512ab7724ef.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b7b2be23a1d268ec328811fbf208de796005244d4d5c7a662ed069e7dff99b +size 1664 diff --git a/data/embeddings/tumblr_cab670264ae540d2d41f39c.npy b/data/embeddings/tumblr_cab670264ae540d2d41f39c.npy new file mode 100644 index 0000000000000000000000000000000000000000..3dbe83057c35aca4fdfc81ae421405c4f222edde --- /dev/null +++ b/data/embeddings/tumblr_cab670264ae540d2d41f39c.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe78d9ffdc3a98bc38e11bb359069a9fad462e96e0dfe4e1e0452c9bc70a885 +size 1664 diff --git a/data/embeddings/tumblr_cb90e8ae1ffb6c817e49d4d.npy b/data/embeddings/tumblr_cb90e8ae1ffb6c817e49d4d.npy new file mode 100644 index 0000000000000000000000000000000000000000..20f5bbff656bcfed97c6e19015223dfc730ab327 --- /dev/null +++ b/data/embeddings/tumblr_cb90e8ae1ffb6c817e49d4d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97013993e85adb1193f1ebcbc77481dd2eb2799e4dc5bac7629566d9391c88e +size 1664 diff --git a/data/embeddings/tumblr_d04adfa7b1ebc92b91bd8de.npy b/data/embeddings/tumblr_d04adfa7b1ebc92b91bd8de.npy new file mode 100644 index 0000000000000000000000000000000000000000..70a2abc98d38974611cae7c9c2838f435af244dd --- /dev/null +++ b/data/embeddings/tumblr_d04adfa7b1ebc92b91bd8de.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f36f89977973c8d97ab9c24c933cbbb90c263a237c594d515677d38c130b73 +size 1664 diff --git a/data/embeddings/tumblr_d2280e797b43431e57f75b1.npy b/data/embeddings/tumblr_d2280e797b43431e57f75b1.npy new file mode 100644 index 0000000000000000000000000000000000000000..208c5411f4e46e60500a07d8f90ac95fd0b832e1 --- /dev/null +++ b/data/embeddings/tumblr_d2280e797b43431e57f75b1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea880004c358b560044ab67637c0668976450e14b2bd641eb1e13b2109f16b6 +size 1664 diff --git a/data/embeddings/tumblr_d80b9ea35f72be3f9a5bc89.npy b/data/embeddings/tumblr_d80b9ea35f72be3f9a5bc89.npy new file mode 100644 index 0000000000000000000000000000000000000000..e8f3820c1b218fe552f94fdcc105e58849b43251 --- /dev/null +++ b/data/embeddings/tumblr_d80b9ea35f72be3f9a5bc89.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33ef40937f39510c81fb4d26243c37f5c39b81107d4b2949cd677ac14c0216e +size 1664 diff --git a/data/embeddings/tumblr_e16bb9b41b14e2e794b1884.npy b/data/embeddings/tumblr_e16bb9b41b14e2e794b1884.npy new file mode 100644 index 0000000000000000000000000000000000000000..644eacc1330f374f9879b55adea5ee581c69ac25 --- /dev/null +++ b/data/embeddings/tumblr_e16bb9b41b14e2e794b1884.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00187cd5a6451e55ecfb48842a66a585af324627ba0872160284719a718e3fb +size 1664 diff --git a/data/embeddings/tumblr_e35760cd2b4f9a354bdf483.npy b/data/embeddings/tumblr_e35760cd2b4f9a354bdf483.npy new file mode 100644 index 0000000000000000000000000000000000000000..1918480a726fa37353a2e4d310ffeecdd23cda07 --- /dev/null +++ b/data/embeddings/tumblr_e35760cd2b4f9a354bdf483.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3514cf4ed1d0423a097cfcdfc4aded44503f4f11bcc60db85edaa75ef80c6b92 +size 1664 diff --git a/data/embeddings/tumblr_e6b94bb873f9274a40a8bb9.npy b/data/embeddings/tumblr_e6b94bb873f9274a40a8bb9.npy new file mode 100644 index 0000000000000000000000000000000000000000..b8f9c86b7d0414197343b75c4a3fc4730b725f59 --- /dev/null +++ b/data/embeddings/tumblr_e6b94bb873f9274a40a8bb9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287f0ad72b682cb13ee74da831d5b1e26ca21f6fe9ffd4300f62fe79d2157da8 +size 1664 diff --git a/data/embeddings/tumblr_e994d06264884430a8edbb5.npy b/data/embeddings/tumblr_e994d06264884430a8edbb5.npy new file mode 100644 index 0000000000000000000000000000000000000000..d275214f73237775401d777f7eccf2b1f8f28865 --- /dev/null +++ b/data/embeddings/tumblr_e994d06264884430a8edbb5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ec6e4b09244c755d0ff212679c588949667710499054d0d0ea1f9ada1c364e +size 1664 diff --git a/data/embeddings/tumblr_f51aa184d45716645f62cab.npy b/data/embeddings/tumblr_f51aa184d45716645f62cab.npy new file mode 100644 index 0000000000000000000000000000000000000000..b381e3e676077d89a2b10a536bf43cf5a1498608 --- /dev/null +++ b/data/embeddings/tumblr_f51aa184d45716645f62cab.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8732c73e15d81cf44b3940d8093b52a5e36ccce679d83d5ab56962080d71fa86 +size 1664 diff --git a/data/embeddings/tumblr_fe57469b3d7f1e23edd2d9d.npy b/data/embeddings/tumblr_fe57469b3d7f1e23edd2d9d.npy new file mode 100644 index 0000000000000000000000000000000000000000..6b452e1731e6dd84077bcfcd62665e92409682dc --- /dev/null +++ b/data/embeddings/tumblr_fe57469b3d7f1e23edd2d9d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079af2f84af3f4ef5b6ab25a841bcc9bfc47595ad4577529cd79b2d88a5e1143 +size 1664 diff --git a/data/embeddings/tumblr_no9p3dergp1sit7ww.npy b/data/embeddings/tumblr_no9p3dergp1sit7ww.npy new file mode 100644 index 0000000000000000000000000000000000000000..8c60acfa98585a703e69c78920b2a9e6d4758b9f --- /dev/null +++ b/data/embeddings/tumblr_no9p3dergp1sit7ww.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b220d5eeb087d0d76c404aac9f401d37fa54c9677f4c8b01449a5012ef8a1737 +size 1664 diff --git a/data/embeddings/tumblr_nqo3jsflla1tczeo1.npy b/data/embeddings/tumblr_nqo3jsflla1tczeo1.npy new file mode 100644 index 0000000000000000000000000000000000000000..6e50d13c579984e752d9fb8f519aa39448b89d2c --- /dev/null +++ b/data/embeddings/tumblr_nqo3jsflla1tczeo1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed1e892db6be529233c0183d25c46f64fddc113d96410b52efe9ac7de160d78 +size 1664 diff --git a/data/embeddings/tumblr_nvbbz81rn81s7vcw5_720.npy b/data/embeddings/tumblr_nvbbz81rn81s7vcw5_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..38cd91afc761f29851b695da33b3fb1248731f08 --- /dev/null +++ b/data/embeddings/tumblr_nvbbz81rn81s7vcw5_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26005e29e74ce8c001b26c3804aa6407cd4a4d0351727a4a150e582b5858adaf +size 1664 diff --git a/data/embeddings/tumblr_nx7rb8bu0j1sj0zai.npy b/data/embeddings/tumblr_nx7rb8bu0j1sj0zai.npy new file mode 100644 index 0000000000000000000000000000000000000000..b39271126df1e182d78875b98ce83dcdad9417d8 --- /dev/null +++ b/data/embeddings/tumblr_nx7rb8bu0j1sj0zai.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d0642b4ad9b105e9e9eb1c9a59da693a4bbe106c18750f96c9ed5313de907f +size 1664 diff --git a/data/embeddings/tumblr_o23iv57xku1s9rrcg.npy b/data/embeddings/tumblr_o23iv57xku1s9rrcg.npy new file mode 100644 index 0000000000000000000000000000000000000000..deb90751d2dd1c8ea6a67bb480f928d4b3177269 --- /dev/null +++ b/data/embeddings/tumblr_o23iv57xku1s9rrcg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254abc8a6a8087b1cc68e61bdc9039eaddba28d7e42ddd3d9608c2f454460d6b +size 1664 diff --git a/data/embeddings/tumblr_o2obqdesvz1qiu7yx.npy b/data/embeddings/tumblr_o2obqdesvz1qiu7yx.npy new file mode 100644 index 0000000000000000000000000000000000000000..f4556cfc79e648c006a4e16d0b1b2aae59460c8a --- /dev/null +++ b/data/embeddings/tumblr_o2obqdesvz1qiu7yx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba2d7bb1f7bd91366c62f31140c712094184b9e79d884654987a64354d96315 +size 1664 diff --git a/data/embeddings/tumblr_o6ixlnhbkc1vpel39.npy b/data/embeddings/tumblr_o6ixlnhbkc1vpel39.npy new file mode 100644 index 0000000000000000000000000000000000000000..cbb4fab6170c6b160ed84c7080d1becd5e514ad4 --- /dev/null +++ b/data/embeddings/tumblr_o6ixlnhbkc1vpel39.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9841ddc8146c6b7b8d97d0f8b58b5e5d86c8d6fcd23dda92802ee3f948a14f3f +size 1664 diff --git a/data/embeddings/tumblr_o73thfracl1slstjg.npy b/data/embeddings/tumblr_o73thfracl1slstjg.npy new file mode 100644 index 0000000000000000000000000000000000000000..6339c09491a876b5a88e9583a1acbc03ae04a48f --- /dev/null +++ b/data/embeddings/tumblr_o73thfracl1slstjg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d92c3fa15f675b3468c21e10cef5e7d9330062a63fe3af51003c2109e23b17e +size 1664 diff --git a/data/embeddings/tumblr_o7h9rdhofm1qd4q8ao1_500.npy b/data/embeddings/tumblr_o7h9rdhofm1qd4q8ao1_500.npy new file mode 100644 index 0000000000000000000000000000000000000000..207f08aaa86a67a1d2811b09b89746bf96c052b6 --- /dev/null +++ b/data/embeddings/tumblr_o7h9rdhofm1qd4q8ao1_500.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc62449b08bc6fba035cdc89be701e733f74ba33bdf9bf1c20136564641862c +size 1664 diff --git a/data/embeddings/tumblr_ofjdsex8xl1r77qhao1_540.npy b/data/embeddings/tumblr_ofjdsex8xl1r77qhao1_540.npy new file mode 100644 index 0000000000000000000000000000000000000000..15eb5181c43765057c3cc713c3247de16ffab962 --- /dev/null +++ b/data/embeddings/tumblr_ofjdsex8xl1r77qhao1_540.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb00895be8c2853d732ce3bcee33a681303c973d6afce6ba07b5fd7fad70ebc +size 1664 diff --git a/data/embeddings/tumblr_oiew2j3oxr1tkxvxv.npy b/data/embeddings/tumblr_oiew2j3oxr1tkxvxv.npy new file mode 100644 index 0000000000000000000000000000000000000000..5e3b8fb8630e290c69f817d7950b9f9b9ea6f44e --- /dev/null +++ b/data/embeddings/tumblr_oiew2j3oxr1tkxvxv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3d3d6e05eff94c5f4dd60fa59b3378a050385a625e68de0a3cf1ff44ad395b +size 1664 diff --git a/data/embeddings/tumblr_on4va96ayo1w09rji.npy b/data/embeddings/tumblr_on4va96ayo1w09rji.npy new file mode 100644 index 0000000000000000000000000000000000000000..62d40445b8a2bde16213d5e494cff4b71f464940 --- /dev/null +++ b/data/embeddings/tumblr_on4va96ayo1w09rji.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a8a5ee800560e3ba7817d84b96329a2d8efcb280dbc67ba3b67ecf8c0c556e +size 1664 diff --git a/data/embeddings/tumblr_oobqvwfqax1v4qe09.npy b/data/embeddings/tumblr_oobqvwfqax1v4qe09.npy new file mode 100644 index 0000000000000000000000000000000000000000..3cc11e2d8288e7179fa01c27f992bee9831b5716 --- /dev/null +++ b/data/embeddings/tumblr_oobqvwfqax1v4qe09.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403a0ce6e3dd69c08a0f00b7e7bf1a62124979d2f0138ec02823dd95957c843e +size 1664 diff --git a/data/embeddings/tumblr_oqn0af6ma41vbvowz.npy b/data/embeddings/tumblr_oqn0af6ma41vbvowz.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b6b4d8b901b0c2f23337935471e3e72424a14ff --- /dev/null +++ b/data/embeddings/tumblr_oqn0af6ma41vbvowz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a70aa293d127a1a191394bdadd8f1393ee1e7a0374ffd42dc0ce02d7d16c1f +size 1664 diff --git a/data/embeddings/tumblr_ort14e71ed1rusd51.npy b/data/embeddings/tumblr_ort14e71ed1rusd51.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf5bc1541a69c2ccb5dd55fc7f41cc2d984dbc1 --- /dev/null +++ b/data/embeddings/tumblr_ort14e71ed1rusd51.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0587e4e701200bef32e6728d7b923af35d2ae061a6a89a7b9c3f546f0486a86 +size 1664 diff --git a/data/embeddings/tumblr_oyrn3narh41wfxs4p.npy b/data/embeddings/tumblr_oyrn3narh41wfxs4p.npy new file mode 100644 index 0000000000000000000000000000000000000000..3f2296d4a475f592945e67b6ec36a6d0c14c2567 --- /dev/null +++ b/data/embeddings/tumblr_oyrn3narh41wfxs4p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e891f18bcf309fd30b348d52a4442abd21d602cfe8aa87255d4ac38af67be7 +size 1664 diff --git a/data/embeddings/tumblr_p080x68crg1v61b0e.npy b/data/embeddings/tumblr_p080x68crg1v61b0e.npy new file mode 100644 index 0000000000000000000000000000000000000000..522d19a226639b9ce7a531241bb10b3bea466880 --- /dev/null +++ b/data/embeddings/tumblr_p080x68crg1v61b0e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e96ae1ffc276adedc11dc0bf24df5041ab1adb73cb96fadb1788d5f00dea50d +size 1664 diff --git a/data/embeddings/tumblr_p0opytk0me1vnq1cr.npy b/data/embeddings/tumblr_p0opytk0me1vnq1cr.npy new file mode 100644 index 0000000000000000000000000000000000000000..49ee9fc69d380de70163f795a42edbf1db149868 --- /dev/null +++ b/data/embeddings/tumblr_p0opytk0me1vnq1cr.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51f1e69e82689dc19051c1624e67cc6e81307e28cc0168685b98a4d942f1a13 +size 1664 diff --git a/data/embeddings/tumblr_p22xdaxdyb1wmj5u2_720.npy b/data/embeddings/tumblr_p22xdaxdyb1wmj5u2_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..bfd8b6c862b5051d3630a044d74b6654ed0f91ab --- /dev/null +++ b/data/embeddings/tumblr_p22xdaxdyb1wmj5u2_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e7a8a865c5af176be230ad45e1c7b92ecb3f8f9b51e06ac25a1c8a34d8175c +size 1664 diff --git a/data/embeddings/tumblr_p4vvpl8m1x1uu22sk.npy b/data/embeddings/tumblr_p4vvpl8m1x1uu22sk.npy new file mode 100644 index 0000000000000000000000000000000000000000..af0e774d070498fc6d47f10c6de309d8ac975025 --- /dev/null +++ b/data/embeddings/tumblr_p4vvpl8m1x1uu22sk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde8a144c2aec6b8e1ab309c43df821423c7b13b541b1e40fa9d2581824020c4 +size 1664 diff --git a/data/embeddings/tumblr_p5m33bhgd81v61b0e.npy b/data/embeddings/tumblr_p5m33bhgd81v61b0e.npy new file mode 100644 index 0000000000000000000000000000000000000000..9b63c07be6365e233d7002fab33eb0b1c8b54490 --- /dev/null +++ b/data/embeddings/tumblr_p5m33bhgd81v61b0e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50729bad0ab6dca4faf2b17a1d101b3da8f5d9ec7108819f7291689dc8b75cd5 +size 1664 diff --git a/data/embeddings/tumblr_p62i1lzrsj1ujkkfn_720.npy b/data/embeddings/tumblr_p62i1lzrsj1ujkkfn_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..7ce231eb4102322f6d123732b7230349839d22ed --- /dev/null +++ b/data/embeddings/tumblr_p62i1lzrsj1ujkkfn_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746e675726fb75c76c3b1fc4142dee4b292b5dd3e0fb2dd1fb2c5b184fabc57b +size 1664 diff --git a/data/embeddings/tumblr_paiu6vodeg1xt0fn9.npy b/data/embeddings/tumblr_paiu6vodeg1xt0fn9.npy new file mode 100644 index 0000000000000000000000000000000000000000..b70d9dcdbc9d306223a47e331e827a108785cb45 --- /dev/null +++ b/data/embeddings/tumblr_paiu6vodeg1xt0fn9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d0042a19582478cf62d28ec455b9f724bf79aa4ec06d0830b5087a66390a6b9 +size 1664 diff --git a/data/embeddings/tumblr_pcug7ipupp1ucb78j1.npy b/data/embeddings/tumblr_pcug7ipupp1ucb78j1.npy new file mode 100644 index 0000000000000000000000000000000000000000..823a2531196eacd3fbf33c683d38775bd9fab5d6 --- /dev/null +++ b/data/embeddings/tumblr_pcug7ipupp1ucb78j1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d41754cc5b41578cabcb780db9dcc43e7f8385e2ba216ab402ddd3bc942da6 +size 1664 diff --git a/data/embeddings/tumblr_pf9v7h7tle1qicsph.npy b/data/embeddings/tumblr_pf9v7h7tle1qicsph.npy new file mode 100644 index 0000000000000000000000000000000000000000..7df3025f4e6e7fa089592abb2cd2a6c8b131d56d --- /dev/null +++ b/data/embeddings/tumblr_pf9v7h7tle1qicsph.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c405524590377c161b09a0a503122b527da629a34b1e69d5ad7d557da97060 +size 1664 diff --git a/data/embeddings/tumblr_pftgtl50dj1xoyw8p.npy b/data/embeddings/tumblr_pftgtl50dj1xoyw8p.npy new file mode 100644 index 0000000000000000000000000000000000000000..28c1b5aa67fd3f09c5bc46781bfd636f3a2b4cbf --- /dev/null +++ b/data/embeddings/tumblr_pftgtl50dj1xoyw8p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca93fb2336858e0bcb55268912733281e2b7ed750c448e3e3ebd00c3e1f652b2 +size 1664 diff --git a/data/embeddings/tumblr_pg2yezpodj1wkb5q4.npy b/data/embeddings/tumblr_pg2yezpodj1wkb5q4.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f82a17ce10778b8cd33f4f07c77bc0ce9dbfb99 --- /dev/null +++ b/data/embeddings/tumblr_pg2yezpodj1wkb5q4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd617288786e6136a8ccf824d3eafb1f084d465153dab505103a739b479fef0b +size 1664 diff --git a/data/embeddings/tumblr_pggbhshcy91qjpq1o.npy b/data/embeddings/tumblr_pggbhshcy91qjpq1o.npy new file mode 100644 index 0000000000000000000000000000000000000000..dbc689f51c8f2957301244c57df86c77672e2fe2 --- /dev/null +++ b/data/embeddings/tumblr_pggbhshcy91qjpq1o.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367341500b414f0a210d9f8ebea3da04d5ed68309b0ba9cce8fb830906265edd +size 1664 diff --git a/data/embeddings/tumblr_pgkj141bhe1xseads1.npy b/data/embeddings/tumblr_pgkj141bhe1xseads1.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f7462c8f7f9b925989bd32dc36ba0e1065d2509 --- /dev/null +++ b/data/embeddings/tumblr_pgkj141bhe1xseads1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea77ea343e2c37f590ea2585f31c5786b03a31e9b977d4b35407d789f2574129 +size 1664 diff --git a/data/embeddings/tumblr_ph9tstzv0d1wiatbxo1_250.npy b/data/embeddings/tumblr_ph9tstzv0d1wiatbxo1_250.npy new file mode 100644 index 0000000000000000000000000000000000000000..7294905129cfff81dd6d95dc10690bed53468d2e --- /dev/null +++ b/data/embeddings/tumblr_ph9tstzv0d1wiatbxo1_250.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f44c74d39bb34b13c002da19bc38a59670d52e06a955417cbc701de9cb1a40a +size 1664 diff --git a/data/embeddings/tumblr_pi3xsduhru1qdz4bw.npy b/data/embeddings/tumblr_pi3xsduhru1qdz4bw.npy new file mode 100644 index 0000000000000000000000000000000000000000..8a4147725c18b4ba13b93ee3cb7139089826a688 --- /dev/null +++ b/data/embeddings/tumblr_pi3xsduhru1qdz4bw.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c443be4c13edfbb38c9c5d42fe1d7ffa3ac1abe806317fef80472a967672f4c +size 1664 diff --git a/data/embeddings/tumblr_pjs86ff7d61xknvha.npy b/data/embeddings/tumblr_pjs86ff7d61xknvha.npy new file mode 100644 index 0000000000000000000000000000000000000000..957a248f3944f784b31a504e33da7dce51d97ab5 --- /dev/null +++ b/data/embeddings/tumblr_pjs86ff7d61xknvha.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd944244efbcabf3af388f01c6990a06e7e58b35540f86e6fe3ced778a08f3b +size 1664 diff --git a/data/embeddings/tumblr_pkrg13minm1ufbwoc.npy b/data/embeddings/tumblr_pkrg13minm1ufbwoc.npy new file mode 100644 index 0000000000000000000000000000000000000000..561388c3e8612a55c68ba3f39119640044fb8535 --- /dev/null +++ b/data/embeddings/tumblr_pkrg13minm1ufbwoc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:270de57d00b19c670f7c8f9b1c27df00d9c6b47495afabf3c77f27281dcfbfd8 +size 1664 diff --git a/data/embeddings/tumblr_ppe0ziwngp1xoyw8p.npy b/data/embeddings/tumblr_ppe0ziwngp1xoyw8p.npy new file mode 100644 index 0000000000000000000000000000000000000000..b3a206c18e3522fee92df4c044bb427f53ed08b3 --- /dev/null +++ b/data/embeddings/tumblr_ppe0ziwngp1xoyw8p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb44e3934bda7f029601c461d0e481e41b85662acecada8acfff38cfe35f1b7 +size 1664 diff --git a/data/embeddings/tumblr_ppmhj77cgz1y5y4d0.npy b/data/embeddings/tumblr_ppmhj77cgz1y5y4d0.npy new file mode 100644 index 0000000000000000000000000000000000000000..382493b195b809ca3bda0ecdea51a934fb737ed9 --- /dev/null +++ b/data/embeddings/tumblr_ppmhj77cgz1y5y4d0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e9738630965ce3843308689adf29aa849ad8d1d3c22d17707bfd49b6b0336 +size 1664 diff --git a/data/embeddings/tumblr_psl4ml2lrb1y9fkxh.npy b/data/embeddings/tumblr_psl4ml2lrb1y9fkxh.npy new file mode 100644 index 0000000000000000000000000000000000000000..b2f1dc225e758250a5f7bc44ada4966b4b244fff --- /dev/null +++ b/data/embeddings/tumblr_psl4ml2lrb1y9fkxh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9431b9b0a0e5eed1e89d3550129c1bcae7772eb1e7210c43ff2f367cc363366 +size 1664 diff --git a/data/embeddings/tumblr_psscvt0lnt1yozk4p.npy b/data/embeddings/tumblr_psscvt0lnt1yozk4p.npy new file mode 100644 index 0000000000000000000000000000000000000000..928ff0d647636622608fc86335e517e25bc83a99 --- /dev/null +++ b/data/embeddings/tumblr_psscvt0lnt1yozk4p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb507a5aa664197cb4d9af9c01fb0526f96ec5c8e9b99676de8a643433906f0 +size 1664 diff --git a/data/embeddings/tumblr_pswuvejcuq1t1rjsc.npy b/data/embeddings/tumblr_pswuvejcuq1t1rjsc.npy new file mode 100644 index 0000000000000000000000000000000000000000..60c7a7edf01e019fc7cfc9b79c64195e38fd26e6 --- /dev/null +++ b/data/embeddings/tumblr_pswuvejcuq1t1rjsc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9e2a4ac8f3bfe54c79762929e9d741bfb35c29f55d03d5f039b45ed5d5c990 +size 1664 diff --git a/data/embeddings/tumblr_pud1klyjte1vu7869.npy b/data/embeddings/tumblr_pud1klyjte1vu7869.npy new file mode 100644 index 0000000000000000000000000000000000000000..915cadaeb54a999bbfaef92c8146abef3eecf361 --- /dev/null +++ b/data/embeddings/tumblr_pud1klyjte1vu7869.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa56fc8e45ed434562f9ede8d342c18eec19b6b251f256b98251853ff974464c +size 1664 diff --git a/data/embeddings/tumblr_pvgpmifqs81r1f8n1.npy b/data/embeddings/tumblr_pvgpmifqs81r1f8n1.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f4a36f988c9f347c74e929861db077a1a5d302a --- /dev/null +++ b/data/embeddings/tumblr_pvgpmifqs81r1f8n1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:391f386def32f2b863b191323b332a89a3ea3675ded8307a1e759ae9ac241214 +size 1664 diff --git a/data/embeddings/tumblr_pvjsmtqh5t1xy89dz.npy b/data/embeddings/tumblr_pvjsmtqh5t1xy89dz.npy new file mode 100644 index 0000000000000000000000000000000000000000..b09ba5ab6cfbc5bc0188010d674818289b98d8d3 --- /dev/null +++ b/data/embeddings/tumblr_pvjsmtqh5t1xy89dz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a387d2a05b12b00a8abde2bcad4dc449d3a3eef0519f09b816eee19713a92cd +size 1664 diff --git a/data/embeddings/tumblr_pw39w8i6xu1tekpe5.npy b/data/embeddings/tumblr_pw39w8i6xu1tekpe5.npy new file mode 100644 index 0000000000000000000000000000000000000000..a55817c300e9c9f9b8ec78c23c1d7673ae85860a --- /dev/null +++ b/data/embeddings/tumblr_pw39w8i6xu1tekpe5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7efaf7a6809a9e999db300f39bbf019787c25ff4fc1eb2756921c1d95b6491 +size 1664 diff --git a/data/embeddings/tumblr_pwns4wy8wq1y73t5z.npy b/data/embeddings/tumblr_pwns4wy8wq1y73t5z.npy new file mode 100644 index 0000000000000000000000000000000000000000..efb30317faac1eb6f826bc8aa9e98142b796e75c --- /dev/null +++ b/data/embeddings/tumblr_pwns4wy8wq1y73t5z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e14c6681ca649cacc3bdc1903f109a4925016edf9cc879112727a92484623ce +size 1664 diff --git a/data/embeddings/tumblr_pwvcz6epvx1sg5u7k.npy b/data/embeddings/tumblr_pwvcz6epvx1sg5u7k.npy new file mode 100644 index 0000000000000000000000000000000000000000..c64fa68d68a972b3060386044be6509b366f3b73 --- /dev/null +++ b/data/embeddings/tumblr_pwvcz6epvx1sg5u7k.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bb3640670937c31de72a32b5c816fccc1ffc39405fb0f09d1948d9206c7a6c +size 1664 diff --git a/data/embeddings/tumblr_px00euzcme1w6we7f_720.npy b/data/embeddings/tumblr_px00euzcme1w6we7f_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..0592660287865d5a7d1f117b0b9328f0a149babf --- /dev/null +++ b/data/embeddings/tumblr_px00euzcme1w6we7f_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0735defb1ff1250a148ce67585a1726d7ab540926d07de57194ff7cce4d5f4 +size 1664 diff --git a/data/embeddings/tumblr_px12cem2y61ww1c21.npy b/data/embeddings/tumblr_px12cem2y61ww1c21.npy new file mode 100644 index 0000000000000000000000000000000000000000..bddf44ae3f16e604258ea934497cf60ea13bde65 --- /dev/null +++ b/data/embeddings/tumblr_px12cem2y61ww1c21.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9b4ea303bd095a287a00041a8e15d2178368c6f42d0f436e4e4a52f70f369a +size 1664 diff --git a/data/embeddings/tumblr_px2oa7xj5j1y3tvij.npy b/data/embeddings/tumblr_px2oa7xj5j1y3tvij.npy new file mode 100644 index 0000000000000000000000000000000000000000..97980055062ca1700d6cf6d5655e17be99b2e778 --- /dev/null +++ b/data/embeddings/tumblr_px2oa7xj5j1y3tvij.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aee9af0f1441539cf48e0f090d62132e59bec718719429626c058aceeec320ed +size 1664 diff --git a/data/embeddings/tumblr_py2cpycmfi1urdjha.npy b/data/embeddings/tumblr_py2cpycmfi1urdjha.npy new file mode 100644 index 0000000000000000000000000000000000000000..337d31be191d02cc0236e9226a1c9f23c48214fe --- /dev/null +++ b/data/embeddings/tumblr_py2cpycmfi1urdjha.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69a38c30df4285b34fe102d54157952566448f95145d0c41babbfc925d5ed0f +size 1664 diff --git a/data/embeddings/tumblr_pyqb56qfal1ys1mpp.npy b/data/embeddings/tumblr_pyqb56qfal1ys1mpp.npy new file mode 100644 index 0000000000000000000000000000000000000000..5ff73fd28d28f6750e117669278ffd03321c9469 --- /dev/null +++ b/data/embeddings/tumblr_pyqb56qfal1ys1mpp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb55247de5c776d19ab1f3443ba3296d734b76035a3c4d5a94aa5d27d4a960e +size 1664 diff --git a/data/embeddings/tumblr_pz6tue0foy1yu9fc3.npy b/data/embeddings/tumblr_pz6tue0foy1yu9fc3.npy new file mode 100644 index 0000000000000000000000000000000000000000..f84a2f986dd2c8465ce180ad665a4f794b947ed9 --- /dev/null +++ b/data/embeddings/tumblr_pz6tue0foy1yu9fc3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb725b4fa647e7d2b9ea9ca637e4ea427b21d3f68f66e1c6ea0d83aec99298b +size 1664 diff --git a/data/embeddings/tumblr_pz8lvr6vkd1wyqvz5.npy b/data/embeddings/tumblr_pz8lvr6vkd1wyqvz5.npy new file mode 100644 index 0000000000000000000000000000000000000000..0a3e0f8c27176c31b5e803203726a36503dcdae2 --- /dev/null +++ b/data/embeddings/tumblr_pz8lvr6vkd1wyqvz5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3559dd8e0c068ee3affc4723a888598060a5a06e2072d1eae0b689ce4ccaa0 +size 1664 diff --git a/data/embeddings/tumblr_pzvx3nmmxq1upr3iz.npy b/data/embeddings/tumblr_pzvx3nmmxq1upr3iz.npy new file mode 100644 index 0000000000000000000000000000000000000000..529eafe739f44808fe9485c187d2ddef9314e239 --- /dev/null +++ b/data/embeddings/tumblr_pzvx3nmmxq1upr3iz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c02bf81e6c1933fee61c3fd03898471bd1600c25ed77bb10fbb9be9df15ae4c +size 1664 diff --git a/data/embeddings/tumblr_q00lxfxyjl1r518v3.npy b/data/embeddings/tumblr_q00lxfxyjl1r518v3.npy new file mode 100644 index 0000000000000000000000000000000000000000..0d503673b2cbb371c6ef7ded5f3f382c9333355e --- /dev/null +++ b/data/embeddings/tumblr_q00lxfxyjl1r518v3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f579f96d41c9e84ed711748cce9627b882277d083a35cf4d59eb28a9481b1b5e +size 1664 diff --git a/data/embeddings/tumblr_q05btbnjkf1wjlseu1.npy b/data/embeddings/tumblr_q05btbnjkf1wjlseu1.npy new file mode 100644 index 0000000000000000000000000000000000000000..8e4736d64c78407c22b65e0dbac8c14768cfa0be --- /dev/null +++ b/data/embeddings/tumblr_q05btbnjkf1wjlseu1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418e5304a63c5050eb3a0578e2fb92f7f8ee37157e67d69b7384a9e85b1f7636 +size 1664 diff --git a/data/embeddings/tumblr_q0p3rfacwg1vdn84q.npy b/data/embeddings/tumblr_q0p3rfacwg1vdn84q.npy new file mode 100644 index 0000000000000000000000000000000000000000..e8963718d2653cd65bdb9643f73fa6691d1eb680 --- /dev/null +++ b/data/embeddings/tumblr_q0p3rfacwg1vdn84q.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0122efdb8bc208bd93800f25f48b665c0c61086a2ceb58fa6b9ba1468e8eff +size 1664 diff --git a/data/embeddings/tumblr_q0tiiln9tt1xnckdk_720.npy b/data/embeddings/tumblr_q0tiiln9tt1xnckdk_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..8a4fa68676f375f79aca335741668dbed3f94ec5 --- /dev/null +++ b/data/embeddings/tumblr_q0tiiln9tt1xnckdk_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3faa46170ee8a0a7d10d942b44066be3a45445c80cae709c2646932b63948dd +size 1664 diff --git a/data/embeddings/tumblr_q1fu0o3pwc1yym5l4.npy b/data/embeddings/tumblr_q1fu0o3pwc1yym5l4.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7eeb20a5b1a5731ccd66e0df176b5721a7194f3 --- /dev/null +++ b/data/embeddings/tumblr_q1fu0o3pwc1yym5l4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605559cdaf02ed5a1cf290e6281137566bdda7c4e3dae4ac8efff1d7c7b25a98 +size 1664 diff --git a/data/embeddings/tumblr_q1x2rgk4di1vmobp0.npy b/data/embeddings/tumblr_q1x2rgk4di1vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b0f55eeb689e1835414f69c38a9678c18f43f5e --- /dev/null +++ b/data/embeddings/tumblr_q1x2rgk4di1vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d92d277b84d46b5a78522c48052d21abcef8424db0a3253e28c05b9b0077e48 +size 1664 diff --git a/data/embeddings/tumblr_q25hbhhmlu1x4pmbc.npy b/data/embeddings/tumblr_q25hbhhmlu1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..b5171564ad440423d635f1ad62b2c64fdf4de4b5 --- /dev/null +++ b/data/embeddings/tumblr_q25hbhhmlu1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88627b358a081d09ae2c4e13fe1dc879c54d00db18366fb933a2792c17e17e3a +size 1664 diff --git a/data/embeddings/tumblr_q2xxyazp681qb43os.npy b/data/embeddings/tumblr_q2xxyazp681qb43os.npy new file mode 100644 index 0000000000000000000000000000000000000000..f84cc99a5457b2019bb3d38c0dd7de0587684432 --- /dev/null +++ b/data/embeddings/tumblr_q2xxyazp681qb43os.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8131221fb0bf1d3dc9da6947b014d9131437604bd44877cbda4664502727c3d8 +size 1664 diff --git a/data/embeddings/tumblr_q3k09e6lkm1yym5l4.npy b/data/embeddings/tumblr_q3k09e6lkm1yym5l4.npy new file mode 100644 index 0000000000000000000000000000000000000000..f1ca4a30a584087aeda0dbd93e3878507de52e44 --- /dev/null +++ b/data/embeddings/tumblr_q3k09e6lkm1yym5l4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d8a75f98bc4bb850705653ac8d9935578248ba56c67911093c4581a39ba0d7 +size 1664 diff --git a/data/embeddings/tumblr_q4e9yngshz1yowoi1.npy b/data/embeddings/tumblr_q4e9yngshz1yowoi1.npy new file mode 100644 index 0000000000000000000000000000000000000000..33b3bdd109a485c80de7aef6017ffadefcf55ed7 --- /dev/null +++ b/data/embeddings/tumblr_q4e9yngshz1yowoi1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732309ac10691bf885024b29ef99a2de96856d9da8ba3b9a2d8a220758187db2 +size 1664 diff --git a/data/embeddings/tumblr_q799hw2ti91s1ddrj.npy b/data/embeddings/tumblr_q799hw2ti91s1ddrj.npy new file mode 100644 index 0000000000000000000000000000000000000000..730a793c79507e2e22a03d193076ee2a55bf0647 --- /dev/null +++ b/data/embeddings/tumblr_q799hw2ti91s1ddrj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889a767e5133ce47ac7b1528762133f45bed80c944df8077c3d2086516fa68e6 +size 1664 diff --git a/data/embeddings/tumblr_q7xr0ihfny1rmij36.npy b/data/embeddings/tumblr_q7xr0ihfny1rmij36.npy new file mode 100644 index 0000000000000000000000000000000000000000..93f8cfc55a20e99183d6cf2df07e829e7f959f65 --- /dev/null +++ b/data/embeddings/tumblr_q7xr0ihfny1rmij36.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b1af9ba71844a581451e8d9b41c279b7977309f32a0e90c83144b251e67ec7 +size 1664 diff --git a/data/embeddings/tumblr_q8f813ghj51yttqag.npy b/data/embeddings/tumblr_q8f813ghj51yttqag.npy new file mode 100644 index 0000000000000000000000000000000000000000..5075d6a097403988e1f78372e94259794dd5fe59 --- /dev/null +++ b/data/embeddings/tumblr_q8f813ghj51yttqag.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30301bc31474ee1d4052236ba9411893f78b573b7874ed34bda8a49e985a4d4 +size 1664 diff --git a/data/embeddings/tumblr_q8qbdq7oer1s8ba22.npy b/data/embeddings/tumblr_q8qbdq7oer1s8ba22.npy new file mode 100644 index 0000000000000000000000000000000000000000..e6b0f582542285bd3b187e73c945186fa0552936 --- /dev/null +++ b/data/embeddings/tumblr_q8qbdq7oer1s8ba22.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c3323814a15f67bea0d8bfebc5957684f7610c9f570e85314223f9712324ee +size 1664 diff --git a/data/embeddings/tumblr_q90ozzqhty1qjbz3w.npy b/data/embeddings/tumblr_q90ozzqhty1qjbz3w.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cb2fafed0b5019e8bdca2a327024c4282a823fc --- /dev/null +++ b/data/embeddings/tumblr_q90ozzqhty1qjbz3w.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda2d079cc7178273754968e881cb393edcb8727632ce40920d2231635405a58 +size 1664 diff --git a/data/embeddings/tumblr_q98zp21tkh1y5o966.npy b/data/embeddings/tumblr_q98zp21tkh1y5o966.npy new file mode 100644 index 0000000000000000000000000000000000000000..d3633c55bcec52caf9c37761e0ae9bb8ca4cc8c4 --- /dev/null +++ b/data/embeddings/tumblr_q98zp21tkh1y5o966.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8b802a5a6b7a68fb8883e44a673edb956c62a33eddef28b2604de0cb43e4cb +size 1664 diff --git a/data/embeddings/tumblr_qb2335qsyr1rv8mhv_720.npy b/data/embeddings/tumblr_qb2335qsyr1rv8mhv_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..775a4a3fdd491ef93384bc2c4102baab5167d460 --- /dev/null +++ b/data/embeddings/tumblr_qb2335qsyr1rv8mhv_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4920569173a5d3de5d486ec250dce2df91021be27c5b16520d959b1836d2a1 +size 1664 diff --git a/data/embeddings/tumblr_qbjgncf2y31qev8ce.npy b/data/embeddings/tumblr_qbjgncf2y31qev8ce.npy new file mode 100644 index 0000000000000000000000000000000000000000..b54c51f7887083291f5e651080b7c54174afbefb --- /dev/null +++ b/data/embeddings/tumblr_qbjgncf2y31qev8ce.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934de80abd5e6bdaca07fdde64c090349c3b26c64a9caba27bc336b171ea479f +size 1664 diff --git a/data/embeddings/tumblr_qbjjwixbkb1ugrbaa.npy b/data/embeddings/tumblr_qbjjwixbkb1ugrbaa.npy new file mode 100644 index 0000000000000000000000000000000000000000..b3ed49e0ae363c0f51db620c95db1d8468324d07 --- /dev/null +++ b/data/embeddings/tumblr_qbjjwixbkb1ugrbaa.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b645b21760fedcde9883ec558fe80e9e986417c22bbbab0e3185eb4a607362ef +size 1664 diff --git a/data/embeddings/tumblr_qbm1psgnth1xn7gce.npy b/data/embeddings/tumblr_qbm1psgnth1xn7gce.npy new file mode 100644 index 0000000000000000000000000000000000000000..23d70dd04da0fb5256912d6786187d3415ed9ad3 --- /dev/null +++ b/data/embeddings/tumblr_qbm1psgnth1xn7gce.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0d44fe301035dd4a1890fd9fc95723ef2bb23449447b27283aa004ec7a5dcd +size 1664 diff --git a/data/embeddings/tumblr_qbpwn8hf431uwm4bj.npy b/data/embeddings/tumblr_qbpwn8hf431uwm4bj.npy new file mode 100644 index 0000000000000000000000000000000000000000..3958ab0347dd7a23e301655b6f8feaf99ea81031 --- /dev/null +++ b/data/embeddings/tumblr_qbpwn8hf431uwm4bj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764ce2d67d2d0089380ccf190fe30efbb82c9a7a0a3b45a4d75afd6e4b05e1f5 +size 1664 diff --git a/data/embeddings/tumblr_qcixzrehec1rndv4t.npy b/data/embeddings/tumblr_qcixzrehec1rndv4t.npy new file mode 100644 index 0000000000000000000000000000000000000000..95b120151a866387bec54e0cc39df1660b261b1f --- /dev/null +++ b/data/embeddings/tumblr_qcixzrehec1rndv4t.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4575c573634278b52f27dfc81319b959af78ffa231b5403eb394a0aa843840ce +size 1664 diff --git a/data/embeddings/tumblr_qcktyo2n6x1wl2mro.npy b/data/embeddings/tumblr_qcktyo2n6x1wl2mro.npy new file mode 100644 index 0000000000000000000000000000000000000000..e0e2c7c3b669ebff1c6dbd074b7d37f02173ffd0 --- /dev/null +++ b/data/embeddings/tumblr_qcktyo2n6x1wl2mro.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c33f29bb355b62e4cd85c70a6d66c9ea8b65cfeeaa6f2ec4bd04b50e613084c +size 1664 diff --git a/data/embeddings/tumblr_qd14sc1zcz1yg9abg.npy b/data/embeddings/tumblr_qd14sc1zcz1yg9abg.npy new file mode 100644 index 0000000000000000000000000000000000000000..20bf56d5ccff9847cea42c6fc53b2e9902d34b73 --- /dev/null +++ b/data/embeddings/tumblr_qd14sc1zcz1yg9abg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2208779b70f0d8f1db67e5039d97a4e9130ee82408e9012744f8b7bdc13c28 +size 1664 diff --git a/data/embeddings/tumblr_qdgncuguqd1x4pmbc.npy b/data/embeddings/tumblr_qdgncuguqd1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..266e63efe5c5abea17d6ba01d4b4984dc429ab20 --- /dev/null +++ b/data/embeddings/tumblr_qdgncuguqd1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6516052793b72267df78663778157e3cdda08ddd916482225720550a85f30e69 +size 1664 diff --git a/data/embeddings/tumblr_qdsr7m8sog1ya40ij.npy b/data/embeddings/tumblr_qdsr7m8sog1ya40ij.npy new file mode 100644 index 0000000000000000000000000000000000000000..96ed4a86301915058a12cb16873c588b81839254 --- /dev/null +++ b/data/embeddings/tumblr_qdsr7m8sog1ya40ij.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c237ca6b49d0a123db46ea3ac61d03e2bf5ecd58bdf570963581eda350440d2c +size 1664 diff --git a/data/embeddings/tumblr_qdv6r4j7l51ry1uzo.npy b/data/embeddings/tumblr_qdv6r4j7l51ry1uzo.npy new file mode 100644 index 0000000000000000000000000000000000000000..028f828be0016249aa4db65bf01372fa1a218788 --- /dev/null +++ b/data/embeddings/tumblr_qdv6r4j7l51ry1uzo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19996cda4c3772fa93f7526c36f856f5f0284ba6719a4970216f82720b59166 +size 1664 diff --git a/data/embeddings/tumblr_qehf84j1vf1xoyw8p.npy b/data/embeddings/tumblr_qehf84j1vf1xoyw8p.npy new file mode 100644 index 0000000000000000000000000000000000000000..0ef2cb2db5d0fb73e00d9fb097d17303f4beb624 --- /dev/null +++ b/data/embeddings/tumblr_qehf84j1vf1xoyw8p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:693e6af16a7aa0c9e5e1beeb8ce43ae91bb017a133234e4de09ff3655e8cdb3b +size 1664 diff --git a/data/embeddings/tumblr_qfc3fgiqrb1wmhpzh_720.npy b/data/embeddings/tumblr_qfc3fgiqrb1wmhpzh_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..cfcf47f9f37354ecf0dc520b7a81bc1ef414c0c8 --- /dev/null +++ b/data/embeddings/tumblr_qfc3fgiqrb1wmhpzh_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17858936cd88597517c7a2c3be6c1f33c139dd94a1d98fa27a4cae7745cc0d4 +size 1664 diff --git a/data/embeddings/tumblr_qfgbyyvddj1yri6y0.npy b/data/embeddings/tumblr_qfgbyyvddj1yri6y0.npy new file mode 100644 index 0000000000000000000000000000000000000000..dfcc6ad7e928852934e4f618c9b55af98e91d27f --- /dev/null +++ b/data/embeddings/tumblr_qfgbyyvddj1yri6y0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e310f455b9f41be4102a583d5cf0eef0fb76ea20e0d8f1d6a3e2b6b323df143 +size 1664 diff --git a/data/embeddings/tumblr_qfll0cvr4l1yvwbim.npy b/data/embeddings/tumblr_qfll0cvr4l1yvwbim.npy new file mode 100644 index 0000000000000000000000000000000000000000..d691bb4ca142fe29733242cd67e688c5c20bb6b6 --- /dev/null +++ b/data/embeddings/tumblr_qfll0cvr4l1yvwbim.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7162a1c717fbb769aed86f62e9569d1d52a2a45a8d8d5b961d1bd0ceb3d5f5b4 +size 1664 diff --git a/data/embeddings/tumblr_qfxxev71zt1y54s2v.npy b/data/embeddings/tumblr_qfxxev71zt1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..e7f9cb57696b45d6b06ddfe5bf901db5c2e921b2 --- /dev/null +++ b/data/embeddings/tumblr_qfxxev71zt1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4e464fc7184ff5081cd5b3b4b5e610170a4e1a110f556cbcde74521dc831a13 +size 1664 diff --git a/data/embeddings/tumblr_qgfg7uurh41wsqdel_720.npy b/data/embeddings/tumblr_qgfg7uurh41wsqdel_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..b00eac00ee324219823be8b7bc61905271534386 --- /dev/null +++ b/data/embeddings/tumblr_qgfg7uurh41wsqdel_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bb2f022982f2df72c3b99a555501eeaf379277c920c0ec04431cbf9f03d6c7 +size 1664 diff --git a/data/embeddings/tumblr_qhejmpjvzs1tkir8g.npy b/data/embeddings/tumblr_qhejmpjvzs1tkir8g.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b25b03842df67ef73a35ae97df56b93c35e9a23 --- /dev/null +++ b/data/embeddings/tumblr_qhejmpjvzs1tkir8g.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b59e2464c5c2aabda30180680d0cee3d37c366b5c5b7d9cb0f2cc8154fb3f62 +size 1664 diff --git a/data/embeddings/tumblr_qhhed200971r7eexa.npy b/data/embeddings/tumblr_qhhed200971r7eexa.npy new file mode 100644 index 0000000000000000000000000000000000000000..0666a310f12f5923cdf741b5c44dd6e3c52983c7 --- /dev/null +++ b/data/embeddings/tumblr_qhhed200971r7eexa.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d298126164101086f79dfe15ab91ec7e7eae6a290bca65fd00e4b9a2ef56c3a +size 1664 diff --git a/data/embeddings/tumblr_qhpiexdp451si01xj.npy b/data/embeddings/tumblr_qhpiexdp451si01xj.npy new file mode 100644 index 0000000000000000000000000000000000000000..70eee0f44f7f23cd0102dba8565b163aa53bc9ec --- /dev/null +++ b/data/embeddings/tumblr_qhpiexdp451si01xj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3cd6446382a2e4389cfda59b90f4c4026182096dd1196bde1dd42c88f94eff +size 1664 diff --git a/data/embeddings/tumblr_qja6r95k4b1qk3d2x.npy b/data/embeddings/tumblr_qja6r95k4b1qk3d2x.npy new file mode 100644 index 0000000000000000000000000000000000000000..a28a7a12cbd1308cae8a4b166d87fe3a74b1208d --- /dev/null +++ b/data/embeddings/tumblr_qja6r95k4b1qk3d2x.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e5aa604033eecd55a0faa68a6bdfec8faaf3875de850ceeac68ec89552a481 +size 1664 diff --git a/data/embeddings/tumblr_qjkyxeikcy1seiyci.npy b/data/embeddings/tumblr_qjkyxeikcy1seiyci.npy new file mode 100644 index 0000000000000000000000000000000000000000..a7748e6e197833a20aaf94130fc70edcf1b98a00 --- /dev/null +++ b/data/embeddings/tumblr_qjkyxeikcy1seiyci.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce4fe1e3e969ae7ae8bde6aeb7e030cc52f42dc4bffa7d502fb0ff10caba135 +size 1664 diff --git a/data/embeddings/tumblr_qkbqlem9s91v7xdh6.npy b/data/embeddings/tumblr_qkbqlem9s91v7xdh6.npy new file mode 100644 index 0000000000000000000000000000000000000000..ab5c60352ab563380888e5cf07702dd3b1aed40a --- /dev/null +++ b/data/embeddings/tumblr_qkbqlem9s91v7xdh6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d2c766c5aef24f1707d3f222f4dc66d007116f2e4f7b6c84824e2de13d10ba +size 1664 diff --git a/data/embeddings/tumblr_qkbyhdlyji1ufotlr_720.npy b/data/embeddings/tumblr_qkbyhdlyji1ufotlr_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..ad0251c1ec673ef568cbfa30a97e09fa1706d2a9 --- /dev/null +++ b/data/embeddings/tumblr_qkbyhdlyji1ufotlr_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb427eb0698a12bfff74215eb5b149f264e6d008e429b64dc8aab8eae70bf79 +size 1664 diff --git a/data/embeddings/tumblr_qkh09zwfrf1ye9vv1.npy b/data/embeddings/tumblr_qkh09zwfrf1ye9vv1.npy new file mode 100644 index 0000000000000000000000000000000000000000..912e37d663b22eff88e92ace11066b3ad283f6d5 --- /dev/null +++ b/data/embeddings/tumblr_qkh09zwfrf1ye9vv1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732da27f235df802dcd04a8990ac11979cb23821aeb4046c83ffefac8bfbd1de +size 1664 diff --git a/data/embeddings/tumblr_ql6pf5bmme1qfgq3v.npy b/data/embeddings/tumblr_ql6pf5bmme1qfgq3v.npy new file mode 100644 index 0000000000000000000000000000000000000000..0e5ac87ef6c2fc9af1314f223337671fd82371da --- /dev/null +++ b/data/embeddings/tumblr_ql6pf5bmme1qfgq3v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d59715e1ca48d9701962089a8789b535f4288cecde0008ab0cb9cf010e2dfa3 +size 1664 diff --git a/data/embeddings/tumblr_ql74jko7ug1vlete3.npy b/data/embeddings/tumblr_ql74jko7ug1vlete3.npy new file mode 100644 index 0000000000000000000000000000000000000000..43001cac7afdbd7fa6e454fd325f19feca8b1fdc --- /dev/null +++ b/data/embeddings/tumblr_ql74jko7ug1vlete3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1109ac8de397b85f60b678b373199507838e111ed2f8098a1a394e55e83ed54a +size 1664 diff --git a/data/embeddings/tumblr_qlpq08e0ek1yh1kk0.npy b/data/embeddings/tumblr_qlpq08e0ek1yh1kk0.npy new file mode 100644 index 0000000000000000000000000000000000000000..4e131aad3b3231c977087ffdc99254bab82870b7 --- /dev/null +++ b/data/embeddings/tumblr_qlpq08e0ek1yh1kk0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7f3259a3f503e74c6134d1cd9d321bd053267701a0f0c5d755458de2ffe1d9 +size 1664 diff --git a/data/embeddings/tumblr_qlwrbnuzlp1xy51ep.npy b/data/embeddings/tumblr_qlwrbnuzlp1xy51ep.npy new file mode 100644 index 0000000000000000000000000000000000000000..8e788d6df19aa78ce7f120647be0c449102bc84f --- /dev/null +++ b/data/embeddings/tumblr_qlwrbnuzlp1xy51ep.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:825abfb7ea51c4f562225d356e95dfc39622e44dafc69a2dc5e372332c4b5ee8 +size 1664 diff --git a/data/embeddings/tumblr_qmn6ak2ujd1yih4m9.npy b/data/embeddings/tumblr_qmn6ak2ujd1yih4m9.npy new file mode 100644 index 0000000000000000000000000000000000000000..04c7bcc5d1624aec4e8cc8b2a1cdcb95fc495d57 --- /dev/null +++ b/data/embeddings/tumblr_qmn6ak2ujd1yih4m9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5e65343988b290a5c1d4fbb974a163d220ee262aa29544cef7c540f7d22a64 +size 1664 diff --git a/data/embeddings/tumblr_qnzo48p8ph1y54s2v.npy b/data/embeddings/tumblr_qnzo48p8ph1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3ee6660418c708ea764967484222845e536a56b --- /dev/null +++ b/data/embeddings/tumblr_qnzo48p8ph1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce8609d47c0df3f66058c8cd24633f262ccdef1cdd6d14f998e9ebf5bfef5826 +size 1664 diff --git a/data/embeddings/tumblr_qoj6tzy7a41vy91o2.npy b/data/embeddings/tumblr_qoj6tzy7a41vy91o2.npy new file mode 100644 index 0000000000000000000000000000000000000000..bf10903f3af8e48e9b22a6eb4b843771c49e31d6 --- /dev/null +++ b/data/embeddings/tumblr_qoj6tzy7a41vy91o2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b1f4c49a8540d8d70a2aba53cf256ccd6492817fdd4a1c7c4d527446921b4e +size 1664 diff --git a/data/embeddings/tumblr_qonn8rdhau1sxr884.npy b/data/embeddings/tumblr_qonn8rdhau1sxr884.npy new file mode 100644 index 0000000000000000000000000000000000000000..aaa6bbb4d3f31981b6d6a1f0582a51988fc99b62 --- /dev/null +++ b/data/embeddings/tumblr_qonn8rdhau1sxr884.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f6da8d75682c83598907c7763e5fc765d4bbb4231847150f5141ecafb58af4e +size 1664 diff --git a/data/embeddings/tumblr_qosv2zcpws1v7xdh6.npy b/data/embeddings/tumblr_qosv2zcpws1v7xdh6.npy new file mode 100644 index 0000000000000000000000000000000000000000..003c8452a97bc132fcdb25e4938288c176a8a2ea --- /dev/null +++ b/data/embeddings/tumblr_qosv2zcpws1v7xdh6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe51747d225b0fb58982de7f6ee528bcc151d38982f5359ce5d285d8aa241f3 +size 1664 diff --git a/data/embeddings/tumblr_qp1bsjzuzh1yefkvd.npy b/data/embeddings/tumblr_qp1bsjzuzh1yefkvd.npy new file mode 100644 index 0000000000000000000000000000000000000000..ea7cfa402440ec3bc2f0855d0ea264f5f4556f26 --- /dev/null +++ b/data/embeddings/tumblr_qp1bsjzuzh1yefkvd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268ea831d7e3c9ff1e1bf3dde15b8bbd24ba492aee7e2e6aba66fbf20f4e64a7 +size 1664 diff --git a/data/embeddings/tumblr_qp4d3h43ul1txvytp.npy b/data/embeddings/tumblr_qp4d3h43ul1txvytp.npy new file mode 100644 index 0000000000000000000000000000000000000000..a400ecf36417d5a4997ec03021df7fae30fc8db4 --- /dev/null +++ b/data/embeddings/tumblr_qp4d3h43ul1txvytp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:accde3de6f5f3be6d1af3b6e7b482a1682acc7e0a1eb899acb677d08c3e5753a +size 1664 diff --git a/data/embeddings/tumblr_qp6b0phqdw1qjnhqg.npy b/data/embeddings/tumblr_qp6b0phqdw1qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..acbcd2e841da9a5bed9847535bf5850667cd000c --- /dev/null +++ b/data/embeddings/tumblr_qp6b0phqdw1qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64000cd361cadf8ed3035d8a2004cdef26d1d3957a6c0f0092a01be4554776 +size 1664 diff --git a/data/embeddings/tumblr_qp9z10frbx1xdvjtm.npy b/data/embeddings/tumblr_qp9z10frbx1xdvjtm.npy new file mode 100644 index 0000000000000000000000000000000000000000..700938cf56607810269876306b61ee8a8a6ff71f --- /dev/null +++ b/data/embeddings/tumblr_qp9z10frbx1xdvjtm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db99dfb7c9aec2f11e7a213ea43dd33a796f62e4b9cf9001651065694cbfa34 +size 1664 diff --git a/data/embeddings/tumblr_qpaz42aljv1z6jfls.npy b/data/embeddings/tumblr_qpaz42aljv1z6jfls.npy new file mode 100644 index 0000000000000000000000000000000000000000..dd7ab788203a26e5de499dc948411e2b500435e1 --- /dev/null +++ b/data/embeddings/tumblr_qpaz42aljv1z6jfls.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13001b50bec3d5a18280ced66850453f55e73bab8f483fec318dc1e166ad506 +size 1664 diff --git a/data/embeddings/tumblr_qpknh3uu3g1vtts30_720.npy b/data/embeddings/tumblr_qpknh3uu3g1vtts30_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..99d06bd4ea9444261528ebf816bfc09a848d436a --- /dev/null +++ b/data/embeddings/tumblr_qpknh3uu3g1vtts30_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27faa80a840879e441c78b9840caab440c691572b8f51f9a70da073eb9ed116c +size 1664 diff --git a/data/embeddings/tumblr_qplyg4lj6v1y686sz.npy b/data/embeddings/tumblr_qplyg4lj6v1y686sz.npy new file mode 100644 index 0000000000000000000000000000000000000000..2829ef0892b0a0a43c046b22d32d946c512e86cc --- /dev/null +++ b/data/embeddings/tumblr_qplyg4lj6v1y686sz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a83d4f98714d77df36c62e0ad6bd2da65b3139d3cec95afbaa74766c9f0ec7f +size 1664 diff --git a/data/embeddings/tumblr_qpvqjgjcwk1y4p0x6.npy b/data/embeddings/tumblr_qpvqjgjcwk1y4p0x6.npy new file mode 100644 index 0000000000000000000000000000000000000000..6f1f2931d8f1dfd377d26cd9930f80bf36bcf011 --- /dev/null +++ b/data/embeddings/tumblr_qpvqjgjcwk1y4p0x6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35af55e56774bbc4f708514f439025d4082e436a81eda3fc123f8a6c48a0ed9c +size 1664 diff --git a/data/embeddings/tumblr_qqagoslwdg1w8lequ.npy b/data/embeddings/tumblr_qqagoslwdg1w8lequ.npy new file mode 100644 index 0000000000000000000000000000000000000000..0d007bf803bc530da0f9b3e22a36c2e71503ede4 --- /dev/null +++ b/data/embeddings/tumblr_qqagoslwdg1w8lequ.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eecccafd8035788c7be114867405e573343bf57f4d1f62d8cbff6383cda7b86 +size 1664 diff --git a/data/embeddings/tumblr_qqcajl6u251y98erd_720.npy b/data/embeddings/tumblr_qqcajl6u251y98erd_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..a9dcb944e39eea962a66b3badf7ff445757b4100 --- /dev/null +++ b/data/embeddings/tumblr_qqcajl6u251y98erd_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86a8c7066157b0082b615a3fe8eb9cc08182ad48bed20c9b484974d430971c8 +size 1664 diff --git a/data/embeddings/tumblr_qqhn8gxsie1uvv5gh.npy b/data/embeddings/tumblr_qqhn8gxsie1uvv5gh.npy new file mode 100644 index 0000000000000000000000000000000000000000..66b35dbc2fc88a1490f9ec62b9f6775acb405297 --- /dev/null +++ b/data/embeddings/tumblr_qqhn8gxsie1uvv5gh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17aeb9e468ee4150c9981d4b26f4cb4eb6895fe3452506e52b714a7cbd73ce0 +size 1664 diff --git a/data/embeddings/tumblr_qqindkfonu1z7ukda.npy b/data/embeddings/tumblr_qqindkfonu1z7ukda.npy new file mode 100644 index 0000000000000000000000000000000000000000..8883ab7e97ffbb6c0d7fdf9e350e146826d33dda --- /dev/null +++ b/data/embeddings/tumblr_qqindkfonu1z7ukda.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb3e856c6132787ef4a2974df6f219758264f6f95bb55d66437f4f3b293f238 +size 1664 diff --git a/data/embeddings/tumblr_qqjd54wun41y4j5aa.npy b/data/embeddings/tumblr_qqjd54wun41y4j5aa.npy new file mode 100644 index 0000000000000000000000000000000000000000..ea2dc6bd6e04b0187d6b8f2edd463f38a01a9c31 --- /dev/null +++ b/data/embeddings/tumblr_qqjd54wun41y4j5aa.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234e24acd9fe60c3f14016477e010a7690f45ab4588758290cf32f388557dff8 +size 1664 diff --git a/data/embeddings/tumblr_qqrmdeymoe1szwlr0.npy b/data/embeddings/tumblr_qqrmdeymoe1szwlr0.npy new file mode 100644 index 0000000000000000000000000000000000000000..5d85cf0cffd733cccf8d55073008746c31cd3cc5 --- /dev/null +++ b/data/embeddings/tumblr_qqrmdeymoe1szwlr0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:386eb8730183113220f4a75ce890bfcd32d2af50a5ee55a923984ebb8c594cf7 +size 1664 diff --git a/data/embeddings/tumblr_qqv8e4v2p81uncty6.npy b/data/embeddings/tumblr_qqv8e4v2p81uncty6.npy new file mode 100644 index 0000000000000000000000000000000000000000..7f072137c4fdad13633116083f4a5a77bea35079 --- /dev/null +++ b/data/embeddings/tumblr_qqv8e4v2p81uncty6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec8397ec0902991abc1ae3e86ac8f7e17914b83a048625dbc73808f94b206df +size 1664 diff --git a/data/embeddings/tumblr_qrcocvqoew1z67npc.npy b/data/embeddings/tumblr_qrcocvqoew1z67npc.npy new file mode 100644 index 0000000000000000000000000000000000000000..898af2c0fa1357f8b4d6a218717e01f515d66721 --- /dev/null +++ b/data/embeddings/tumblr_qrcocvqoew1z67npc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dcced7fd1249e66882a6e5cb3ed165cd0f8eb28111d2e5eb9e5a15581384c92 +size 1664 diff --git a/data/embeddings/tumblr_qrg3v2rkuw1xgom7z.npy b/data/embeddings/tumblr_qrg3v2rkuw1xgom7z.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee588942c87a7f964663191a8054d31866dfb09c --- /dev/null +++ b/data/embeddings/tumblr_qrg3v2rkuw1xgom7z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f899d2185bc79a27221320f4e39d2174a6e73cb4ef2fa1d410debeed1a705c7 +size 1664 diff --git a/data/embeddings/tumblr_qro23kandl1y8aven.npy b/data/embeddings/tumblr_qro23kandl1y8aven.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa82bc006607f2542d2b71ff802efe97df7855ca --- /dev/null +++ b/data/embeddings/tumblr_qro23kandl1y8aven.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3907ca7429967fc784eb5e1d3b0c8bca41f3fe5604b6a36b35a2b00b8e00c454 +size 1664 diff --git a/data/embeddings/tumblr_qrzs8alir01ylx4u7.npy b/data/embeddings/tumblr_qrzs8alir01ylx4u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..f1d3f79c728f89920721741280952d900e1c76ab --- /dev/null +++ b/data/embeddings/tumblr_qrzs8alir01ylx4u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1df0544b5dba2a1b1fdb848aa86eb96f303b1aea69efa6934551dbca2f2d0a +size 1664 diff --git a/data/embeddings/tumblr_qscntczstr1rgaeps.npy b/data/embeddings/tumblr_qscntczstr1rgaeps.npy new file mode 100644 index 0000000000000000000000000000000000000000..17f2608fa7d940c92ca3d86f532642e8eb35ee60 --- /dev/null +++ b/data/embeddings/tumblr_qscntczstr1rgaeps.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd8f5cfa72f7169b32fa0b1813c4a52f77904613bf50385afd995d8191118bb +size 1664 diff --git a/data/embeddings/tumblr_qsi9yjrvyv1unz71b.npy b/data/embeddings/tumblr_qsi9yjrvyv1unz71b.npy new file mode 100644 index 0000000000000000000000000000000000000000..a3429816b8ff4d7630a8e3e69e226c422307e894 --- /dev/null +++ b/data/embeddings/tumblr_qsi9yjrvyv1unz71b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffeb685e1a2ab757e34265a50f86af1b4ae537a86ff201b05a04689439b606cb +size 1664 diff --git a/data/embeddings/tumblr_qsxd9ta7mx1z9rw1w_720.npy b/data/embeddings/tumblr_qsxd9ta7mx1z9rw1w_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..3ad0ef4626e275029ba4a1a72bfb73881eb47106 --- /dev/null +++ b/data/embeddings/tumblr_qsxd9ta7mx1z9rw1w_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f123423c610a196edffce1ab7102cf72cdb3b032a19233c48decf143d80b5ba +size 1664 diff --git a/data/embeddings/tumblr_qszbamec4n1u9ealm.npy b/data/embeddings/tumblr_qszbamec4n1u9ealm.npy new file mode 100644 index 0000000000000000000000000000000000000000..7a70069eb2211e1f281b3f302571caae68f12b90 --- /dev/null +++ b/data/embeddings/tumblr_qszbamec4n1u9ealm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d2a4e3bfa78e20dc6a445025cc730399c7517622b2a44e5caad0f1d480d654 +size 1664 diff --git a/data/embeddings/tumblr_qszhjhtzmz1xlxjza.npy b/data/embeddings/tumblr_qszhjhtzmz1xlxjza.npy new file mode 100644 index 0000000000000000000000000000000000000000..9be269b4e3c9efe663114a84c75725bd5d799808 --- /dev/null +++ b/data/embeddings/tumblr_qszhjhtzmz1xlxjza.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9c65bcb54febaa27a7033ce6180666322330db0c701485b686d1360ccbfafc +size 1664 diff --git a/data/embeddings/tumblr_qt0izosczf1wsdsxa.npy b/data/embeddings/tumblr_qt0izosczf1wsdsxa.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7a631fafd971dbeaaa80d916816ffa25e610a7c --- /dev/null +++ b/data/embeddings/tumblr_qt0izosczf1wsdsxa.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89dad81ccf8d5a88d13fb718d40a23c45275c75d8f79987d81c772e3043d2ff2 +size 1664 diff --git a/data/embeddings/tumblr_qtdpbopcpq1yjz13y.npy b/data/embeddings/tumblr_qtdpbopcpq1yjz13y.npy new file mode 100644 index 0000000000000000000000000000000000000000..048267329b7d5ca8d3aa7f2b7698d7f9a77192b5 --- /dev/null +++ b/data/embeddings/tumblr_qtdpbopcpq1yjz13y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2300102ba52e8c9730ad1c933d515d125115641a6c426222f98d740f61b537 +size 1664 diff --git a/data/embeddings/tumblr_qtl3jqnool1z3d1y0.npy b/data/embeddings/tumblr_qtl3jqnool1z3d1y0.npy new file mode 100644 index 0000000000000000000000000000000000000000..b619e9f28d95a191af0bc1154c5376b5a18bf0c1 --- /dev/null +++ b/data/embeddings/tumblr_qtl3jqnool1z3d1y0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58eb8f6b77ec083245e5de0452b878f26da0dd74d2c344dac68e9bfd646f33b6 +size 1664 diff --git a/data/embeddings/tumblr_qtsjfgfsw01z4xvoq.npy b/data/embeddings/tumblr_qtsjfgfsw01z4xvoq.npy new file mode 100644 index 0000000000000000000000000000000000000000..b29c679069080155f624f6f5ee89eb72645e6d56 --- /dev/null +++ b/data/embeddings/tumblr_qtsjfgfsw01z4xvoq.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793502517854dd0debd6398754a279c0c4ac66f26ec3d83a54b9edefdc7240fa +size 1664 diff --git a/data/embeddings/tumblr_qtvlvhqh0v1y4l641.npy b/data/embeddings/tumblr_qtvlvhqh0v1y4l641.npy new file mode 100644 index 0000000000000000000000000000000000000000..93acbeb436129073659140caa078d4c51e5d6e93 --- /dev/null +++ b/data/embeddings/tumblr_qtvlvhqh0v1y4l641.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90fc67b7918eccd69d19a7b9daf77267ac6e56dfd3ba5d1a54a60eaa22c1193c +size 1664 diff --git a/data/embeddings/tumblr_qu1hnd3wjw1ym1g8h1.npy b/data/embeddings/tumblr_qu1hnd3wjw1ym1g8h1.npy new file mode 100644 index 0000000000000000000000000000000000000000..83dd34c8b26ef4245ab16fed0c57231a39b35638 --- /dev/null +++ b/data/embeddings/tumblr_qu1hnd3wjw1ym1g8h1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7287872a303708f2f4d1705fbd29eea1101ceb303a64b96087c839e89acdfbf +size 1664 diff --git a/data/embeddings/tumblr_qu706smvbx1x4pmbc.npy b/data/embeddings/tumblr_qu706smvbx1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..f44f01a684140b8737a10cdf424e8e17443ecc9b --- /dev/null +++ b/data/embeddings/tumblr_qu706smvbx1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee0da3973b455bb3f0d797a26acffca28ae146b78a71ae2ae8b360c925a3fdf +size 1664 diff --git a/data/embeddings/tumblr_queragdb3u1xlgs6y.npy b/data/embeddings/tumblr_queragdb3u1xlgs6y.npy new file mode 100644 index 0000000000000000000000000000000000000000..fdd0230e50c0986990e4b1424c9d76c370adaf4e --- /dev/null +++ b/data/embeddings/tumblr_queragdb3u1xlgs6y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f074b702b670d99e97dea4de514880468983e574336820879472833ad898e950 +size 1664 diff --git a/data/embeddings/tumblr_quinyhcict1x2sb3u.npy b/data/embeddings/tumblr_quinyhcict1x2sb3u.npy new file mode 100644 index 0000000000000000000000000000000000000000..6107396a89ba6d5737106a2abae713950814933e --- /dev/null +++ b/data/embeddings/tumblr_quinyhcict1x2sb3u.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5627ae74328fff8d8385ef4724ae44f4d3ee069764dff5f2ec7b77563e452e +size 1664 diff --git a/data/embeddings/tumblr_quwhk8yifs1qaekxx.npy b/data/embeddings/tumblr_quwhk8yifs1qaekxx.npy new file mode 100644 index 0000000000000000000000000000000000000000..1e90b2e447b8e951d43885012ce7240a629bd74e --- /dev/null +++ b/data/embeddings/tumblr_quwhk8yifs1qaekxx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f082111b70847e75ac2c6074d9f7dcbadb357f94d68adbc245ca8c807a723aae +size 1664 diff --git a/data/embeddings/tumblr_quy0yyojr41sglkei_720.npy b/data/embeddings/tumblr_quy0yyojr41sglkei_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..d86eceb13f52d2554afe1faf02e9f1b0a47f8147 --- /dev/null +++ b/data/embeddings/tumblr_quy0yyojr41sglkei_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe9e81fa5c65ed5bb46a49ed2425672292f4b681c8d940169323fd2efb01922b +size 1664 diff --git a/data/embeddings/tumblr_qvq1bbmhsl1qep3h6.npy b/data/embeddings/tumblr_qvq1bbmhsl1qep3h6.npy new file mode 100644 index 0000000000000000000000000000000000000000..29703ffd96a0d096b099822416dca8c92776aacb --- /dev/null +++ b/data/embeddings/tumblr_qvq1bbmhsl1qep3h6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c3c27551aff910ea3dcc52a7dd43c51e40739203dacb6bd7d79d811e81e1ac +size 1664 diff --git a/data/embeddings/tumblr_qwgrvao5nf1z69592.npy b/data/embeddings/tumblr_qwgrvao5nf1z69592.npy new file mode 100644 index 0000000000000000000000000000000000000000..1b56f7006de943692fdbedc73432f77b33c3ec6f --- /dev/null +++ b/data/embeddings/tumblr_qwgrvao5nf1z69592.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ae69e46d430cdad3ade4d77366e9cfb0431e927ca6af56e6388d5e62fc8588 +size 1664 diff --git a/data/embeddings/tumblr_qwnimc0kmq1v43hvg.npy b/data/embeddings/tumblr_qwnimc0kmq1v43hvg.npy new file mode 100644 index 0000000000000000000000000000000000000000..e442d8623d24c50f892083823840bb7f2a21435f --- /dev/null +++ b/data/embeddings/tumblr_qwnimc0kmq1v43hvg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac0723fe60940453623be0291bf2eca45bc12e2f22ad0ca0cc24c541b131be0 +size 1664 diff --git a/data/embeddings/tumblr_qwrawtnod91ye9vv1.npy b/data/embeddings/tumblr_qwrawtnod91ye9vv1.npy new file mode 100644 index 0000000000000000000000000000000000000000..e492e88ec5e392aaed73d632f5fb38dc3d217140 --- /dev/null +++ b/data/embeddings/tumblr_qwrawtnod91ye9vv1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3426d9e418223c7f79e4dcf011635148f60a352803645030f2bcdccfb0771d +size 1664 diff --git a/data/embeddings/tumblr_qx0uqjbzlk1z5lzrl.npy b/data/embeddings/tumblr_qx0uqjbzlk1z5lzrl.npy new file mode 100644 index 0000000000000000000000000000000000000000..1d20a9624f5cd1912ad7047f0ddf5572bfa4bb0e --- /dev/null +++ b/data/embeddings/tumblr_qx0uqjbzlk1z5lzrl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ceda2003d95732bdd23dd39daf8d29d81db6acf6d7885a09562bae41dc14b8 +size 1664 diff --git a/data/embeddings/tumblr_qx6ws0dqmg1rq84xg.npy b/data/embeddings/tumblr_qx6ws0dqmg1rq84xg.npy new file mode 100644 index 0000000000000000000000000000000000000000..d917da33e8bbdf234cbb713cc82f9f6ec366011a --- /dev/null +++ b/data/embeddings/tumblr_qx6ws0dqmg1rq84xg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a0dd704a4a57d56e06671807b0f821e75ad3ab1ddd747040ada2f2690f47cd +size 1664 diff --git a/data/embeddings/tumblr_qxec9uc20w1qjnhqg1.npy b/data/embeddings/tumblr_qxec9uc20w1qjnhqg1.npy new file mode 100644 index 0000000000000000000000000000000000000000..4cfce53b5405efc0b1fd8a891bfb0c3e2931a4a5 --- /dev/null +++ b/data/embeddings/tumblr_qxec9uc20w1qjnhqg1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4238c9a25e0a0137102cfe447de7ccc0acbbf3d7207382f3d0ea392b58e06d8f +size 1664 diff --git a/data/embeddings/tumblr_qxtolnq9ow1x6rok9.npy b/data/embeddings/tumblr_qxtolnq9ow1x6rok9.npy new file mode 100644 index 0000000000000000000000000000000000000000..0f2c39fbe9fc13ce10ce7e22176857e058c87734 --- /dev/null +++ b/data/embeddings/tumblr_qxtolnq9ow1x6rok9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f31e12dd1a57e656a0c2ae50d814cf96582fb2f8348b066f397190565f0179 +size 1664 diff --git a/data/embeddings/tumblr_qxws4eigy11ylx4u7.npy b/data/embeddings/tumblr_qxws4eigy11ylx4u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..7642353afe7900c15176a0a0eaad290d664c2cd5 --- /dev/null +++ b/data/embeddings/tumblr_qxws4eigy11ylx4u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f57b4ec94ba2dde1681310dfef24085bd4e0060ac93d47a603e3c5bdf98de7f +size 1664 diff --git a/data/embeddings/tumblr_qxx02cvthu1rnx060.npy b/data/embeddings/tumblr_qxx02cvthu1rnx060.npy new file mode 100644 index 0000000000000000000000000000000000000000..990c1319b136b68d8c6109dc293d5e0f61a500e7 --- /dev/null +++ b/data/embeddings/tumblr_qxx02cvthu1rnx060.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33fde39c9ed244b206720ba2103b14fe21d2ce5b484e7ebe71b369ee08e7dc67 +size 1664 diff --git a/data/embeddings/tumblr_qy9emglwqv1x4pmbc.npy b/data/embeddings/tumblr_qy9emglwqv1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..5805ac114c4c4c1706c402edcde6dcfa8dc53d30 --- /dev/null +++ b/data/embeddings/tumblr_qy9emglwqv1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a629b92769f61a2533c0fcdc8b5ee73e5f515824b628b78f84c8d691e4fc4d +size 1664 diff --git a/data/embeddings/tumblr_qyhb34fmnb1qzeo2z.npy b/data/embeddings/tumblr_qyhb34fmnb1qzeo2z.npy new file mode 100644 index 0000000000000000000000000000000000000000..2eabed451515bffc40cd01d5f8984e4e45e8bf1d --- /dev/null +++ b/data/embeddings/tumblr_qyhb34fmnb1qzeo2z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c1676dbbdcad4a73fa51ddc7f1aa505a012e80741b37b25864b6c2568cb25c +size 1664 diff --git a/data/embeddings/tumblr_qymo64d5p01vym9pt.npy b/data/embeddings/tumblr_qymo64d5p01vym9pt.npy new file mode 100644 index 0000000000000000000000000000000000000000..93e161eb3175c2f2de568a7416c74ead6667cb41 --- /dev/null +++ b/data/embeddings/tumblr_qymo64d5p01vym9pt.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dcdc6f438c3c22575d00708464bd45e6958a886ac5f10fca3ce2e9a717c2259 +size 1664 diff --git a/data/embeddings/tumblr_qyrichecbc1vij12m.npy b/data/embeddings/tumblr_qyrichecbc1vij12m.npy new file mode 100644 index 0000000000000000000000000000000000000000..995486608c773a761d3ef1ca84bb9933776a1c15 --- /dev/null +++ b/data/embeddings/tumblr_qyrichecbc1vij12m.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37be11c3b80ee7dd91ffd8a88963fad7240657273cb996601bd1c76334af544 +size 1664 diff --git a/data/embeddings/tumblr_qyrkryjovb1x4pmbc.npy b/data/embeddings/tumblr_qyrkryjovb1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..84bcbf1a5f864f3128b889f818791d326c1e4679 --- /dev/null +++ b/data/embeddings/tumblr_qyrkryjovb1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b3eb64a242ac5c9f475ada7c25e8d78597df91ea4d213179c058ea056750d0 +size 1664 diff --git a/data/embeddings/tumblr_qysc55isxe1z7ukda.npy b/data/embeddings/tumblr_qysc55isxe1z7ukda.npy new file mode 100644 index 0000000000000000000000000000000000000000..932c45afc589e103bf21bab48d4bded1ef831cbe --- /dev/null +++ b/data/embeddings/tumblr_qysc55isxe1z7ukda.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da1306fff084b06fb0ae41c768a57e6e8d7ba411816090f74d1b5824fb601e4 +size 1664 diff --git a/data/embeddings/tumblr_qytlknq5wk1r0uzl6.npy b/data/embeddings/tumblr_qytlknq5wk1r0uzl6.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a42042d33937f009de762a2e2a2a911a0d1fd47 --- /dev/null +++ b/data/embeddings/tumblr_qytlknq5wk1r0uzl6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100f19e428ae869b8152478d8eaf5cb62be394809c3812f355fe3f0a206c83be +size 1664 diff --git a/data/embeddings/tumblr_qyvyikvzve1xpm6vs.npy b/data/embeddings/tumblr_qyvyikvzve1xpm6vs.npy new file mode 100644 index 0000000000000000000000000000000000000000..a58e99de7cc2dea3357c3d4a6ba0a2b23fa39e81 --- /dev/null +++ b/data/embeddings/tumblr_qyvyikvzve1xpm6vs.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4090a2e10bfbc1b7317f1db6ccc0dc4f14a813995622b742cc7a52cc58cc72e5 +size 1664 diff --git a/data/embeddings/tumblr_qz7mzrb5zz1y54s2v.npy b/data/embeddings/tumblr_qz7mzrb5zz1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..2829e3e711e022c2b9a3dc5a80c548daad4cdfc2 --- /dev/null +++ b/data/embeddings/tumblr_qz7mzrb5zz1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76fd30fde1dd503d7f26195219e20125f25b69c82b662e266f3f489b3f9ed74 +size 1664 diff --git a/data/embeddings/tumblr_r02uimoygh1r79r4w.npy b/data/embeddings/tumblr_r02uimoygh1r79r4w.npy new file mode 100644 index 0000000000000000000000000000000000000000..5fac386e459f83c57726ed0a0d7bc35a1c5b541a --- /dev/null +++ b/data/embeddings/tumblr_r02uimoygh1r79r4w.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fddd913aae23faea48bb392e4f96d7dcfb20b64cf893c9b14843059f055abd30 +size 1664 diff --git a/data/embeddings/tumblr_r03ke82nhh1xdi286.npy b/data/embeddings/tumblr_r03ke82nhh1xdi286.npy new file mode 100644 index 0000000000000000000000000000000000000000..f0c43520d80b460829529b11f7b91099cef6a0ed --- /dev/null +++ b/data/embeddings/tumblr_r03ke82nhh1xdi286.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28fee848b8f6239e4357ce0b18b2a4ded4a71e95f80c8a2d7a57754792f39b33 +size 1664 diff --git a/data/embeddings/tumblr_r08gwi4m881z4dj7t.npy b/data/embeddings/tumblr_r08gwi4m881z4dj7t.npy new file mode 100644 index 0000000000000000000000000000000000000000..31de781e1b9cac45d93cd60ea9bf1c10893f4e14 --- /dev/null +++ b/data/embeddings/tumblr_r08gwi4m881z4dj7t.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa33dbb99d3913c6db26956335d95dc96c85b082f486660e35a5dce81494881 +size 1664 diff --git a/data/embeddings/tumblr_r0bl35fudy1vjakdo.npy b/data/embeddings/tumblr_r0bl35fudy1vjakdo.npy new file mode 100644 index 0000000000000000000000000000000000000000..022c184e3f096b337741b98324dc63bce11f9c4a --- /dev/null +++ b/data/embeddings/tumblr_r0bl35fudy1vjakdo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996d65f18e5480dca7e6cd4f1f64dff05aa36c010fecceac3927214992ec9c79 +size 1664 diff --git a/data/embeddings/tumblr_r0s19qdfls1ujkkfn.npy b/data/embeddings/tumblr_r0s19qdfls1ujkkfn.npy new file mode 100644 index 0000000000000000000000000000000000000000..5d8f399f5f02c3fa17214a2b82d4d9cd567d7783 --- /dev/null +++ b/data/embeddings/tumblr_r0s19qdfls1ujkkfn.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67fc97e39042e22c044454abe80f9e3680b65df64d7462c2e6ff5db5af4fee8a +size 1664 diff --git a/data/embeddings/tumblr_r0syz8uvwb1y54s2v.npy b/data/embeddings/tumblr_r0syz8uvwb1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..1be38158c10841bada7c1137e37903362e1e8625 --- /dev/null +++ b/data/embeddings/tumblr_r0syz8uvwb1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b330198813a13798f4e6cf6dff12ba45b1e14ae127c1151057b32beec2cf60c8 +size 1664 diff --git a/data/embeddings/tumblr_r0zdlts1ga1vmobp0.npy b/data/embeddings/tumblr_r0zdlts1ga1vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..ec076f898be8cfd8446fab95b2ddf9c2456fcf39 --- /dev/null +++ b/data/embeddings/tumblr_r0zdlts1ga1vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9cbb54a62691b22e2ae82efca48e08efd555ced40c998813fedb7f8b55e15f +size 1664 diff --git a/data/embeddings/tumblr_r11xbhdvuy1ywzg15.npy b/data/embeddings/tumblr_r11xbhdvuy1ywzg15.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a09fb2e0f7fc4947ed66c6bbcaa502e23c5ca67 --- /dev/null +++ b/data/embeddings/tumblr_r11xbhdvuy1ywzg15.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7cfd17ea5a81dc3b7701201edb86412b01e9c7856c3b9ae58b46ce00b709f86 +size 1664 diff --git a/data/embeddings/tumblr_r13hdlly961z8fjg1.npy b/data/embeddings/tumblr_r13hdlly961z8fjg1.npy new file mode 100644 index 0000000000000000000000000000000000000000..988cf7105d6626e67971987cd6259871c332fea8 --- /dev/null +++ b/data/embeddings/tumblr_r13hdlly961z8fjg1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac19a6a9731019da703f7ff6ce3e1a5c8779a12abcaf70dff92aa743b24bd73 +size 1664 diff --git a/data/embeddings/tumblr_r16fx4bvm51t4f51m1.npy b/data/embeddings/tumblr_r16fx4bvm51t4f51m1.npy new file mode 100644 index 0000000000000000000000000000000000000000..25da0b064bd2dc6b305730e5c449abe37f164f89 --- /dev/null +++ b/data/embeddings/tumblr_r16fx4bvm51t4f51m1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987346a87e926ea8e42b44b77870d163567af1b6ef25111f1e76fc68b8950eca +size 1664 diff --git a/data/embeddings/tumblr_r17uu7xcjk1uy8v6v.npy b/data/embeddings/tumblr_r17uu7xcjk1uy8v6v.npy new file mode 100644 index 0000000000000000000000000000000000000000..65b2cef97369ea9d14b33e15c0f48cc8e5526b19 --- /dev/null +++ b/data/embeddings/tumblr_r17uu7xcjk1uy8v6v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebee0bf43f5d40dad542cbc6bb07e621e6c33b278e6857ffe807eae198a2676b +size 1664 diff --git a/data/embeddings/tumblr_r18u24ndcu1vmobp0_720.npy b/data/embeddings/tumblr_r18u24ndcu1vmobp0_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..ca690f4fbaa0ce635bc7fffd8f2f48cb7eb81ee5 --- /dev/null +++ b/data/embeddings/tumblr_r18u24ndcu1vmobp0_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a755bd7c2eaa48a65254222efaa025b8abefb97cf2df397e182625effb907be +size 1664 diff --git a/data/embeddings/tumblr_r1iit3moox1u0fuse.npy b/data/embeddings/tumblr_r1iit3moox1u0fuse.npy new file mode 100644 index 0000000000000000000000000000000000000000..3cfe0b8b073cb59e83641baa265f9798bc13de80 --- /dev/null +++ b/data/embeddings/tumblr_r1iit3moox1u0fuse.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8f0f2bade9c5fba8fd5ccd17e6332f707c57c684d1e165ca59c909bfd2876e +size 1664 diff --git a/data/embeddings/tumblr_r1lizwpi7y1vij12m.npy b/data/embeddings/tumblr_r1lizwpi7y1vij12m.npy new file mode 100644 index 0000000000000000000000000000000000000000..806f22b57fefdcf95ac10ad5a6a19dcc70cd127e --- /dev/null +++ b/data/embeddings/tumblr_r1lizwpi7y1vij12m.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e75dceeb620f7c417020dac63949757959619b8c167ac4d895ff7863c2b8642 +size 1664 diff --git a/data/embeddings/tumblr_r1uozsdz981z5lzrl.npy b/data/embeddings/tumblr_r1uozsdz981z5lzrl.npy new file mode 100644 index 0000000000000000000000000000000000000000..861186225696564a6586acba44cc0dc03a4d56ff --- /dev/null +++ b/data/embeddings/tumblr_r1uozsdz981z5lzrl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5678d9b0aae0c3c6fccb66eddaf0b658b7ece0bec7203f7debf015d695bfb8 +size 1664 diff --git a/data/embeddings/tumblr_r25y6pxxck1xddfa0.npy b/data/embeddings/tumblr_r25y6pxxck1xddfa0.npy new file mode 100644 index 0000000000000000000000000000000000000000..fd1459696f7036081bbf637b4b7422037bb9a254 --- /dev/null +++ b/data/embeddings/tumblr_r25y6pxxck1xddfa0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482845c68625e8a195df083b94339a8ce0b367edd045fdb5f1870573e9f03efa +size 1664 diff --git a/data/embeddings/tumblr_r28lad2qzj1v43hvg.npy b/data/embeddings/tumblr_r28lad2qzj1v43hvg.npy new file mode 100644 index 0000000000000000000000000000000000000000..826929f1569aa3c080acd7e8693b0b91b1d5942d --- /dev/null +++ b/data/embeddings/tumblr_r28lad2qzj1v43hvg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b3cf04b2980b497bc13b5d290e26da6552fbbf2007d3df5e6475afa7b9c44c +size 1664 diff --git a/data/embeddings/tumblr_r29qa1zylk1y4klfl.npy b/data/embeddings/tumblr_r29qa1zylk1y4klfl.npy new file mode 100644 index 0000000000000000000000000000000000000000..46a7bdba6d23a540e9ab28894709f28291db52c3 --- /dev/null +++ b/data/embeddings/tumblr_r29qa1zylk1y4klfl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82dd399a4550b22b6350dcff2e9091828328b399642d45c7ad72bcbb3f8a04a8 +size 1664 diff --git a/data/embeddings/tumblr_r2bh6neakf1s52b0v.npy b/data/embeddings/tumblr_r2bh6neakf1s52b0v.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a3057bae66c0c94b8c9431dbf36e0da5462d0b6 --- /dev/null +++ b/data/embeddings/tumblr_r2bh6neakf1s52b0v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c54445894b75b2e3860d5b4408efada968e6530307febb72aa102d6bdbba36 +size 1664 diff --git a/data/embeddings/tumblr_r2dbccnznq1r0uzl6.npy b/data/embeddings/tumblr_r2dbccnznq1r0uzl6.npy new file mode 100644 index 0000000000000000000000000000000000000000..85a3122bca9706650155a4925049ac2b0d1295e7 --- /dev/null +++ b/data/embeddings/tumblr_r2dbccnznq1r0uzl6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6301b8b80f7e6eb922cf40d5f559b213d1a88ddc2629ea0d2453de82d9846da7 +size 1664 diff --git a/data/embeddings/tumblr_r2fdmzn4ns1ye1yab.npy b/data/embeddings/tumblr_r2fdmzn4ns1ye1yab.npy new file mode 100644 index 0000000000000000000000000000000000000000..3f391cdbac43aeee2f1b83fd764ee2d095d260b5 --- /dev/null +++ b/data/embeddings/tumblr_r2fdmzn4ns1ye1yab.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42359225055061363450c70b1c90944d4c90db7fcadc281f1c8e36ec91a5f3a3 +size 1664 diff --git a/data/embeddings/tumblr_r2l0vsqbxm1s9rurb.npy b/data/embeddings/tumblr_r2l0vsqbxm1s9rurb.npy new file mode 100644 index 0000000000000000000000000000000000000000..0880a738dffaf3f294e678cc46cf3415d15fd368 --- /dev/null +++ b/data/embeddings/tumblr_r2l0vsqbxm1s9rurb.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36de182e0c527c9d13cf002789eb839daec802c3e0e2e21506b9a2a94e4b5221 +size 1664 diff --git a/data/embeddings/tumblr_r2rtbly1l91yefkvd.npy b/data/embeddings/tumblr_r2rtbly1l91yefkvd.npy new file mode 100644 index 0000000000000000000000000000000000000000..93023646c104373746b9634f70e54daf295f4193 --- /dev/null +++ b/data/embeddings/tumblr_r2rtbly1l91yefkvd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:441f48cdf780d8cee080f8b3ec0ce98f2cab62a7ecb871ddaa86f11f048c9d18 +size 1664 diff --git a/data/embeddings/tumblr_r35f80px9z1vij12m.npy b/data/embeddings/tumblr_r35f80px9z1vij12m.npy new file mode 100644 index 0000000000000000000000000000000000000000..c6b6af6190d58faf650f479bc515cafe66f6ce1a --- /dev/null +++ b/data/embeddings/tumblr_r35f80px9z1vij12m.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c7bf4430245539b4ec3e90e739f36892fedb730647fbfca0b08a24631c355fa +size 1664 diff --git a/data/embeddings/tumblr_r3fjy4g0wl1y54s2v.npy b/data/embeddings/tumblr_r3fjy4g0wl1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..17076a28a05a9bc4bb1b67985454ae0c3e2c83bf --- /dev/null +++ b/data/embeddings/tumblr_r3fjy4g0wl1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1298b5b471fd782adc159f145541c24103ac7f431bbe077e13141f02886e680 +size 1664 diff --git a/data/embeddings/tumblr_r3njg6nkup1w5pr9j.npy b/data/embeddings/tumblr_r3njg6nkup1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..b86fd01c29f0e49398ceff9a7d1bd1d70c0851a9 --- /dev/null +++ b/data/embeddings/tumblr_r3njg6nkup1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c83200627facdac9ef01fd9177996c9dee6022c2f8ffc396ba88be91ac601f +size 1664 diff --git a/data/embeddings/tumblr_r3u4a1ezky1vnes7l.npy b/data/embeddings/tumblr_r3u4a1ezky1vnes7l.npy new file mode 100644 index 0000000000000000000000000000000000000000..c76c29b15682d569f47460dc10ccea1e6a961910 --- /dev/null +++ b/data/embeddings/tumblr_r3u4a1ezky1vnes7l.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5034d4d645691e685f94b006d903bbf00a309e892218f9358b4ab4183ffa461 +size 1664 diff --git a/data/embeddings/tumblr_r433cmyzam1zubnwn_720.npy b/data/embeddings/tumblr_r433cmyzam1zubnwn_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..9867c8da9d5661f5d46b7a30f3c6ce1350382bf4 --- /dev/null +++ b/data/embeddings/tumblr_r433cmyzam1zubnwn_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a1aac2f2970f96c9b0b0dae2136fe5217bec5c87b1a258676857c8f4455e2a +size 1664 diff --git a/data/embeddings/tumblr_r4b1uuttcr1wmu9gj.npy b/data/embeddings/tumblr_r4b1uuttcr1wmu9gj.npy new file mode 100644 index 0000000000000000000000000000000000000000..127c4a8bb7e90f7533cd136ad362448c860e1715 --- /dev/null +++ b/data/embeddings/tumblr_r4b1uuttcr1wmu9gj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa067f4f857cd4dde9ede7da5c5ff037d4f2510bfa3259feeab9045606687e71 +size 1664 diff --git a/data/embeddings/tumblr_r4dmzalrwg1vmobp01.npy b/data/embeddings/tumblr_r4dmzalrwg1vmobp01.npy new file mode 100644 index 0000000000000000000000000000000000000000..c87db56182c5b6b0f7949e4a42a17eb9299e3eb8 --- /dev/null +++ b/data/embeddings/tumblr_r4dmzalrwg1vmobp01.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a597f3500bcfd30271bbfdd39f036713566660a0d6b466c38d1ef30f79644dd6 +size 1664 diff --git a/data/embeddings/tumblr_r4i59lkpae1yb94xp_720.npy b/data/embeddings/tumblr_r4i59lkpae1yb94xp_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa81f9da2a3b125053e533405633a33f4af442a5 --- /dev/null +++ b/data/embeddings/tumblr_r4i59lkpae1yb94xp_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2980604159e54fe02b1b41812a301b5b2d3b85253fdbf9819f5d6548151f58ff +size 1664 diff --git a/data/embeddings/tumblr_r4mvmlkewc1r2dbtp.npy b/data/embeddings/tumblr_r4mvmlkewc1r2dbtp.npy new file mode 100644 index 0000000000000000000000000000000000000000..9bb79f59710d3ee2b3701aee0a6f40fcf3270686 --- /dev/null +++ b/data/embeddings/tumblr_r4mvmlkewc1r2dbtp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ff1249ee19811b022ef7fdae3b92ceafd0d065b3ff83fdcff5e1c0c8f569bf +size 1664 diff --git a/data/embeddings/tumblr_r4qsvrks1d1ylx4u7.npy b/data/embeddings/tumblr_r4qsvrks1d1ylx4u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..de7c30fdf18441dfb964b99cc5350ddfba7b731b --- /dev/null +++ b/data/embeddings/tumblr_r4qsvrks1d1ylx4u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0009d98710d7538b0a0752f752e68294fe844d05e8cdc26f51d2ed0a8985fb +size 1664 diff --git a/data/embeddings/tumblr_r4w1grxwwa1yc3lzu.npy b/data/embeddings/tumblr_r4w1grxwwa1yc3lzu.npy new file mode 100644 index 0000000000000000000000000000000000000000..777aa82f0113ab8ad52f866aa4f45a18f4babca2 --- /dev/null +++ b/data/embeddings/tumblr_r4w1grxwwa1yc3lzu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c010bfc9c64f78d2dc87b0284daa3783b9a8370b6937f6f5a5b4d7661586d4 +size 1664 diff --git a/data/embeddings/tumblr_r4y3tqh0ts1qev8ce.npy b/data/embeddings/tumblr_r4y3tqh0ts1qev8ce.npy new file mode 100644 index 0000000000000000000000000000000000000000..bf102dfedc331165fd0668178d786ef1459a0cd6 --- /dev/null +++ b/data/embeddings/tumblr_r4y3tqh0ts1qev8ce.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061417f0de52f2930d68f629dcaa2ec1c4f048ae53cc01f8ff29fdfbbf30d400 +size 1664 diff --git a/data/embeddings/tumblr_r57l37ivdi1x4pmbc.npy b/data/embeddings/tumblr_r57l37ivdi1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..a538046bbc72d2baca5c153504fad37c2eca8a83 --- /dev/null +++ b/data/embeddings/tumblr_r57l37ivdi1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076ddac0cec5b2e5d3f393f8acbdd6cb5c789249282d5c11ca86d25f224a6dc7 +size 1664 diff --git a/data/embeddings/tumblr_r59e2vx3pe1umyhub.npy b/data/embeddings/tumblr_r59e2vx3pe1umyhub.npy new file mode 100644 index 0000000000000000000000000000000000000000..d8f459f11e4b5786f8bb87b3922c8444cd919f37 --- /dev/null +++ b/data/embeddings/tumblr_r59e2vx3pe1umyhub.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048ccdb7635f0fd366e8bca33a0d02e0722d7153b69587f540bec81ab12b69e3 +size 1664 diff --git a/data/embeddings/tumblr_r5ebvzrey31z3d5j0.npy b/data/embeddings/tumblr_r5ebvzrey31z3d5j0.npy new file mode 100644 index 0000000000000000000000000000000000000000..eda8c025f1e6c096d22df9727aeb12593e0695d0 --- /dev/null +++ b/data/embeddings/tumblr_r5ebvzrey31z3d5j0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f44534d3f8225653aa76c1c447fce1e61370679e5dbb85122c7f4eead1d22c7 +size 1664 diff --git a/data/embeddings/tumblr_r5glgnkuuj1yjz13y.npy b/data/embeddings/tumblr_r5glgnkuuj1yjz13y.npy new file mode 100644 index 0000000000000000000000000000000000000000..9521ad5909504cb568e9889b99f95a622ab01bf2 --- /dev/null +++ b/data/embeddings/tumblr_r5glgnkuuj1yjz13y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f046283282a8c1d11f1b00206b807aea58766dc1f8469c9651fe985272cad77 +size 1664 diff --git a/data/embeddings/tumblr_r5kg3ywmzp1v7xdh6.npy b/data/embeddings/tumblr_r5kg3ywmzp1v7xdh6.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f29559c08d1ea81e34c967a48711e6780fc9890 --- /dev/null +++ b/data/embeddings/tumblr_r5kg3ywmzp1v7xdh6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981b05d400dc31d3aca7d7fc799daf02fcf960387254a4404b5530c60e253a81 +size 1664 diff --git a/data/embeddings/tumblr_r5r98tuik21z7d7sr.npy b/data/embeddings/tumblr_r5r98tuik21z7d7sr.npy new file mode 100644 index 0000000000000000000000000000000000000000..d634fc448622b1cbec0b454cd3c432ba62253c7f --- /dev/null +++ b/data/embeddings/tumblr_r5r98tuik21z7d7sr.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4698344182b7b601111373db46debfe604ab2800104f92ab129df590e2a30dac +size 1664 diff --git a/data/embeddings/tumblr_r5zdsglqep1ybplg0.npy b/data/embeddings/tumblr_r5zdsglqep1ybplg0.npy new file mode 100644 index 0000000000000000000000000000000000000000..6e056b3f7e7ae1406851aa380c38783138c64cf7 --- /dev/null +++ b/data/embeddings/tumblr_r5zdsglqep1ybplg0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8491e96838b8db963cf410bd9f76d73e6cde0143290ded851f513446a4cc01 +size 1664 diff --git a/data/embeddings/tumblr_r66hoepkfc1udzxps1.npy b/data/embeddings/tumblr_r66hoepkfc1udzxps1.npy new file mode 100644 index 0000000000000000000000000000000000000000..432957fc56a94ba42e0622afccc25178356d7daa --- /dev/null +++ b/data/embeddings/tumblr_r66hoepkfc1udzxps1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166ef4b778a0154f2ae77c5b20a97c3e6f64a6600e688b04b93edad49ecd6f01 +size 1664 diff --git a/data/embeddings/tumblr_r6awwkoyhr1z8ckep.npy b/data/embeddings/tumblr_r6awwkoyhr1z8ckep.npy new file mode 100644 index 0000000000000000000000000000000000000000..551c9036002374eaca2659704dd7c17b5236f604 --- /dev/null +++ b/data/embeddings/tumblr_r6awwkoyhr1z8ckep.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3a6c61464d07016ac4aa55d26538d91f8f90b83eee9344b5c91d4bcb15499c +size 1664 diff --git a/data/embeddings/tumblr_r6aywmkocd1r1zw9e.npy b/data/embeddings/tumblr_r6aywmkocd1r1zw9e.npy new file mode 100644 index 0000000000000000000000000000000000000000..b26c7d59a022a8d60354ee4a42013cfc40dacc07 --- /dev/null +++ b/data/embeddings/tumblr_r6aywmkocd1r1zw9e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6858c2a521b08972dac331133422da16c4f832bfb34af987b10eb73a0b8961d +size 1664 diff --git a/data/embeddings/tumblr_r6jk1pukce1zurqo3.npy b/data/embeddings/tumblr_r6jk1pukce1zurqo3.npy new file mode 100644 index 0000000000000000000000000000000000000000..9d74401716227daf65fed5452bd3915acd92d08f --- /dev/null +++ b/data/embeddings/tumblr_r6jk1pukce1zurqo3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365e14cc9310537215f2abccb5ec9c7c65f200abd2caea3548d6311f6d39b696 +size 1664 diff --git a/data/embeddings/tumblr_r6s058rpiu1yp75af_720.npy b/data/embeddings/tumblr_r6s058rpiu1yp75af_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..8b5a8eb34b2262aaa8a0a483b93f25652c6ecf1e --- /dev/null +++ b/data/embeddings/tumblr_r6s058rpiu1yp75af_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624914b67fb418d69d498592583e009e3880eca681b212adca33057800eb79a0 +size 1664 diff --git a/data/embeddings/tumblr_r6ufreychq1vmobp0_720.npy b/data/embeddings/tumblr_r6ufreychq1vmobp0_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..99cef498a84b8615f8e50f21cc971d14b27b5195 --- /dev/null +++ b/data/embeddings/tumblr_r6ufreychq1vmobp0_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d284c23ab95bfad85f4e019714222609706b90ccffc0b04269844a67cd37d2d2 +size 1664 diff --git a/data/embeddings/tumblr_r75idmwmxq1s3s35z.npy b/data/embeddings/tumblr_r75idmwmxq1s3s35z.npy new file mode 100644 index 0000000000000000000000000000000000000000..867e73bffc8bd4f0de5eeae3c757b68890fd867d --- /dev/null +++ b/data/embeddings/tumblr_r75idmwmxq1s3s35z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1211b082e81f14bf114542bba576f9c46dc24a53940c3c289d9616585e4478b +size 1664 diff --git a/data/embeddings/tumblr_r7f519ubsz1qjnhqg.npy b/data/embeddings/tumblr_r7f519ubsz1qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..54b50886a85b68e9c0c4f2ec0a503a5ebd2a4163 --- /dev/null +++ b/data/embeddings/tumblr_r7f519ubsz1qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce929d8daf8daa20e92127e999cdf10365d8130225e78f217977c91ea9fa1727 +size 1664 diff --git a/data/embeddings/tumblr_r7hr0tv4sk1unz71b_720.npy b/data/embeddings/tumblr_r7hr0tv4sk1unz71b_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..21bf0d5a06bd097089af78b90e1cd3298aaa0c30 --- /dev/null +++ b/data/embeddings/tumblr_r7hr0tv4sk1unz71b_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee3ce553ee4aa23172923ebf8bc69bf9795007082c004383af2cd493de7a583 +size 1664 diff --git a/data/embeddings/tumblr_r7mlrcuzwn1vij12m.npy b/data/embeddings/tumblr_r7mlrcuzwn1vij12m.npy new file mode 100644 index 0000000000000000000000000000000000000000..15617a8bd0f858cae8ba2f772174e78be0ac8e59 --- /dev/null +++ b/data/embeddings/tumblr_r7mlrcuzwn1vij12m.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6f4d29b9d2b296b46e2de8ed26f2b274874b5a70f8430f5f60b1f1c40b4058 +size 1664 diff --git a/data/embeddings/tumblr_r7patxrbch1y54s2v.npy b/data/embeddings/tumblr_r7patxrbch1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..2cc44c6c28cf721d9db998fd04a077a30668ef92 --- /dev/null +++ b/data/embeddings/tumblr_r7patxrbch1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e979d67f93ecaabb4cf6c98c8d9e5d38f0a8c49b11af5495da382c22761cb5 +size 1664 diff --git a/data/embeddings/tumblr_r7q2q9mxlh1zs633i.npy b/data/embeddings/tumblr_r7q2q9mxlh1zs633i.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a8654e2a16bc411d486e78947546ac9a3b447e8 --- /dev/null +++ b/data/embeddings/tumblr_r7q2q9mxlh1zs633i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f6f953231766269d9ad41ae01fe0038d2b7098803559e267b39d161f5fe0b45 +size 1664 diff --git a/data/embeddings/tumblr_r7u5ovtigh1y879bt.npy b/data/embeddings/tumblr_r7u5ovtigh1y879bt.npy new file mode 100644 index 0000000000000000000000000000000000000000..3aa42fdb854c8de16b454dfdadee7ce3219a11b1 --- /dev/null +++ b/data/embeddings/tumblr_r7u5ovtigh1y879bt.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcea732a22e7798d84bc8b31dcd77f9e888f91fed8f76aab2d2a3c7a6fd1593d +size 1664 diff --git a/data/embeddings/tumblr_r7w47spsx21vij12m.npy b/data/embeddings/tumblr_r7w47spsx21vij12m.npy new file mode 100644 index 0000000000000000000000000000000000000000..20822650800f297e38d8bc8e4fa0fa1a1c495ed7 --- /dev/null +++ b/data/embeddings/tumblr_r7w47spsx21vij12m.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069d28d76b2c2104c9d1cbf312d0d8669311ba778f95f8db82ef6fbea4c1dddd +size 1664 diff --git a/data/embeddings/tumblr_r81aiodk711s2xa1q.npy b/data/embeddings/tumblr_r81aiodk711s2xa1q.npy new file mode 100644 index 0000000000000000000000000000000000000000..73c28f9d84da02567baff34a220c6cb0099ab9f6 --- /dev/null +++ b/data/embeddings/tumblr_r81aiodk711s2xa1q.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e388b51fbc926316d345d3432e14abd6cba122c367b20da7a271c43e6beec1f +size 1664 diff --git a/data/embeddings/tumblr_r86nqhn5e71zurqo3_720.npy b/data/embeddings/tumblr_r86nqhn5e71zurqo3_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..cce3b62e400c35624805ac5021e8e137d4d721a4 --- /dev/null +++ b/data/embeddings/tumblr_r86nqhn5e71zurqo3_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b3b0d3a362d2cb90ac81f081a2ed9a2335dbfad8ac4a61235f637e01e12b6e +size 1664 diff --git a/data/embeddings/tumblr_r89ig3r3y81yn587p_720.npy b/data/embeddings/tumblr_r89ig3r3y81yn587p_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..4459dc35d4c5d88bf4c63eae83f3d476366fbb2e --- /dev/null +++ b/data/embeddings/tumblr_r89ig3r3y81yn587p_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ac5bc10ecf5d3f63e7f1a4d76dfe01208ffed8aefc930021227740f8a42768 +size 1664 diff --git a/data/embeddings/tumblr_r8euq8h9r11sjcnrz.npy b/data/embeddings/tumblr_r8euq8h9r11sjcnrz.npy new file mode 100644 index 0000000000000000000000000000000000000000..f868357e74ab41fc43a24dcf270248218f1e46ce --- /dev/null +++ b/data/embeddings/tumblr_r8euq8h9r11sjcnrz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a28a67ea3d1d6ae91587a507758a87a742d6e2d479ab4c7b7f22ce842697b5f +size 1664 diff --git a/data/embeddings/tumblr_r8i1u16elk1yksmbx.npy b/data/embeddings/tumblr_r8i1u16elk1yksmbx.npy new file mode 100644 index 0000000000000000000000000000000000000000..322f2fb27aefa76948efc0e8b2942b6f29c94629 --- /dev/null +++ b/data/embeddings/tumblr_r8i1u16elk1yksmbx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db466be517d03e9cca2219d91d16630a905eb8881ac610f4015bef6893790cdf +size 1664 diff --git a/data/embeddings/tumblr_r8mejifymz1zxblu6.npy b/data/embeddings/tumblr_r8mejifymz1zxblu6.npy new file mode 100644 index 0000000000000000000000000000000000000000..bee872b29dc5018697b9e37f8756b615fe45b6bf --- /dev/null +++ b/data/embeddings/tumblr_r8mejifymz1zxblu6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bc089d4cf430a200c4d7d13bff48c8e2167171eb48a0b1e82c583bf712026a +size 1664 diff --git a/data/embeddings/tumblr_r8mymjqpkk1w5pr9j.npy b/data/embeddings/tumblr_r8mymjqpkk1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..dbf8f707143afff49c7c00a443e9a1e1c15abe1f --- /dev/null +++ b/data/embeddings/tumblr_r8mymjqpkk1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d5775901104ee19ff4a9371836c9a52111ede22468ce881833dfc323a2ac0d +size 1664 diff --git a/data/embeddings/tumblr_r8n6gpmyo71sxxjp9_720.npy b/data/embeddings/tumblr_r8n6gpmyo71sxxjp9_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..90b47e56a82ecb23d96e0a8e33677c754670990e --- /dev/null +++ b/data/embeddings/tumblr_r8n6gpmyo71sxxjp9_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa226213abd42fb0f21b53ca67dddc4b55df4088b143e513ddc3a3f93eb53f1 +size 1664 diff --git a/data/embeddings/tumblr_r94p3rf9v21vb46le_720.npy b/data/embeddings/tumblr_r94p3rf9v21vb46le_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cd900a4168d2d9001a7a709197bce690f173629 --- /dev/null +++ b/data/embeddings/tumblr_r94p3rf9v21vb46le_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9495bb448616f26de1ad917fb168d233445c34f0ba670cd4d34712a835187c8f +size 1664 diff --git a/data/embeddings/tumblr_r966i8tz3h1x4pmbc.npy b/data/embeddings/tumblr_r966i8tz3h1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..a5702a08116602b7dfd5681aa17f676e6f8d9d18 --- /dev/null +++ b/data/embeddings/tumblr_r966i8tz3h1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f2f8a965f2e0adacf780264285fe9425fc428247e348650b328a3d1138a2e4 +size 1664 diff --git a/data/embeddings/tumblr_r9wni0j1dc1yjz13y.npy b/data/embeddings/tumblr_r9wni0j1dc1yjz13y.npy new file mode 100644 index 0000000000000000000000000000000000000000..deef8130141685e381dd7bf98665f29200775d9b --- /dev/null +++ b/data/embeddings/tumblr_r9wni0j1dc1yjz13y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c412847d6de55261d0a8509719a7f32aacc7b7e2bd6ad713fb5368ad3f6e8bd0 +size 1664 diff --git a/data/embeddings/tumblr_raaxuxmb4q1uv2d0a.npy b/data/embeddings/tumblr_raaxuxmb4q1uv2d0a.npy new file mode 100644 index 0000000000000000000000000000000000000000..2a9a39aef0ad36752980e59c09a3bd804d1d3a7f --- /dev/null +++ b/data/embeddings/tumblr_raaxuxmb4q1uv2d0a.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27fd759e9bd90d4de21c8b3e4c87186cf7cd4bc9c3462001e691b5ccdecf3894 +size 1664 diff --git a/data/embeddings/tumblr_rabhlzkzqq1xji3o7.npy b/data/embeddings/tumblr_rabhlzkzqq1xji3o7.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9bfd9bc381852a383b7f79ff7ffc35fa932d72a --- /dev/null +++ b/data/embeddings/tumblr_rabhlzkzqq1xji3o7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffb63bb8adc9b907cc84446fb45cbd24aa457c5e0ac57ea2644e3170b90c124 +size 1664 diff --git a/data/embeddings/tumblr_raczwng2il1qejbir.npy b/data/embeddings/tumblr_raczwng2il1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..a1ed16dbb174da44bcfbdab3001c0daafd1a20a8 --- /dev/null +++ b/data/embeddings/tumblr_raczwng2il1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2774734358b6c2027469b0a86b8dc0db4499415268bd869b591bc3776659721 +size 1664 diff --git a/data/embeddings/tumblr_ragrv2rxo91ylx4u7.npy b/data/embeddings/tumblr_ragrv2rxo91ylx4u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..a7373aaa0b1323da5edf4d1c5f87ef94930f3270 --- /dev/null +++ b/data/embeddings/tumblr_ragrv2rxo91ylx4u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710f4f20a595e084e063b36f50895226ad2c63855d7a05488b0b091934aec776 +size 1664 diff --git a/data/embeddings/tumblr_rajujvfpt71x4pmbc1.npy b/data/embeddings/tumblr_rajujvfpt71x4pmbc1.npy new file mode 100644 index 0000000000000000000000000000000000000000..389c347433fb01f55a2af3bcae6943532bad6b64 --- /dev/null +++ b/data/embeddings/tumblr_rajujvfpt71x4pmbc1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92022c697ff5864bd7c1b72007a10f57a146ca529c14873bca3da80a98be658 +size 1664 diff --git a/data/embeddings/tumblr_raw6t3ukry1z58l44.npy b/data/embeddings/tumblr_raw6t3ukry1z58l44.npy new file mode 100644 index 0000000000000000000000000000000000000000..df050f81637e984bf7157474f3e7cea8c9a86739 --- /dev/null +++ b/data/embeddings/tumblr_raw6t3ukry1z58l44.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717796562fa8c3c2f31dde693b86792358cee6d97cb2d1c253b9a3a344d588e2 +size 1664 diff --git a/data/embeddings/tumblr_rawvjpdbye1x4pmbc.npy b/data/embeddings/tumblr_rawvjpdbye1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..7f9a571d52bd9758980aa0c495071788ec0f2d8f --- /dev/null +++ b/data/embeddings/tumblr_rawvjpdbye1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6299ac21ee0b38efd9794f0d3ff627abe70c90bee9d9292cbbfe74fb6ea4b4 +size 1664 diff --git a/data/embeddings/tumblr_rb0lpzthzn1yvdogn.npy b/data/embeddings/tumblr_rb0lpzthzn1yvdogn.npy new file mode 100644 index 0000000000000000000000000000000000000000..86bbc4ca9e52c29ef95c238d7f444d6757b34529 --- /dev/null +++ b/data/embeddings/tumblr_rb0lpzthzn1yvdogn.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a25980b80fec9f10447b9e1fd0d35d7e2cf8404dd4f89ea0066df0119b51e741 +size 1664 diff --git a/data/embeddings/tumblr_rb297af9l01yafjb5.npy b/data/embeddings/tumblr_rb297af9l01yafjb5.npy new file mode 100644 index 0000000000000000000000000000000000000000..41d2ed02590232cd3ad0c80b270fc84ad359533e --- /dev/null +++ b/data/embeddings/tumblr_rb297af9l01yafjb5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db8bd02d67ba872804b70d8a74cd261ab96cc4e14d65b865f4d3936854810925 +size 1664 diff --git a/data/embeddings/tumblr_rb4ue4xbmn1tkir8g.npy b/data/embeddings/tumblr_rb4ue4xbmn1tkir8g.npy new file mode 100644 index 0000000000000000000000000000000000000000..3d8986b3f6d9859b5eb22191f16b364cbcf21e7e --- /dev/null +++ b/data/embeddings/tumblr_rb4ue4xbmn1tkir8g.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599e7827c16fb40232bf275d8d68c515e192f76222c5ff074413f9cbe082667d +size 1664 diff --git a/data/embeddings/tumblr_rb5fj7mzsu1qjnhqg.npy b/data/embeddings/tumblr_rb5fj7mzsu1qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..9b52546ed084e84e9e61b424da28f3dc31a57d17 --- /dev/null +++ b/data/embeddings/tumblr_rb5fj7mzsu1qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446890928de91ad6803e92fe6deacdcd7da0f953dde2099be218a22dd4d6c78c +size 1664 diff --git a/data/embeddings/tumblr_rb6jmpmrac1z03uzm.npy b/data/embeddings/tumblr_rb6jmpmrac1z03uzm.npy new file mode 100644 index 0000000000000000000000000000000000000000..59328ce81bd7ee2cf4ce21fcd396fcd6b70d5b3a --- /dev/null +++ b/data/embeddings/tumblr_rb6jmpmrac1z03uzm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48bbe820c38c0dc63e9f5784a56b1bc7ed23bf922635f8edcc943fbf724847d5 +size 1664 diff --git a/data/embeddings/tumblr_rb85boasbk1qejbir.npy b/data/embeddings/tumblr_rb85boasbk1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4d5e4c713f465d8ec64096aa08a9d58a04ee35f --- /dev/null +++ b/data/embeddings/tumblr_rb85boasbk1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebae25955b87b55e9c603140e70bdb3d6539e385a837e8ebb5c78353592fce1 +size 1664 diff --git a/data/embeddings/tumblr_rb8vs2nj2w1unz71b.npy b/data/embeddings/tumblr_rb8vs2nj2w1unz71b.npy new file mode 100644 index 0000000000000000000000000000000000000000..5c44f90be31ab1e3b88525aff682e81cde9205c4 --- /dev/null +++ b/data/embeddings/tumblr_rb8vs2nj2w1unz71b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53abf08566f7da027a2dc40bb84a91f4f247d37092dbb701137f0defe7697b73 +size 1664 diff --git a/data/embeddings/tumblr_rbpy8dxo4d1ylx4u7.npy b/data/embeddings/tumblr_rbpy8dxo4d1ylx4u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..52a2258b972b8fcfadacb5f2893c706e29c4fb11 --- /dev/null +++ b/data/embeddings/tumblr_rbpy8dxo4d1ylx4u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6ba75aff2f2d162c50e63b9d0b00c9d8aabc38a580463a6e2aede7122f12dd +size 1664 diff --git a/data/embeddings/tumblr_rbsswm2qyw1sputqp.npy b/data/embeddings/tumblr_rbsswm2qyw1sputqp.npy new file mode 100644 index 0000000000000000000000000000000000000000..03b3d416fd9fb3f5ff9e566e4c6346d7d7294b4b --- /dev/null +++ b/data/embeddings/tumblr_rbsswm2qyw1sputqp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc40e1dce2a7c12d2b78b8322bbd29a1806710f13262dd52f7499d11897e5da +size 1664 diff --git a/data/embeddings/tumblr_rbsttoq1ff1yeaczo.npy b/data/embeddings/tumblr_rbsttoq1ff1yeaczo.npy new file mode 100644 index 0000000000000000000000000000000000000000..e09bd4c9c0f41caaf2609e10874ae243106c7003 --- /dev/null +++ b/data/embeddings/tumblr_rbsttoq1ff1yeaczo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f83c567380685966447224746815af8c912e1be4a485515db4a711fd9bcf23 +size 1664 diff --git a/data/embeddings/tumblr_rbyb5a6ayn1y37vow.npy b/data/embeddings/tumblr_rbyb5a6ayn1y37vow.npy new file mode 100644 index 0000000000000000000000000000000000000000..13dbdbb9b6c512f829c50eed75ed1ac929d76015 --- /dev/null +++ b/data/embeddings/tumblr_rbyb5a6ayn1y37vow.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0455855ed33d8c5946dc962de79ffc41552bd746a20afd315ed7f9281399f241 +size 1664 diff --git a/data/embeddings/tumblr_rbyu202hao1y73t5z.npy b/data/embeddings/tumblr_rbyu202hao1y73t5z.npy new file mode 100644 index 0000000000000000000000000000000000000000..c640cefefd65cfa290d67831cce441590f0ec77e --- /dev/null +++ b/data/embeddings/tumblr_rbyu202hao1y73t5z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b700bc046c8d614aa859753a7081f7a802e93c7131563b13950c2726790d69ac +size 1664 diff --git a/data/embeddings/tumblr_rc1hora2mb1s7k78b.npy b/data/embeddings/tumblr_rc1hora2mb1s7k78b.npy new file mode 100644 index 0000000000000000000000000000000000000000..05c7b2bdc08df74bf1f1c6d23987800796315981 --- /dev/null +++ b/data/embeddings/tumblr_rc1hora2mb1s7k78b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00252fc8ac767067d1d19770466f9f8b7e4ef86ff25d435d799ef7d064ac09c +size 1664 diff --git a/data/embeddings/tumblr_rc38dvqyjl1udzxps.npy b/data/embeddings/tumblr_rc38dvqyjl1udzxps.npy new file mode 100644 index 0000000000000000000000000000000000000000..8a7ed7cc2ccf47e7f0da741980c1b89c8325c1c4 --- /dev/null +++ b/data/embeddings/tumblr_rc38dvqyjl1udzxps.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e26500079bc9a6861d72a7ba2aa4a9b15eee534cc3f15759234fb1fcc51204 +size 1664 diff --git a/data/embeddings/tumblr_rcax6kgnlp1yhkxjj_720.npy b/data/embeddings/tumblr_rcax6kgnlp1yhkxjj_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..f750b4e91ad063ee90276bd43b43da3105a7076a --- /dev/null +++ b/data/embeddings/tumblr_rcax6kgnlp1yhkxjj_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac42874cc33411ecc3adea591f6b045165da2a96f147c685837b121f98e279c3 +size 1664 diff --git a/data/embeddings/tumblr_rcdlmafq7z1ylx4u7.npy b/data/embeddings/tumblr_rcdlmafq7z1ylx4u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..a157f40ad60ba83448903518bca8b353b4100a93 --- /dev/null +++ b/data/embeddings/tumblr_rcdlmafq7z1ylx4u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8888ea3ae9b73037dad6001c6464b1d61f91a4f80fceacee4774a0ff02c66684 +size 1664 diff --git a/data/embeddings/tumblr_rceke8xnmt1zurqo3.npy b/data/embeddings/tumblr_rceke8xnmt1zurqo3.npy new file mode 100644 index 0000000000000000000000000000000000000000..dd52c413aeb0c8adc82ffd901cc3abc0f4e1a124 --- /dev/null +++ b/data/embeddings/tumblr_rceke8xnmt1zurqo3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16bb6c76de22dcd40e4fb243d37e472357f00b6c7f20d89ee61eef21975958d +size 1664 diff --git a/data/embeddings/tumblr_rckhmvwoo91shzk1m_720.npy b/data/embeddings/tumblr_rckhmvwoo91shzk1m_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..c9c7edb48284d4da52fd680a8e702b6f5c6053ee --- /dev/null +++ b/data/embeddings/tumblr_rckhmvwoo91shzk1m_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbbdc3942b44a6459689eb31d5b7b50b94675eee97078628eaa418b41576ef2f +size 1664 diff --git a/data/embeddings/tumblr_rcq9anb9lc1umyhub.npy b/data/embeddings/tumblr_rcq9anb9lc1umyhub.npy new file mode 100644 index 0000000000000000000000000000000000000000..15b6a0b240a4938f1011f416ba95e90c54449591 --- /dev/null +++ b/data/embeddings/tumblr_rcq9anb9lc1umyhub.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a171baf3b985e8c17f5027f5248b1be2c4a24c129893caa1f552499c077df5d7 +size 1664 diff --git a/data/embeddings/tumblr_rcvdc58ums1znffzm.npy b/data/embeddings/tumblr_rcvdc58ums1znffzm.npy new file mode 100644 index 0000000000000000000000000000000000000000..6dfd1ee0701e283fa80a76bf5afdd97198e21ddc --- /dev/null +++ b/data/embeddings/tumblr_rcvdc58ums1znffzm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1ecdb30d9697c39a02b7f8ffc51a36f52dc467a83f39912a858020e4ef6999 +size 1664 diff --git a/data/embeddings/tumblr_rd7rfejnup1zuy7pe.npy b/data/embeddings/tumblr_rd7rfejnup1zuy7pe.npy new file mode 100644 index 0000000000000000000000000000000000000000..eff25b94bc887ef71c88df27bdeca4a50961bd57 --- /dev/null +++ b/data/embeddings/tumblr_rd7rfejnup1zuy7pe.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd4c25fbbc979ec82f9cd6a1e81106d423f0c2b9e0df37bd15339a48ebfdb09 +size 1664 diff --git a/data/embeddings/tumblr_rd960hdefi1w5pr9j.npy b/data/embeddings/tumblr_rd960hdefi1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..affd7e2ee03fc4611e5e72919bc275ec1ce37995 --- /dev/null +++ b/data/embeddings/tumblr_rd960hdefi1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7326bc24e9d0d11bff992722285a75619d21824e700f32b8ff991edd1a6b79 +size 1664 diff --git a/data/embeddings/tumblr_rda8hw0udk1xq2d9i_720.npy b/data/embeddings/tumblr_rda8hw0udk1xq2d9i_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..736d956c731a4b1501f43f476548dd7fdfd50d70 --- /dev/null +++ b/data/embeddings/tumblr_rda8hw0udk1xq2d9i_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0fa04c3cb30c54ad32c933e0fe5f7d243f999f83a2baa57eaa3939f64e0eb3 +size 1664 diff --git a/data/embeddings/tumblr_rdsnf452wn1smecn2.npy b/data/embeddings/tumblr_rdsnf452wn1smecn2.npy new file mode 100644 index 0000000000000000000000000000000000000000..713d15242ac581e02d3e439efe64e4e6029b7472 --- /dev/null +++ b/data/embeddings/tumblr_rdsnf452wn1smecn2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb33b0b570b61ea49323f48460b9aa52e84b4e484b54ba51f728076aa2b5ab25 +size 1664 diff --git a/data/embeddings/tumblr_rdzx7787ds1xmebob_720.npy b/data/embeddings/tumblr_rdzx7787ds1xmebob_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..1fe224d772ae892e93ab4e33e1b03a43d2cd051b --- /dev/null +++ b/data/embeddings/tumblr_rdzx7787ds1xmebob_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe166e457f06a293bea05677ff7cc98bce30ddb9a445c30a107db0324695348 +size 1664 diff --git a/data/embeddings/tumblr_re1xz9wpzo1xlgs6y.npy b/data/embeddings/tumblr_re1xz9wpzo1xlgs6y.npy new file mode 100644 index 0000000000000000000000000000000000000000..06318806e8250e7a017971abc8b95d5799d5cd61 --- /dev/null +++ b/data/embeddings/tumblr_re1xz9wpzo1xlgs6y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13cda42422ef7661826262874d97527037c771a5514a2c6767c821acc53f962 +size 1664 diff --git a/data/embeddings/tumblr_re40idwe2e1yiaof7_7201.npy b/data/embeddings/tumblr_re40idwe2e1yiaof7_7201.npy new file mode 100644 index 0000000000000000000000000000000000000000..fb7ab61fab460ba4dfddec5748961c0438cb2f27 --- /dev/null +++ b/data/embeddings/tumblr_re40idwe2e1yiaof7_7201.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abea20bf60b97e210e384a686714e9ec085f9878234a63250194f9099f161068 +size 1664 diff --git a/data/embeddings/tumblr_re428xx2au1r7mmfh.npy b/data/embeddings/tumblr_re428xx2au1r7mmfh.npy new file mode 100644 index 0000000000000000000000000000000000000000..f0a71ddc4ac0307e0310779f6a11f074b5e37f02 --- /dev/null +++ b/data/embeddings/tumblr_re428xx2au1r7mmfh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e82de7a10fcad6bd6b198c8e7ba8e0dbe0a5cf5c9e4936b1df6eb61972c7d22 +size 1664 diff --git a/data/embeddings/tumblr_re53pgvwon1z1f8jq.npy b/data/embeddings/tumblr_re53pgvwon1z1f8jq.npy new file mode 100644 index 0000000000000000000000000000000000000000..69ccdfb870f23a5928538362fabf7e30b790a30e --- /dev/null +++ b/data/embeddings/tumblr_re53pgvwon1z1f8jq.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8aae57189af329a7d95762f7d948c472c2478851433e7f9287565c9648a21f +size 1664 diff --git a/data/embeddings/tumblr_re752kfqfj1z93tyx.npy b/data/embeddings/tumblr_re752kfqfj1z93tyx.npy new file mode 100644 index 0000000000000000000000000000000000000000..caa8ff19df192eeae181a2c89ddf1f676243ea8b --- /dev/null +++ b/data/embeddings/tumblr_re752kfqfj1z93tyx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910e5770ce94b4405e78587d0e35a15c123e3d2bf55e59ee1b3a4f8e03c8cc5e +size 1664 diff --git a/data/embeddings/tumblr_reefxukmi11z8cf6d.npy b/data/embeddings/tumblr_reefxukmi11z8cf6d.npy new file mode 100644 index 0000000000000000000000000000000000000000..09b790644abbac985289fc75738e8ebbb228bfc1 --- /dev/null +++ b/data/embeddings/tumblr_reefxukmi11z8cf6d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae952b7f739dcb6940aa62039eab39658a2ff21d9c0f36f2751e30294741b91 +size 1664 diff --git a/data/embeddings/tumblr_rejytpakhk1qev8ce.npy b/data/embeddings/tumblr_rejytpakhk1qev8ce.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa6d435b9a34a28dcdf8d6bb05fafc8db013a16c --- /dev/null +++ b/data/embeddings/tumblr_rejytpakhk1qev8ce.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65bc6504a7158d749fe1aaadc740eacc203409e5b7f9249e78b3d22c5c3d03f3 +size 1664 diff --git a/data/embeddings/tumblr_renlxvazzu1w5pr9j1.npy b/data/embeddings/tumblr_renlxvazzu1w5pr9j1.npy new file mode 100644 index 0000000000000000000000000000000000000000..e5ed6bd3e7075bdabb3f9a22edf1476fe1a7062f --- /dev/null +++ b/data/embeddings/tumblr_renlxvazzu1w5pr9j1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ccef4c9eb65400f2015f3de8a42900b7fdd66e03a4e9a4ae8a2ca8a1bf0fcc6 +size 1664 diff --git a/data/embeddings/tumblr_rez0bvrost1zp1oam.npy b/data/embeddings/tumblr_rez0bvrost1zp1oam.npy new file mode 100644 index 0000000000000000000000000000000000000000..e164a218f233f35cc1d807072fb08f7e0ed36906 --- /dev/null +++ b/data/embeddings/tumblr_rez0bvrost1zp1oam.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c0e7f2e915873b5bb7518be74eede16a7148d391261d71e742b91fb8f31256 +size 1664 diff --git a/data/embeddings/tumblr_rf77cpb70a1zbtu7g.npy b/data/embeddings/tumblr_rf77cpb70a1zbtu7g.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a7aeca08afb75de2400e8370bd7802bb221b6ac --- /dev/null +++ b/data/embeddings/tumblr_rf77cpb70a1zbtu7g.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b23449560bade3e97332be7d1bb66d6838d9f887a8c068b38e895b6dc6b06023 +size 1664 diff --git a/data/embeddings/tumblr_rfkbomp2wj1ylx4u7.npy b/data/embeddings/tumblr_rfkbomp2wj1ylx4u7.npy new file mode 100644 index 0000000000000000000000000000000000000000..54eeb0a5678c90808777052aba909b88f00faa81 --- /dev/null +++ b/data/embeddings/tumblr_rfkbomp2wj1ylx4u7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974804f49acfb50b922d78874e687b02712abd643078230f05456c0e4d4455e9 +size 1664 diff --git a/data/embeddings/tumblr_rfluqltsjt1u890nd.npy b/data/embeddings/tumblr_rfluqltsjt1u890nd.npy new file mode 100644 index 0000000000000000000000000000000000000000..b77057964286b1d7a32599b1acd2090af9426123 --- /dev/null +++ b/data/embeddings/tumblr_rfluqltsjt1u890nd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58c2e1261194618383c64d5579642f63483ccb771cbfcbd29a51f5266327d46 +size 1664 diff --git a/data/embeddings/tumblr_rfo95kjgiv1s1ddrj.npy b/data/embeddings/tumblr_rfo95kjgiv1s1ddrj.npy new file mode 100644 index 0000000000000000000000000000000000000000..f151f231d9337e1beabcd2a4263ce7c150c145a3 --- /dev/null +++ b/data/embeddings/tumblr_rfo95kjgiv1s1ddrj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929ab633aa15a35f2dde65fe31a706109a6efa0437ceef6fc76314863fcb0c24 +size 1664 diff --git a/data/embeddings/tumblr_rfoctbs4vm1qg690e.npy b/data/embeddings/tumblr_rfoctbs4vm1qg690e.npy new file mode 100644 index 0000000000000000000000000000000000000000..25c1ebe0f4c8ac07c643b277fe4a36afdc83f306 --- /dev/null +++ b/data/embeddings/tumblr_rfoctbs4vm1qg690e.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d12445b190806059b0617031c50cd09469543daa74d6d28cbd124e2c454bb070 +size 1664 diff --git a/data/embeddings/tumblr_rfsf8w8qtc1qzezhm.npy b/data/embeddings/tumblr_rfsf8w8qtc1qzezhm.npy new file mode 100644 index 0000000000000000000000000000000000000000..ec430164ea34a1c09c75f0b3092d1846a797dabd --- /dev/null +++ b/data/embeddings/tumblr_rfsf8w8qtc1qzezhm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab14043ef94dbfa3a4c6ca68792413255ccedd258591ac46d7a05640943f4818 +size 1664 diff --git a/data/embeddings/tumblr_rfsx05yqwf1x4pmbc.npy b/data/embeddings/tumblr_rfsx05yqwf1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..b35a7c13bf7e60d998746a0424f2d735f3d5fbe3 --- /dev/null +++ b/data/embeddings/tumblr_rfsx05yqwf1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc63cc6123741dd255c624f0a37a63a322ed1a7cec3816611495f22a7ebd4e9c +size 1664 diff --git a/data/embeddings/tumblr_rfsxrptdfe1y54s2v.npy b/data/embeddings/tumblr_rfsxrptdfe1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..49e6651c5649b40b925621e1c63d3d2f56c7e126 --- /dev/null +++ b/data/embeddings/tumblr_rfsxrptdfe1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24909e6c8e8122d8c9d4dee62bc9692e8b046512334dce077c3ced848eaa44af +size 1664 diff --git a/data/embeddings/tumblr_rfv9juthnk1z67npc.npy b/data/embeddings/tumblr_rfv9juthnk1z67npc.npy new file mode 100644 index 0000000000000000000000000000000000000000..b93e1365ddbd56806bbbe859556c8bde987d3604 --- /dev/null +++ b/data/embeddings/tumblr_rfv9juthnk1z67npc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a109d3a9e5a51f9adf3254cc5ed2a89cc1df3559ffe84ed554d75d3374857e55 +size 1664 diff --git a/data/embeddings/tumblr_rfyjqglhal1zp4n3d.npy b/data/embeddings/tumblr_rfyjqglhal1zp4n3d.npy new file mode 100644 index 0000000000000000000000000000000000000000..ab0bdca1bff17e88177f2595686ded0f631f13c8 --- /dev/null +++ b/data/embeddings/tumblr_rfyjqglhal1zp4n3d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9637b0d0ac39f4c0aed08c3e5ad7b3b1581eb70470fd02baff6582db73736c6c +size 1664 diff --git a/data/embeddings/tumblr_rg085ptzqa1rc4ohq.npy b/data/embeddings/tumblr_rg085ptzqa1rc4ohq.npy new file mode 100644 index 0000000000000000000000000000000000000000..8523495b8d53c39219f4535490eb842985cb24e8 --- /dev/null +++ b/data/embeddings/tumblr_rg085ptzqa1rc4ohq.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1bab6171f09ebf6c433ce6e6d0b74d017a6e67323147ed584d2f9a75f47950b +size 1664 diff --git a/data/embeddings/tumblr_rg2f3upmih1zs633i.npy b/data/embeddings/tumblr_rg2f3upmih1zs633i.npy new file mode 100644 index 0000000000000000000000000000000000000000..8844f619aa6bd6422ea11b8f78fc46812e502214 --- /dev/null +++ b/data/embeddings/tumblr_rg2f3upmih1zs633i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1103a99aa849caf60a191bd1d2d5fcbd17fa6e7651c509cb55111f73f3450666 +size 1664 diff --git a/data/embeddings/tumblr_rg2kjrth0u1yzx85i.npy b/data/embeddings/tumblr_rg2kjrth0u1yzx85i.npy new file mode 100644 index 0000000000000000000000000000000000000000..f0b06b381c2f7404f0ca2c0e57376434674e6e43 --- /dev/null +++ b/data/embeddings/tumblr_rg2kjrth0u1yzx85i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c660d7dd4eabe9848f037b638b3322d3f3acaa0867b27bef8fa349e84c97bce1 +size 1664 diff --git a/data/embeddings/tumblr_rg2nmkxw511znffzm.npy b/data/embeddings/tumblr_rg2nmkxw511znffzm.npy new file mode 100644 index 0000000000000000000000000000000000000000..bafa3aa700ad3a98d00dd0fb014d81c682525c5e --- /dev/null +++ b/data/embeddings/tumblr_rg2nmkxw511znffzm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150878141cad5d6c8eb8dd4a30eeb7c02149a4aca054c2b564e329145ed20f46 +size 1664 diff --git a/data/embeddings/tumblr_rg5i9cloie1sjcnrz.npy b/data/embeddings/tumblr_rg5i9cloie1sjcnrz.npy new file mode 100644 index 0000000000000000000000000000000000000000..63be55af724e9f641420cc98e767ec31a9121ace --- /dev/null +++ b/data/embeddings/tumblr_rg5i9cloie1sjcnrz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c771a631569cca26f11d817134aeb6ca25733ecb4cefd766fd6a4fd54dabec6 +size 1664 diff --git a/data/embeddings/tumblr_rg71tpjwnh1vmobp0_720.npy b/data/embeddings/tumblr_rg71tpjwnh1vmobp0_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..0da525b8762764dc011f847aa984e90a4ab44778 --- /dev/null +++ b/data/embeddings/tumblr_rg71tpjwnh1vmobp0_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e9bcba343f24cd3fa01181e05461b10d071ff988e5d4bfc453f261a5f78aee +size 1664 diff --git a/data/embeddings/tumblr_rga1nzveec1r5er4w_720.npy b/data/embeddings/tumblr_rga1nzveec1r5er4w_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..dfacdfbbb06e1248eb1453cc2455519a10998c06 --- /dev/null +++ b/data/embeddings/tumblr_rga1nzveec1r5er4w_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78c45ce957ed5c9ce3485a254eb0017721fac1f535549e7b1f626a11899cc88 +size 1664 diff --git a/data/embeddings/tumblr_rghe3pctik1z5xnal.npy b/data/embeddings/tumblr_rghe3pctik1z5xnal.npy new file mode 100644 index 0000000000000000000000000000000000000000..bec1ccc000ca346fcdd5866c9c9903ad5f8e12d7 --- /dev/null +++ b/data/embeddings/tumblr_rghe3pctik1z5xnal.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604120bf812be92b420b5d2dbc9c8a96be54aa242ff968d096f4bef1d9ab6485 +size 1664 diff --git a/data/embeddings/tumblr_rgmtuwrgpy1zygiub.npy b/data/embeddings/tumblr_rgmtuwrgpy1zygiub.npy new file mode 100644 index 0000000000000000000000000000000000000000..1d0822fa0765d0f0cb692ed5ccbbeb892d7890e0 --- /dev/null +++ b/data/embeddings/tumblr_rgmtuwrgpy1zygiub.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ded72dfbb96f02cc83090f0bb81e2e47ad93e2cd87610955a06b337a31c93e +size 1664 diff --git a/data/embeddings/tumblr_rh3ea5jopf1zunae1.npy b/data/embeddings/tumblr_rh3ea5jopf1zunae1.npy new file mode 100644 index 0000000000000000000000000000000000000000..6c5c5545a474913b0bb853581a1316e30eb72b63 --- /dev/null +++ b/data/embeddings/tumblr_rh3ea5jopf1zunae1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382c63cbcc9bf2afa1284f4e49162fb0b5fc0b8394c856410bb3d7cb7103f1a1 +size 1664 diff --git a/data/embeddings/tumblr_rh4jk7bnel1rzpzre.npy b/data/embeddings/tumblr_rh4jk7bnel1rzpzre.npy new file mode 100644 index 0000000000000000000000000000000000000000..27689b27954ae2d2c8955a662d6889974ccd8173 --- /dev/null +++ b/data/embeddings/tumblr_rh4jk7bnel1rzpzre.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b772960dfb0a62432a4ed316af67a1c76632414f74cca4cbc560f19a215f355 +size 1664 diff --git a/data/embeddings/tumblr_rhag8krlr81znffzm.npy b/data/embeddings/tumblr_rhag8krlr81znffzm.npy new file mode 100644 index 0000000000000000000000000000000000000000..540fb204d9dc718286c51165415d732b856e251c --- /dev/null +++ b/data/embeddings/tumblr_rhag8krlr81znffzm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf22a7120201a2118e77b15f42e3fda0f219a373b7d59a87b3eb138cbeecd75b +size 1664 diff --git a/data/embeddings/tumblr_rhm7gqwnqs1vyya9h.npy b/data/embeddings/tumblr_rhm7gqwnqs1vyya9h.npy new file mode 100644 index 0000000000000000000000000000000000000000..78eceba4ddf93bba6008ab264904b199d6b049ee --- /dev/null +++ b/data/embeddings/tumblr_rhm7gqwnqs1vyya9h.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51443e185d8ec26752978ba0bf381fb0013724349b7e42aa2bea6078fa33ce26 +size 1664 diff --git a/data/embeddings/tumblr_rhoc5ryrs41qjtzkc.npy b/data/embeddings/tumblr_rhoc5ryrs41qjtzkc.npy new file mode 100644 index 0000000000000000000000000000000000000000..c46120271cb0be5e201e0ee6b70e54bcb9dd371b --- /dev/null +++ b/data/embeddings/tumblr_rhoc5ryrs41qjtzkc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e687c4f304a5606c4ab582fbf1ad50f6a0dd47db54c4894f41bad47c3624730 +size 1664 diff --git a/data/embeddings/tumblr_rhswkl3ezj1w5pr9j.npy b/data/embeddings/tumblr_rhswkl3ezj1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..3adfaa3484d3b26a2adb1fb066a352f1c7b96e25 --- /dev/null +++ b/data/embeddings/tumblr_rhswkl3ezj1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c4c197ec47cb54c4c531d8f8eaa7beac32f116e5b92fb5a4a217ebb8f58823 +size 1664 diff --git a/data/embeddings/tumblr_rhtdrj9bxc1rpd0k1.npy b/data/embeddings/tumblr_rhtdrj9bxc1rpd0k1.npy new file mode 100644 index 0000000000000000000000000000000000000000..9bdb65930eb0bff5711545aab44df7184de7c271 --- /dev/null +++ b/data/embeddings/tumblr_rhtdrj9bxc1rpd0k1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bbc8c44a3950cbbd1fc3ac6bc35db2c39e303b56e9f7058c213d04122eff318 +size 1664 diff --git a/data/embeddings/tumblr_rhwrcqxscg1vmay6q.npy b/data/embeddings/tumblr_rhwrcqxscg1vmay6q.npy new file mode 100644 index 0000000000000000000000000000000000000000..463ec1cfd582d5be04751cf72e6c8de3f12578d6 --- /dev/null +++ b/data/embeddings/tumblr_rhwrcqxscg1vmay6q.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f63f00216a9e22d88d49828b54221e1967846cd17f0ea0432fbd9c376e67a8 +size 1664 diff --git a/data/embeddings/tumblr_rhyhsmj5rt1z8ckep.npy b/data/embeddings/tumblr_rhyhsmj5rt1z8ckep.npy new file mode 100644 index 0000000000000000000000000000000000000000..d4ec01d5a8c8b3316b2cebc2f7230cd8468565be --- /dev/null +++ b/data/embeddings/tumblr_rhyhsmj5rt1z8ckep.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a3484014e2b881edbec67613a1ee07368fec22e8d8c6107dcbbd1af48b3fa4 +size 1664 diff --git a/data/embeddings/tumblr_ri02ogq2lc1zy0blv.npy b/data/embeddings/tumblr_ri02ogq2lc1zy0blv.npy new file mode 100644 index 0000000000000000000000000000000000000000..0f6b5d1cc0c15e08a964026f9a8bd7d12f423cff --- /dev/null +++ b/data/embeddings/tumblr_ri02ogq2lc1zy0blv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ea2441de60716bf6bebe4224a0c1a9dc9e67459054dea9a018b1298267d45b +size 1664 diff --git a/data/embeddings/tumblr_ri4kwgygrt1qejbir.npy b/data/embeddings/tumblr_ri4kwgygrt1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..900969aac127379fc04fbfc0c3c9577f7b95e2b7 --- /dev/null +++ b/data/embeddings/tumblr_ri4kwgygrt1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c41759a1ad40fe9ca698065e7a6d7e2c755d0e33349f0894c7e4d8824775af +size 1664 diff --git a/data/embeddings/tumblr_riekbzhgtx1uealtn.npy b/data/embeddings/tumblr_riekbzhgtx1uealtn.npy new file mode 100644 index 0000000000000000000000000000000000000000..2ea44a1968037b8915a13772f1becf678f115ea3 --- /dev/null +++ b/data/embeddings/tumblr_riekbzhgtx1uealtn.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4527d9f7f09e3f1f502ceddea0b537cfe5cf1e9abe6222e9a9c27350f31cdf +size 1664 diff --git a/data/embeddings/tumblr_riy9l7ygms1zaldg3.npy b/data/embeddings/tumblr_riy9l7ygms1zaldg3.npy new file mode 100644 index 0000000000000000000000000000000000000000..3a98314255a4ee8735d9ba324640c89e6a32becf --- /dev/null +++ b/data/embeddings/tumblr_riy9l7ygms1zaldg3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39eb884d4d435c55373581a15469e75b7960947942158c1fdd75895b0f91fc0b +size 1664 diff --git a/data/embeddings/tumblr_rj0xsn334e1zg81l7.npy b/data/embeddings/tumblr_rj0xsn334e1zg81l7.npy new file mode 100644 index 0000000000000000000000000000000000000000..8a8b8c7de1cda8017dd2869e531861c836eb433d --- /dev/null +++ b/data/embeddings/tumblr_rj0xsn334e1zg81l7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16da695cbe412119e270031b81f86f471e64058829cc07593ab2655e89cdba85 +size 1664 diff --git a/data/embeddings/tumblr_rj12j1bymq1rfm5rk.npy b/data/embeddings/tumblr_rj12j1bymq1rfm5rk.npy new file mode 100644 index 0000000000000000000000000000000000000000..ce2c850efb12a5e8f0c51f0b4efdf2d6e3f63278 --- /dev/null +++ b/data/embeddings/tumblr_rj12j1bymq1rfm5rk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a77636b80c108b1938003b01c45acb7d0cea4dfb97336a33528e1158e6e38d7 +size 1664 diff --git a/data/embeddings/tumblr_rj5oejrrt41rs8m6x.npy b/data/embeddings/tumblr_rj5oejrrt41rs8m6x.npy new file mode 100644 index 0000000000000000000000000000000000000000..767a9757a0163123ef91af6aa6de17c9f03973dd --- /dev/null +++ b/data/embeddings/tumblr_rj5oejrrt41rs8m6x.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5714c9a9c94e663e2d1be101f163607a86862c3f0246eaaa7884eb6bc4b50a3 +size 1664 diff --git a/data/embeddings/tumblr_rj6ggapubd1umyhub.npy b/data/embeddings/tumblr_rj6ggapubd1umyhub.npy new file mode 100644 index 0000000000000000000000000000000000000000..5a099a9bde6b92598045fa398573d0189aba8c07 --- /dev/null +++ b/data/embeddings/tumblr_rj6ggapubd1umyhub.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e12a97b4512566e79e7de0490119aea516cd75317a8018e236df6981394db9 +size 1664 diff --git a/data/embeddings/tumblr_rj8y8ynxwb1x4pmbc.npy b/data/embeddings/tumblr_rj8y8ynxwb1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d937653c70f6b9af3268e977ffb0d7c45aa4a74 --- /dev/null +++ b/data/embeddings/tumblr_rj8y8ynxwb1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b8057611ef0e2f89bcb6a385821c9a75ed2e0480d67d7420746e44bdf877ee +size 1664 diff --git a/data/embeddings/tumblr_rj8yacrthu1ujdpk3.npy b/data/embeddings/tumblr_rj8yacrthu1ujdpk3.npy new file mode 100644 index 0000000000000000000000000000000000000000..c62cf68d10a8aff99123fc60edc92baec6caae8e --- /dev/null +++ b/data/embeddings/tumblr_rj8yacrthu1ujdpk3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64186f4229323a67f04b8935c5895570aa1b5190abda91eb9ce71971189fa9e +size 1664 diff --git a/data/embeddings/tumblr_rje9wxhg4p1zds1bl.npy b/data/embeddings/tumblr_rje9wxhg4p1zds1bl.npy new file mode 100644 index 0000000000000000000000000000000000000000..82e7ea42583008994bcda0aa32497101e60850af --- /dev/null +++ b/data/embeddings/tumblr_rje9wxhg4p1zds1bl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15469e0b90f6805179cec2a4a172d6854bef8384580399d6b00edd97e488c2b1 +size 1664 diff --git a/data/embeddings/tumblr_rjeedqlc6m1ycf0uc_720.npy b/data/embeddings/tumblr_rjeedqlc6m1ycf0uc_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..9da271b0ef4d7d433ea2546bc904d298dc33209a --- /dev/null +++ b/data/embeddings/tumblr_rjeedqlc6m1ycf0uc_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d507c727a4e7ea99d88a661a7b202b91c78c24f7fb1bc3d7de6ac4394109630 +size 1664 diff --git a/data/embeddings/tumblr_rjfa5yx3xv1xlgs6y.npy b/data/embeddings/tumblr_rjfa5yx3xv1xlgs6y.npy new file mode 100644 index 0000000000000000000000000000000000000000..e14e29d317006b079339b28853283ac390b3aa65 --- /dev/null +++ b/data/embeddings/tumblr_rjfa5yx3xv1xlgs6y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e316e976322ee94563340157c065a884e3d32ea4ecc2155e2e009aa64640330c +size 1664 diff --git a/data/embeddings/tumblr_rjheuu8tdg1y54s2v.npy b/data/embeddings/tumblr_rjheuu8tdg1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..fda0e5a7d77681513ed747e49042312cbc17b937 --- /dev/null +++ b/data/embeddings/tumblr_rjheuu8tdg1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07c2922fd0278ab4bdc2536e470971b7d59e539412072d2c263aafa88568d9d +size 1664 diff --git a/data/embeddings/tumblr_rjisk5qs4x1yxx4cl.npy b/data/embeddings/tumblr_rjisk5qs4x1yxx4cl.npy new file mode 100644 index 0000000000000000000000000000000000000000..ed157bc7ac132ff20b23b5123a4a12b82b94819e --- /dev/null +++ b/data/embeddings/tumblr_rjisk5qs4x1yxx4cl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7846b8751bba6be5a03ccdff356189263a79aa6158cb332cb771d23445fdadb +size 1664 diff --git a/data/embeddings/tumblr_rjne4zikxe1s1ddrj.npy b/data/embeddings/tumblr_rjne4zikxe1s1ddrj.npy new file mode 100644 index 0000000000000000000000000000000000000000..c0a2760a6f64d5ff3cb53ffa540e049d6641c038 --- /dev/null +++ b/data/embeddings/tumblr_rjne4zikxe1s1ddrj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fcaf55cd444fc51008c59f4faa5a654bfd57f9d9e83f6e46fae5bd394d3152 +size 1664 diff --git a/data/embeddings/tumblr_rjz7sjpda81u890nd.npy b/data/embeddings/tumblr_rjz7sjpda81u890nd.npy new file mode 100644 index 0000000000000000000000000000000000000000..7a6ad892bf3169a3a9930eba6a7367b06e0fd59b --- /dev/null +++ b/data/embeddings/tumblr_rjz7sjpda81u890nd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1809513952de5746eac83c79a636298c9a5637d623b00fd726d581ec9c4e0d6 +size 1664 diff --git a/data/embeddings/tumblr_rk41nrdzwd1zwpy2k.npy b/data/embeddings/tumblr_rk41nrdzwd1zwpy2k.npy new file mode 100644 index 0000000000000000000000000000000000000000..2e9ad6551810ff8a020cc4c4d22cb3ed2e8a3e51 --- /dev/null +++ b/data/embeddings/tumblr_rk41nrdzwd1zwpy2k.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f074edcffd650a417cd90b48534089e7ccd41232296fd964f7fcb1759c4888 +size 1664 diff --git a/data/embeddings/tumblr_rk74ko5it31y54s2v.npy b/data/embeddings/tumblr_rk74ko5it31y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..a3b8d9ec1b2a05581711566a28b260860d012844 --- /dev/null +++ b/data/embeddings/tumblr_rk74ko5it31y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a79acd2e1a9bd741f14f12a576526477ee97925c508bf9dad098d536938e1d +size 1664 diff --git a/data/embeddings/tumblr_rkbh5ez6dj1zs633i.npy b/data/embeddings/tumblr_rkbh5ez6dj1zs633i.npy new file mode 100644 index 0000000000000000000000000000000000000000..41240536f21191b04c9a4c4cfb090d61efd4959f --- /dev/null +++ b/data/embeddings/tumblr_rkbh5ez6dj1zs633i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eecf23dceaaebddd7910135e9e1bd276a671a65a5b28b70400fd97dbdce9374 +size 1664 diff --git a/data/embeddings/tumblr_rkj8o3yzkc1vg0r9t_720.npy b/data/embeddings/tumblr_rkj8o3yzkc1vg0r9t_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a5dcbf77c572d13e07e0eb358291bc89825aafd --- /dev/null +++ b/data/embeddings/tumblr_rkj8o3yzkc1vg0r9t_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26af62b431aafdc1291f5c7f7824e54b8219f85baebf432fd037505402f6e4db +size 1664 diff --git a/data/embeddings/tumblr_rklwywfir71z8p5jx.npy b/data/embeddings/tumblr_rklwywfir71z8p5jx.npy new file mode 100644 index 0000000000000000000000000000000000000000..b36c84069f11a74cef39b9f45c69fd35f2c413f5 --- /dev/null +++ b/data/embeddings/tumblr_rklwywfir71z8p5jx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94370b69473bd0c0c76787b7f7048f3ca11c85d251d72cf5e8ca1f25ec049ac +size 1664 diff --git a/data/embeddings/tumblr_rkuc2uimxu1yhkxjj.npy b/data/embeddings/tumblr_rkuc2uimxu1yhkxjj.npy new file mode 100644 index 0000000000000000000000000000000000000000..eb3d2733541ccb38975196055d61ec69c0a3ed77 --- /dev/null +++ b/data/embeddings/tumblr_rkuc2uimxu1yhkxjj.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e055888968d5f981a6ac6428ab52ab54deaa3df9b294a5fc9738b7135ecac03 +size 1664 diff --git a/data/embeddings/tumblr_rkuytvawjr1vb7ar51.npy b/data/embeddings/tumblr_rkuytvawjr1vb7ar51.npy new file mode 100644 index 0000000000000000000000000000000000000000..240edee9daeb030888286ea2ddb5e39f04b2f632 --- /dev/null +++ b/data/embeddings/tumblr_rkuytvawjr1vb7ar51.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39242d3c421842560a673db609d19c116da8153c040384b7756a0eb6730504e +size 1664 diff --git a/data/embeddings/tumblr_rkvxyjl9mz1xoyw8p_r1.npy b/data/embeddings/tumblr_rkvxyjl9mz1xoyw8p_r1.npy new file mode 100644 index 0000000000000000000000000000000000000000..396ebbbf7d07c24d4d0b4a09b1b40b678ee5a18c --- /dev/null +++ b/data/embeddings/tumblr_rkvxyjl9mz1xoyw8p_r1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfdc612c9e894d464ebdad4441507548c71c70d3e74b2eb0ae0e8fcb34e5267f +size 1664 diff --git a/data/embeddings/tumblr_rlavouvis01zhk7qu.npy b/data/embeddings/tumblr_rlavouvis01zhk7qu.npy new file mode 100644 index 0000000000000000000000000000000000000000..2afbe538818dddd576d4744c26534c49f10af90f --- /dev/null +++ b/data/embeddings/tumblr_rlavouvis01zhk7qu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e005cfc9fb358f304e3442fa2ac81d7ef076f87b24f8e31dc848cf67dda38d71 +size 1664 diff --git a/data/embeddings/tumblr_rlaxy1gwmm1u890nd_720.npy b/data/embeddings/tumblr_rlaxy1gwmm1u890nd_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..cb516583d7e7fc348b541f74066ecb2ab1687092 --- /dev/null +++ b/data/embeddings/tumblr_rlaxy1gwmm1u890nd_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a90acd369fcde72ab31ce7e5746262f73e301ff9e1c1688ee50e239afb86ee +size 1664 diff --git a/data/embeddings/tumblr_rlbv3qgroe1xoyw8p_720.npy b/data/embeddings/tumblr_rlbv3qgroe1xoyw8p_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..067e54e6841d838cebbf5a8278c2d65019e54042 --- /dev/null +++ b/data/embeddings/tumblr_rlbv3qgroe1xoyw8p_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4208407c60793355b40267e73cfd979a2c47bbeea7bbb82291b9c09dd9ae0fe1 +size 1664 diff --git a/data/embeddings/tumblr_rlf77sktus1z67npc.npy b/data/embeddings/tumblr_rlf77sktus1z67npc.npy new file mode 100644 index 0000000000000000000000000000000000000000..29764c8366eff59bed8ec4078d41b9e12c437761 --- /dev/null +++ b/data/embeddings/tumblr_rlf77sktus1z67npc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0b5ed71885e687c1f9c14ae7d172cd6d79120451bf33f5e7eed399210adb01 +size 1664 diff --git a/data/embeddings/tumblr_rllsiytctd1t07xg4.npy b/data/embeddings/tumblr_rllsiytctd1t07xg4.npy new file mode 100644 index 0000000000000000000000000000000000000000..caa03c473f3bf6df231e776a1ef282cad88441dd --- /dev/null +++ b/data/embeddings/tumblr_rllsiytctd1t07xg4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f932eb2fa996551380b6df1c68a2c8807919eaadb44a725dc4f14952eff1e1 +size 1664 diff --git a/data/embeddings/tumblr_rlt72fpdga1udzxps.npy b/data/embeddings/tumblr_rlt72fpdga1udzxps.npy new file mode 100644 index 0000000000000000000000000000000000000000..4cbdde2ffdd8d62bba9b34e7c82ae915ef0ac3a4 --- /dev/null +++ b/data/embeddings/tumblr_rlt72fpdga1udzxps.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4826d1b5fecb010d8c24b448188fa5f3134ea69a55e998fc518e8823e35bad +size 1664 diff --git a/data/embeddings/tumblr_rm83zayduk1zvx5ha.npy b/data/embeddings/tumblr_rm83zayduk1zvx5ha.npy new file mode 100644 index 0000000000000000000000000000000000000000..275281904d021fa12e9fcbbf603d281e6b7448c2 --- /dev/null +++ b/data/embeddings/tumblr_rm83zayduk1zvx5ha.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365bb7bbc726beef723d8e1e9bb2eb0a47d293877920c7cd621d4cab2c247066 +size 1664 diff --git a/data/embeddings/tumblr_rmahkbya6t1y686sz.npy b/data/embeddings/tumblr_rmahkbya6t1y686sz.npy new file mode 100644 index 0000000000000000000000000000000000000000..3a4d4d2de986e42c0660f1b6b2bc7eff4308de59 --- /dev/null +++ b/data/embeddings/tumblr_rmahkbya6t1y686sz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9466a15270d777f179cfaef1711a40155daa43823fe7a01772a8d115ed425582 +size 1664 diff --git a/data/embeddings/tumblr_rmcny1nhjs1sic8bl.npy b/data/embeddings/tumblr_rmcny1nhjs1sic8bl.npy new file mode 100644 index 0000000000000000000000000000000000000000..129667b421509c4fa595e1db263bac72b3050c51 --- /dev/null +++ b/data/embeddings/tumblr_rmcny1nhjs1sic8bl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ce864a9cfb9a70bf73241e943cb87164a289816323aaa179d4cc88fc81fcbb +size 1664 diff --git a/data/embeddings/tumblr_rmdwpjx6yw1ruqtxu.npy b/data/embeddings/tumblr_rmdwpjx6yw1ruqtxu.npy new file mode 100644 index 0000000000000000000000000000000000000000..6444c0f4b9e7c88c090f93668b4c99b5df012329 --- /dev/null +++ b/data/embeddings/tumblr_rmdwpjx6yw1ruqtxu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2670d5543bea0e1fad80c0cf9279898dd089b70e0380d6a2a32f6b8de0290d9a +size 1664 diff --git a/data/embeddings/tumblr_rmg8ewlr1y1yjf3mv.npy b/data/embeddings/tumblr_rmg8ewlr1y1yjf3mv.npy new file mode 100644 index 0000000000000000000000000000000000000000..a43d36e645b1537a01f91c0433996d50c4aca78d --- /dev/null +++ b/data/embeddings/tumblr_rmg8ewlr1y1yjf3mv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddff9aee2cd92bc27619bf41f3d655418815e3c3518bfe503963499cd3232a3 +size 1664 diff --git a/data/embeddings/tumblr_rmpy2ki4fi1zhr80f_720.npy b/data/embeddings/tumblr_rmpy2ki4fi1zhr80f_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..30f78fa622bfc3ed54e90e4af712dc1f2e4bf730 --- /dev/null +++ b/data/embeddings/tumblr_rmpy2ki4fi1zhr80f_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b6df7e7e46fa5645ca3ee9c73a28daa59f3d1fb21f1744754a2d20ac479898 +size 1664 diff --git a/data/embeddings/tumblr_rmsewqgvcf1umyhub_720.npy b/data/embeddings/tumblr_rmsewqgvcf1umyhub_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..05d03aa63b4b987c386ed8158774d9c5e609894e --- /dev/null +++ b/data/embeddings/tumblr_rmsewqgvcf1umyhub_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8b47174c97419a25092b1f5c8e47d3a3d36392ff9fe840d42f182daa4b155b +size 1664 diff --git a/data/embeddings/tumblr_rmx4iq2rln1w7wbpk.npy b/data/embeddings/tumblr_rmx4iq2rln1w7wbpk.npy new file mode 100644 index 0000000000000000000000000000000000000000..86bf678afd9a7648524d1d01f78533ffe3f95a92 --- /dev/null +++ b/data/embeddings/tumblr_rmx4iq2rln1w7wbpk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4c76b53c16a153f02ed9c29f8e4c8f081d7ecd378bdee5aa58cc91ff5050e8 +size 1664 diff --git a/data/embeddings/tumblr_rn2ddrbzxq1ykp17t.npy b/data/embeddings/tumblr_rn2ddrbzxq1ykp17t.npy new file mode 100644 index 0000000000000000000000000000000000000000..4608808ed8ca8f432abc99e60445ca6c4c4a208b --- /dev/null +++ b/data/embeddings/tumblr_rn2ddrbzxq1ykp17t.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb5f66629d2c7fe20217896d07712e57fb9f34b1866eff8a37de6c2cd5469f3 +size 1664 diff --git a/data/embeddings/tumblr_rn5b8tgfho1vwyv80.npy b/data/embeddings/tumblr_rn5b8tgfho1vwyv80.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3b5a120f43162dc1b0a29dc71f36f0aff85eb3f --- /dev/null +++ b/data/embeddings/tumblr_rn5b8tgfho1vwyv80.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1272079d4862fc2ba87f2be6937c65139dcd5d60c5adb9faf4ac84b3d6af6deb +size 1664 diff --git a/data/embeddings/tumblr_rnhxakeael1y54s2v.npy b/data/embeddings/tumblr_rnhxakeael1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..4fbe8b835c98a361edcc9a1af7e4a721c0399e02 --- /dev/null +++ b/data/embeddings/tumblr_rnhxakeael1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cc08dec5924dc219d57e6de3155d7a5ce1d119e2c85ba1996e4cd67a61b386 +size 1664 diff --git a/data/embeddings/tumblr_rnj4l7r6a81rrruro.npy b/data/embeddings/tumblr_rnj4l7r6a81rrruro.npy new file mode 100644 index 0000000000000000000000000000000000000000..0a2112828cba5630157cb88a42b076dcd2e3c5e3 --- /dev/null +++ b/data/embeddings/tumblr_rnj4l7r6a81rrruro.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ed2d7cf7c8da7b26adfc419c50bc860a717843ac840f22b08a86182cf27f49 +size 1664 diff --git a/data/embeddings/tumblr_rnwcimxndr1zb1ms9.npy b/data/embeddings/tumblr_rnwcimxndr1zb1ms9.npy new file mode 100644 index 0000000000000000000000000000000000000000..5c29fa03a9b181ee1b9997dbc4ddce1a2563827c --- /dev/null +++ b/data/embeddings/tumblr_rnwcimxndr1zb1ms9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ae3aeed2ae93fb5ff20b7c7acf634a58437987657b4ee1708471b7e6d7e9b4 +size 1664 diff --git a/data/embeddings/tumblr_rnxeti6gjn1z69592.npy b/data/embeddings/tumblr_rnxeti6gjn1z69592.npy new file mode 100644 index 0000000000000000000000000000000000000000..d24ce8be6decdc8db7381ba3af9645c841da867d --- /dev/null +++ b/data/embeddings/tumblr_rnxeti6gjn1z69592.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc5d295660afcaaae7f87bbe9e5f0ca83269b8a09e8b7daa07a63942a4538166 +size 1664 diff --git a/data/embeddings/tumblr_ro064ovlr61z7ukda.npy b/data/embeddings/tumblr_ro064ovlr61z7ukda.npy new file mode 100644 index 0000000000000000000000000000000000000000..4c71b237e3e6bcfb0eadaa37b04c50187ad08f07 --- /dev/null +++ b/data/embeddings/tumblr_ro064ovlr61z7ukda.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e822f8439e934442a960c068b05ab80eb7991d5d9772f4681ab801b95dfb07 +size 1664 diff --git a/data/embeddings/tumblr_ro1fdb1fbo1r00k2k.npy b/data/embeddings/tumblr_ro1fdb1fbo1r00k2k.npy new file mode 100644 index 0000000000000000000000000000000000000000..303fa088374e8ea65ab2842b190981be7e493955 --- /dev/null +++ b/data/embeddings/tumblr_ro1fdb1fbo1r00k2k.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d104b46363bb58215d3ba10cde38f7baa6ff7916098fa549633131e639f3496 +size 1664 diff --git a/data/embeddings/tumblr_ro5rf1q9bo1qjnhqg.npy b/data/embeddings/tumblr_ro5rf1q9bo1qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..d8c31afacad4c6ef4de62093ff64fc3c85f06e84 --- /dev/null +++ b/data/embeddings/tumblr_ro5rf1q9bo1qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e5d3f53ea96d16cfbee072a3e17494cb4f715c38b2965973643edef4452bcb +size 1664 diff --git a/data/embeddings/tumblr_roc7bxha3a1yd1erx_720.npy b/data/embeddings/tumblr_roc7bxha3a1yd1erx_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..2ae36ab42480cfc8069463a94f176c28204792f7 --- /dev/null +++ b/data/embeddings/tumblr_roc7bxha3a1yd1erx_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c24f7f089be88581f590a574cb2ecd4ccdf4fafefc4449c9f8367c76b43bec +size 1664 diff --git a/data/embeddings/tumblr_rocj60vnxe1zizeiu.npy b/data/embeddings/tumblr_rocj60vnxe1zizeiu.npy new file mode 100644 index 0000000000000000000000000000000000000000..a58b5cc64392f9e2f4bb6ac759eb1ea46bb93c86 --- /dev/null +++ b/data/embeddings/tumblr_rocj60vnxe1zizeiu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef44e4dc69b9be6668ee80ea03f83b4ae8fc59fd2e1d3e934eead9fc28aa4ba +size 1664 diff --git a/data/embeddings/tumblr_roeocqjxeg1z67npc.npy b/data/embeddings/tumblr_roeocqjxeg1z67npc.npy new file mode 100644 index 0000000000000000000000000000000000000000..83f9a4493398e187276449d8bcafa9e6c871fcd4 --- /dev/null +++ b/data/embeddings/tumblr_roeocqjxeg1z67npc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fdc1bc9fbe0c8f488029bc707213f14d5735a2938194e4b1bee50cf3d2611a6 +size 1664 diff --git a/data/embeddings/tumblr_roji3u6ipl1vnghde.npy b/data/embeddings/tumblr_roji3u6ipl1vnghde.npy new file mode 100644 index 0000000000000000000000000000000000000000..98705370ca820cd956c8ec05b2115ce43a1fea2e --- /dev/null +++ b/data/embeddings/tumblr_roji3u6ipl1vnghde.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b41f42200fe2feaac9f761d048d9f9e5868efabdbd5f9f775972d99a4cc8351 +size 1664 diff --git a/data/embeddings/tumblr_rok05yte9n1stqyka_720.npy b/data/embeddings/tumblr_rok05yte9n1stqyka_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..8cac00ba8fd91ecec05a85600f775873896f9e75 --- /dev/null +++ b/data/embeddings/tumblr_rok05yte9n1stqyka_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf9c3bebbff3f5462f1c76744e34bed3bcdab1aad0d2784c294f8fd3a3bde483 +size 1664 diff --git a/data/embeddings/tumblr_rolpdgfehg1x4pmbc.npy b/data/embeddings/tumblr_rolpdgfehg1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..4803f028c16c595b1401be1e7f62c39fcc45dbc7 --- /dev/null +++ b/data/embeddings/tumblr_rolpdgfehg1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f17887d01b8a8e313776d310eda0611f78104879f3c9c77999166677705ae6b +size 1664 diff --git a/data/embeddings/tumblr_roo130db7m1zurqo3.npy b/data/embeddings/tumblr_roo130db7m1zurqo3.npy new file mode 100644 index 0000000000000000000000000000000000000000..bfc1dc54f578434a1d631df2bea525bdaaf20b0a --- /dev/null +++ b/data/embeddings/tumblr_roo130db7m1zurqo3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad26b91b0bccfa2ddaa3c8b9e7b64ce40714db842b528c2426a2d7e62cf928b +size 1664 diff --git a/data/embeddings/tumblr_rp1iivfpco1y54s2v.npy b/data/embeddings/tumblr_rp1iivfpco1y54s2v.npy new file mode 100644 index 0000000000000000000000000000000000000000..4134d7722eed0fd8ce40484d851099c4c725856a --- /dev/null +++ b/data/embeddings/tumblr_rp1iivfpco1y54s2v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a71acb496a0462ff6a2abfaf67e6a3bb2f8d54be8527be082d03c600ab0532 +size 1664 diff --git a/data/embeddings/tumblr_rp4swrrsgm1r5z507.npy b/data/embeddings/tumblr_rp4swrrsgm1r5z507.npy new file mode 100644 index 0000000000000000000000000000000000000000..a5bf977cf66d8ae865addfd88b5a1dd160ff1482 --- /dev/null +++ b/data/embeddings/tumblr_rp4swrrsgm1r5z507.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728a29e7890b04b6248351b35d72962a8dbcff070ac305955590009ed16b9cf4 +size 1664 diff --git a/data/embeddings/tumblr_rpph80qjag1un8t8y.npy b/data/embeddings/tumblr_rpph80qjag1un8t8y.npy new file mode 100644 index 0000000000000000000000000000000000000000..d477169160e4d1f70292a70aaec9bea082d84fbb --- /dev/null +++ b/data/embeddings/tumblr_rpph80qjag1un8t8y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9462183bcfbff0d328ffb24fa04d92f5668dbc2b47a0f41ccd3df1d625d50545 +size 1664 diff --git a/data/embeddings/tumblr_rpq4lssidp1w5pr9j.npy b/data/embeddings/tumblr_rpq4lssidp1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..25c1c45ff171c47ef80ddc77c6a60bbc09854d13 --- /dev/null +++ b/data/embeddings/tumblr_rpq4lssidp1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc8fdb86dde353f25036263776e26501f46fe63ed4f9de1c5057a984e3b0707 +size 1664 diff --git a/data/embeddings/tumblr_rpvq1c2gfw1vmobp0_720.npy b/data/embeddings/tumblr_rpvq1c2gfw1vmobp0_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..f190bb170355b996f77ce967c6f0ab6fcee20ed3 --- /dev/null +++ b/data/embeddings/tumblr_rpvq1c2gfw1vmobp0_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7244e61939b69e831cf8bf0e070156b28c65675fdd6c0783181efaaccf3e36 +size 1664 diff --git a/data/embeddings/tumblr_rpx3qiewrw1rd9hsl.npy b/data/embeddings/tumblr_rpx3qiewrw1rd9hsl.npy new file mode 100644 index 0000000000000000000000000000000000000000..b30d93bb3c10222d09caaeab6f9eae98b3628c90 --- /dev/null +++ b/data/embeddings/tumblr_rpx3qiewrw1rd9hsl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff09b708290a00828295584b7deb31a3f49a2c3bbcafe1634e49ef7ece16b8f +size 1664 diff --git a/data/embeddings/tumblr_rqbois1kz31qejbir.npy b/data/embeddings/tumblr_rqbois1kz31qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..2dd3c28c576eb03c2949cc1b090bb17de1ace289 --- /dev/null +++ b/data/embeddings/tumblr_rqbois1kz31qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9936db2d87e61c0c7221fe76fb03775126b4db1fa5ddd8689341aaf6a4c079be +size 1664 diff --git a/data/embeddings/tumblr_rqcwoahb431tbb55m_720.npy b/data/embeddings/tumblr_rqcwoahb431tbb55m_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee35d599e5bdc73780c738d9e930cc8682447be3 --- /dev/null +++ b/data/embeddings/tumblr_rqcwoahb431tbb55m_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf34e81c455e43e56899d7bb125d1da6c19cb331d41cd83ac290c077578b80a +size 1664 diff --git a/data/embeddings/tumblr_rqqldgkxz51y51wgl.npy b/data/embeddings/tumblr_rqqldgkxz51y51wgl.npy new file mode 100644 index 0000000000000000000000000000000000000000..e5ce862de350761f037933a09a99493d45894261 --- /dev/null +++ b/data/embeddings/tumblr_rqqldgkxz51y51wgl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b681163ce6679528590d61084c606320e4aeffd30538be4bb13d6407ed4adc +size 1664 diff --git a/data/embeddings/tumblr_rr9j0tnc261tvhzlo.npy b/data/embeddings/tumblr_rr9j0tnc261tvhzlo.npy new file mode 100644 index 0000000000000000000000000000000000000000..f2300dcd692d5dd507d8b06839feb67a5fcf8bd5 --- /dev/null +++ b/data/embeddings/tumblr_rr9j0tnc261tvhzlo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93ae90c0696fe74a8b1a59acd20ffdeb194bdd5c1cbf42a1f6b77dc711c2f0e +size 1664 diff --git a/data/embeddings/tumblr_rraqyvqlqj1w5pr9j.npy b/data/embeddings/tumblr_rraqyvqlqj1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..76212250f0ba146d0b694f028f9db8b1fd0c2ecd --- /dev/null +++ b/data/embeddings/tumblr_rraqyvqlqj1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f80b74221aa2e000f1a5b74b3699eb8adc1df847513f6a29ab8ade3207bcf1 +size 1664 diff --git a/data/embeddings/tumblr_rrfkr3vkig1xwedvf.npy b/data/embeddings/tumblr_rrfkr3vkig1xwedvf.npy new file mode 100644 index 0000000000000000000000000000000000000000..b6971c20022274a9d641027f7d5f71e6c084db6d --- /dev/null +++ b/data/embeddings/tumblr_rrfkr3vkig1xwedvf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8940beadb8eba6acbc29d90f46ca36c9d22876d4020105b6b8aa13517f8f8e +size 1664 diff --git a/data/embeddings/tumblr_rrhrjn7v7n1wgqtvi.npy b/data/embeddings/tumblr_rrhrjn7v7n1wgqtvi.npy new file mode 100644 index 0000000000000000000000000000000000000000..b5de63aeacc53e9853e12962a1108bfee2b3329a --- /dev/null +++ b/data/embeddings/tumblr_rrhrjn7v7n1wgqtvi.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c275750871ffa403a5b483d5c99a2ea6d275547645efaf45316902ad709845b6 +size 1664 diff --git a/data/embeddings/tumblr_rrp1cubb1w1qejbir.npy b/data/embeddings/tumblr_rrp1cubb1w1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..399414b844a0ef01520a5f3b9ea90d385440487a --- /dev/null +++ b/data/embeddings/tumblr_rrp1cubb1w1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ac5b2c6df6617a03a661f81d29458105b1ada404fb5b86f411e2d5452673cc +size 1664 diff --git a/data/embeddings/tumblr_rrpusfk4eh1qjnhqg.npy b/data/embeddings/tumblr_rrpusfk4eh1qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..a85aab5fd2830f3cab06a7654480f26ebf8d592d --- /dev/null +++ b/data/embeddings/tumblr_rrpusfk4eh1qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4250cb43b3d01db943458b3fc14199f80fa6813a60e74f78512f20ad8ac79af +size 1664 diff --git a/data/embeddings/tumblr_rrq4ratbso1unz71b.npy b/data/embeddings/tumblr_rrq4ratbso1unz71b.npy new file mode 100644 index 0000000000000000000000000000000000000000..1ffba065c4ae8636d28f06144c588f1f5da97b27 --- /dev/null +++ b/data/embeddings/tumblr_rrq4ratbso1unz71b.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5062362e6f251cfd92b23eb34ac93b0b27304e46477f5b07c3e943a850a2ae2b +size 1664 diff --git a/data/embeddings/tumblr_rrwsd7chye1xoyw8p.npy b/data/embeddings/tumblr_rrwsd7chye1xoyw8p.npy new file mode 100644 index 0000000000000000000000000000000000000000..99422ce2a4f77edae86df93ad00becff70a8de0a --- /dev/null +++ b/data/embeddings/tumblr_rrwsd7chye1xoyw8p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c3e447a2a5584de3a723b5c72317d3bd0956a87b6bd780ca4e8dc1e55fe29c1 +size 1664 diff --git a/data/embeddings/tumblr_rs04rudlzc1uoezqw.npy b/data/embeddings/tumblr_rs04rudlzc1uoezqw.npy new file mode 100644 index 0000000000000000000000000000000000000000..f6d7a1390a561dd2aed65afe0e39ffa44be5f500 --- /dev/null +++ b/data/embeddings/tumblr_rs04rudlzc1uoezqw.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94387335d60b4c75a306aae10295538dd33307757bd1509ee093a6868ddaf9ae +size 1664 diff --git a/data/embeddings/tumblr_rs376qf4sv1a1i6yy.npy b/data/embeddings/tumblr_rs376qf4sv1a1i6yy.npy new file mode 100644 index 0000000000000000000000000000000000000000..0616f3c917e616aeea9d111c713681d59627b626 --- /dev/null +++ b/data/embeddings/tumblr_rs376qf4sv1a1i6yy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bce3f5885b0f1867e054ee6acc560ba3b22764c91bfaf068c775842ae606075 +size 1664 diff --git a/data/embeddings/tumblr_rsakiajzhp1vbdnor.npy b/data/embeddings/tumblr_rsakiajzhp1vbdnor.npy new file mode 100644 index 0000000000000000000000000000000000000000..0bee5eff8b1710c03919e845669b21d22fbf6518 --- /dev/null +++ b/data/embeddings/tumblr_rsakiajzhp1vbdnor.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e7bb1e36721375accc110a1df0fa339ef3286f6506be6e95c59f4a24789fa6 +size 1664 diff --git a/data/embeddings/tumblr_rsbmrfhyot1yxv6w4.npy b/data/embeddings/tumblr_rsbmrfhyot1yxv6w4.npy new file mode 100644 index 0000000000000000000000000000000000000000..5506f75eaaea911be65a808e7c6908d585b4ef6d --- /dev/null +++ b/data/embeddings/tumblr_rsbmrfhyot1yxv6w4.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2774cafcdfa2fe02ccc15765075662ba3ad5b9b1d9cc95957a18b998f2bf19 +size 1664 diff --git a/data/embeddings/tumblr_rscdeylf531w5pr9j.npy b/data/embeddings/tumblr_rscdeylf531w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..89eba9f5014522bd19284d537d76e4229457192b --- /dev/null +++ b/data/embeddings/tumblr_rscdeylf531w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697a5b97f162e76920e317b93e3f1b5c6917857fb43cb75e91001334c0f187f3 +size 1664 diff --git a/data/embeddings/tumblr_rsfddakv9a1vfklhbfff.npy b/data/embeddings/tumblr_rsfddakv9a1vfklhbfff.npy new file mode 100644 index 0000000000000000000000000000000000000000..299852b096c6efeed81395cbc3e9bd03c0d7d856 --- /dev/null +++ b/data/embeddings/tumblr_rsfddakv9a1vfklhbfff.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11eb63784908fd8418579846328ccf45dc47fcee2f9d92bce337f431f2f7753 +size 1664 diff --git a/data/embeddings/tumblr_rshdrqv2t11tvhzlo.npy b/data/embeddings/tumblr_rshdrqv2t11tvhzlo.npy new file mode 100644 index 0000000000000000000000000000000000000000..726fe349cf7e0d9640af09aafb216e0dd35eb006 --- /dev/null +++ b/data/embeddings/tumblr_rshdrqv2t11tvhzlo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6ef8f2f022cbe51ee91b5eea6396783ecc36a8e09807abd910f6606bb6290c +size 1664 diff --git a/data/embeddings/tumblr_rskz58sghe1qhs0m6.npy b/data/embeddings/tumblr_rskz58sghe1qhs0m6.npy new file mode 100644 index 0000000000000000000000000000000000000000..0abab6365202c2d499edf2b2825a21f5e7aa1781 --- /dev/null +++ b/data/embeddings/tumblr_rskz58sghe1qhs0m6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:491a8445ee5cf2df9b45f7fe012cac6873647ee0151a7d02c1ffa5596bbb3e66 +size 1664 diff --git a/data/embeddings/tumblr_rsmnpwbimy1z43swh_720.npy b/data/embeddings/tumblr_rsmnpwbimy1z43swh_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..a3712281de4d2e6a16fce76fe181448e0eee6f3c --- /dev/null +++ b/data/embeddings/tumblr_rsmnpwbimy1z43swh_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956d56e3d60871d78cdc86b5d6a62f4b4b56aafde273c5542a4cb41ef75d646c +size 1664 diff --git a/data/embeddings/tumblr_rsqsgkntxj1zf1e2z.npy b/data/embeddings/tumblr_rsqsgkntxj1zf1e2z.npy new file mode 100644 index 0000000000000000000000000000000000000000..961dc38d28550f75d5f23c5914283a6614ddf1d1 --- /dev/null +++ b/data/embeddings/tumblr_rsqsgkntxj1zf1e2z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65f40ac8dcfb1cefff800294365877cd7cef5945aacb60da1b78996afb029a4 +size 1664 diff --git a/data/embeddings/tumblr_rstul0hbac1y5ejpt.npy b/data/embeddings/tumblr_rstul0hbac1y5ejpt.npy new file mode 100644 index 0000000000000000000000000000000000000000..f672ea70aaedfef5833fcd2a4aca46bce4a8c86c --- /dev/null +++ b/data/embeddings/tumblr_rstul0hbac1y5ejpt.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a67766466f113e482212dfd0e699d6237174735c1402f5643ac40e702a6e9b +size 1664 diff --git a/data/embeddings/tumblr_rsu14qwyix1rd9hsl.npy b/data/embeddings/tumblr_rsu14qwyix1rd9hsl.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bd3af408e5a7d819b434f8d947d07f32d7a414d --- /dev/null +++ b/data/embeddings/tumblr_rsu14qwyix1rd9hsl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04082c38d284cddd7e7c6e7f97f033f825c19e7be7bcb49ba1862f27ce99fc74 +size 1664 diff --git a/data/embeddings/tumblr_rszl0h2osr1z7ukda.npy b/data/embeddings/tumblr_rszl0h2osr1z7ukda.npy new file mode 100644 index 0000000000000000000000000000000000000000..36ccb981b06490b3fad793fff8bb7fa21afe827e --- /dev/null +++ b/data/embeddings/tumblr_rszl0h2osr1z7ukda.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d70a4863f2de5cc8c0874489136227728fecd47ad912e1396e56980ee12fbd +size 1664 diff --git a/data/embeddings/tumblr_rt2rlizwsj1x4pmbc.npy b/data/embeddings/tumblr_rt2rlizwsj1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..ef1fbe98ac12e26cb03a113f3764a1b1dc4cf8b0 --- /dev/null +++ b/data/embeddings/tumblr_rt2rlizwsj1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9df4b7da26021ae94204342179f6af45044ff1e1c0af6b6d359b9764eaeab60 +size 1664 diff --git a/data/embeddings/tumblr_rt31xxqlcs1ujg2ay.npy b/data/embeddings/tumblr_rt31xxqlcs1ujg2ay.npy new file mode 100644 index 0000000000000000000000000000000000000000..ad1e27d9638f5fb1f97b8bc5584b2dea550f2d98 --- /dev/null +++ b/data/embeddings/tumblr_rt31xxqlcs1ujg2ay.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47bb135223a0b9d5887eee5ba1d430bcc6c1a89b644988acf670a4b98b0f627d +size 1664 diff --git a/data/embeddings/tumblr_rtbmiqksae1w5pr9j.npy b/data/embeddings/tumblr_rtbmiqksae1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..4235b212c6d8bbe29f8df0bc7c5bc89acd3a91fd --- /dev/null +++ b/data/embeddings/tumblr_rtbmiqksae1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae733b7c9cc21b71b22ca2e1af520aa0656c28271d2f5f0e7a2f08c845c8e3b8 +size 1664 diff --git a/data/embeddings/tumblr_rtboz01lbt1vmobp0.npy b/data/embeddings/tumblr_rtboz01lbt1vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..70558632fdaaa741da54b08f5524a17dbcc2f541 --- /dev/null +++ b/data/embeddings/tumblr_rtboz01lbt1vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e884006ee9dbeb4d1eb3a8c5348660b3eed9af20b73ca51c011d551e63784132 +size 1664 diff --git a/data/embeddings/tumblr_rtf2rqs3ub1yajgpc.npy b/data/embeddings/tumblr_rtf2rqs3ub1yajgpc.npy new file mode 100644 index 0000000000000000000000000000000000000000..006c66f71d26aa4667e976dcf7968a1b3d349248 --- /dev/null +++ b/data/embeddings/tumblr_rtf2rqs3ub1yajgpc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71791485690ea85c12efa1840731a7a95953103982ccc40f0c2a2a785e287ba0 +size 1664 diff --git a/data/embeddings/tumblr_rtju7b98et1t4f51m.npy b/data/embeddings/tumblr_rtju7b98et1t4f51m.npy new file mode 100644 index 0000000000000000000000000000000000000000..53a872a0b3b27ff1d7300fe150adf7eabce06476 --- /dev/null +++ b/data/embeddings/tumblr_rtju7b98et1t4f51m.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6a2d3fd34147d4b894503cdc55669b7adf853b2d089edadb355ffe4a1459c7 +size 1664 diff --git a/data/embeddings/tumblr_rtlk7590yl1zs633i.npy b/data/embeddings/tumblr_rtlk7590yl1zs633i.npy new file mode 100644 index 0000000000000000000000000000000000000000..e381eca5914c04803ad09a79efe285ce9d9730c7 --- /dev/null +++ b/data/embeddings/tumblr_rtlk7590yl1zs633i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae57f2b50ef55e7a58434edf7da5014697e6d33227360ac2271fae18161e578b +size 1664 diff --git a/data/embeddings/tumblr_rtu08tdqdk1w4j956.npy b/data/embeddings/tumblr_rtu08tdqdk1w4j956.npy new file mode 100644 index 0000000000000000000000000000000000000000..25f7d475e67cc28b103a11b350219a31ddbb843e --- /dev/null +++ b/data/embeddings/tumblr_rtu08tdqdk1w4j956.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272520deefbb585e8bd5448f672777c943108e4e6a7abfc3a93b5ad0fee16a07 +size 1664 diff --git a/data/embeddings/tumblr_ru08mplzbx1ydkkl5.npy b/data/embeddings/tumblr_ru08mplzbx1ydkkl5.npy new file mode 100644 index 0000000000000000000000000000000000000000..72cb56eab0bb0494e284aea9078710c7a61449d2 --- /dev/null +++ b/data/embeddings/tumblr_ru08mplzbx1ydkkl5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079f6f221a8ce32a98bf56448624bdea9e323f0ae7015f9bfcb8672b0959cfb5 +size 1664 diff --git a/data/embeddings/tumblr_ru3f7xehbj1yibpma.npy b/data/embeddings/tumblr_ru3f7xehbj1yibpma.npy new file mode 100644 index 0000000000000000000000000000000000000000..fc87928a6b70e15ab5e14330be00ea56590e477f --- /dev/null +++ b/data/embeddings/tumblr_ru3f7xehbj1yibpma.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1944b807447a63510528a36bb324f89886fadbd5f4f620485ff2d38ac27027b0 +size 1664 diff --git a/data/embeddings/tumblr_ruepjvcmnp1yjz13y.npy b/data/embeddings/tumblr_ruepjvcmnp1yjz13y.npy new file mode 100644 index 0000000000000000000000000000000000000000..7462feb070f6f6033d6533576acd5f14e366faba --- /dev/null +++ b/data/embeddings/tumblr_ruepjvcmnp1yjz13y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f5781742f2b4b4291b95fbbcd7260e71fde238ecba446ce568c8dd1e044d99 +size 1664 diff --git a/data/embeddings/tumblr_ruewhsjaag1zik2zt_720.npy b/data/embeddings/tumblr_ruewhsjaag1zik2zt_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..960eae5219bcecda5882b450c605676b638c6ba3 --- /dev/null +++ b/data/embeddings/tumblr_ruewhsjaag1zik2zt_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8149e0c93cfa4feab1d57b48862c2180700c3b6110ebc59a1c0794f4f647ba72 +size 1664 diff --git a/data/embeddings/tumblr_rufc5eggv91qjnhqg.npy b/data/embeddings/tumblr_rufc5eggv91qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c38b389aeb9f9d37903ffafdb9976c8b553fa1f --- /dev/null +++ b/data/embeddings/tumblr_rufc5eggv91qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20e4052dc0676fd63771b3323e5a5d4288462ed890bd89f33c5e9bd26370c06 +size 1664 diff --git a/data/embeddings/tumblr_run6ts1vnb1w5pr9j.npy b/data/embeddings/tumblr_run6ts1vnb1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..ea992a5dbd8f7f788806612d051e52ca5de59f0c --- /dev/null +++ b/data/embeddings/tumblr_run6ts1vnb1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a6477331d5459cf75f2ecca8af5c1a9a314581bf18c07d1d2731ef4b4b33e0 +size 1664 diff --git a/data/embeddings/tumblr_run6wxg0h51w5pr9j.npy b/data/embeddings/tumblr_run6wxg0h51w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..61c83cd8039271d7f82ad8cb5a3624e3ef7a55f1 --- /dev/null +++ b/data/embeddings/tumblr_run6wxg0h51w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e72830919af819cfacb6bc56fe4a112dfd4c889bc9c44464c698dd35a7226b5 +size 1664 diff --git a/data/embeddings/tumblr_run7c1v0sm1w5pr9j.npy b/data/embeddings/tumblr_run7c1v0sm1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..fdc81b27f477a4c4c9780a62bd3705a327a1f8ef --- /dev/null +++ b/data/embeddings/tumblr_run7c1v0sm1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f321aabfacc4825add9421fc68a2cd86225ed3c4c1ca3cf1b199d2ae71d6eff3 +size 1664 diff --git a/data/embeddings/tumblr_ruz61u8uwl1zvw9u1.npy b/data/embeddings/tumblr_ruz61u8uwl1zvw9u1.npy new file mode 100644 index 0000000000000000000000000000000000000000..952bf33442f4b3dc3ddc7d17a208d0b0232efed1 --- /dev/null +++ b/data/embeddings/tumblr_ruz61u8uwl1zvw9u1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3adae899bcedcb16dea8cb9d865cb86031c7387fb3066b3b1978e94762d2ed79 +size 1664 diff --git a/data/embeddings/tumblr_rv0et0ffsf1w5pr9j.npy b/data/embeddings/tumblr_rv0et0ffsf1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..71ffc69cecedbe74fbf5d1056746f09a2e028865 --- /dev/null +++ b/data/embeddings/tumblr_rv0et0ffsf1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3c201dbacbc04fd9de6d963f22b1c67cc5b4f41f34d0d921c0313ac073f744 +size 1664 diff --git a/data/embeddings/tumblr_rv6eyfwjw61yd1erx_720.npy b/data/embeddings/tumblr_rv6eyfwjw61yd1erx_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..640822d562d9e30ebd1f8a483276144faa57d397 --- /dev/null +++ b/data/embeddings/tumblr_rv6eyfwjw61yd1erx_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c534ef4fea7be9e2787597411d972cca93da930199848c98b0fdd76ae1ce68f +size 1664 diff --git a/data/embeddings/tumblr_rv9vjneixd1yjf3mv.npy b/data/embeddings/tumblr_rv9vjneixd1yjf3mv.npy new file mode 100644 index 0000000000000000000000000000000000000000..9d31be1c3ac440df1647ebd193793badbd5874f2 --- /dev/null +++ b/data/embeddings/tumblr_rv9vjneixd1yjf3mv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c84083abf36de3090efb860a5052d3a85965543301dd0586a071861a5afa7c0c +size 1664 diff --git a/data/embeddings/tumblr_rvoq3kn2f51yq0dl2_720.npy b/data/embeddings/tumblr_rvoq3kn2f51yq0dl2_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..d158a8e963b25f81c7c8639984ddcc19f37fc544 --- /dev/null +++ b/data/embeddings/tumblr_rvoq3kn2f51yq0dl2_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32a40a7f608eeb79a32730e4d6f6f52662b43a627ff40f2fe33f18417515463 +size 1664 diff --git a/data/embeddings/tumblr_rvzry4eisi1tjrwu3.npy b/data/embeddings/tumblr_rvzry4eisi1tjrwu3.npy new file mode 100644 index 0000000000000000000000000000000000000000..9abd1b81d605c223d61f7fa2d04cc66f92d4cd73 --- /dev/null +++ b/data/embeddings/tumblr_rvzry4eisi1tjrwu3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42721bfca0e592dc84bf3a3fdd97d2978dea6f714d3d72c85b48ff5deefcde6 +size 1664 diff --git a/data/embeddings/tumblr_rw1hnnqntm1ucoynk.npy b/data/embeddings/tumblr_rw1hnnqntm1ucoynk.npy new file mode 100644 index 0000000000000000000000000000000000000000..c270de2c1ec1af5ededf6f1123183d8b02e1895f --- /dev/null +++ b/data/embeddings/tumblr_rw1hnnqntm1ucoynk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3b0149833d3aba26ecbc0f0bc8534042c9024056746eeb82279f5231c781bc +size 1664 diff --git a/data/embeddings/tumblr_rw30fe6mbg1qjnhqg.npy b/data/embeddings/tumblr_rw30fe6mbg1qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..3984be77d78e362f11ff530e16a4edcb784e37d8 --- /dev/null +++ b/data/embeddings/tumblr_rw30fe6mbg1qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4d5d314c73b287ac57f3a6b13767603914ed7aa29c49b4fccd6a8b21a51272 +size 1664 diff --git a/data/embeddings/tumblr_rw4cq9d2rv1z5l7qe.npy b/data/embeddings/tumblr_rw4cq9d2rv1z5l7qe.npy new file mode 100644 index 0000000000000000000000000000000000000000..3172946d84b9d4c06133d820f6c891a423ca0f58 --- /dev/null +++ b/data/embeddings/tumblr_rw4cq9d2rv1z5l7qe.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e78a8fa5309598d3c5b5583d5abca135ffcc46d95f6d697307f24dc51ccb3a7 +size 1664 diff --git a/data/embeddings/tumblr_rw5fx8nkgl1a1zhk7.npy b/data/embeddings/tumblr_rw5fx8nkgl1a1zhk7.npy new file mode 100644 index 0000000000000000000000000000000000000000..998e0d5a1b60ee8db7da0afd8d844e74ed8273ca --- /dev/null +++ b/data/embeddings/tumblr_rw5fx8nkgl1a1zhk7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca00f8e6326c67e345fc9d4ccb69690c2b12ed53d0a78346549786ff33303a82 +size 1664 diff --git a/data/embeddings/tumblr_rw9i8qloyb1un8t8y.npy b/data/embeddings/tumblr_rw9i8qloyb1un8t8y.npy new file mode 100644 index 0000000000000000000000000000000000000000..bd9f236d1108517a44d5023d3802759d734cab74 --- /dev/null +++ b/data/embeddings/tumblr_rw9i8qloyb1un8t8y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a0711b7e97bb133833141af28121dd06feb95529fc96c021f7514d9f11e996 +size 1664 diff --git a/data/embeddings/tumblr_rwfra8ef391xv4rgy.npy b/data/embeddings/tumblr_rwfra8ef391xv4rgy.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d08f5dcd8300a715bb76ab614b5765989dba151 --- /dev/null +++ b/data/embeddings/tumblr_rwfra8ef391xv4rgy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8daf1aa950607cd68006e48345f6d81039a6b988eebe272c1fc4270c1796272 +size 1664 diff --git a/data/embeddings/tumblr_rwin3zpb181a55lqo.npy b/data/embeddings/tumblr_rwin3zpb181a55lqo.npy new file mode 100644 index 0000000000000000000000000000000000000000..8156e8effeae21dd4544c770fb3476cfa332c877 --- /dev/null +++ b/data/embeddings/tumblr_rwin3zpb181a55lqo.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e90904ba42db1346d455618b710bcb3ad6e16be925223dbd88b6f63e2b1f68 +size 1664 diff --git a/data/embeddings/tumblr_rwmvfj1km21qejbir_720.npy b/data/embeddings/tumblr_rwmvfj1km21qejbir_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..4b495ed53ad780c83ce3a8a2c928ae8a5c874409 --- /dev/null +++ b/data/embeddings/tumblr_rwmvfj1km21qejbir_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ea98f8c00d6fb0928bc32400d3bc770c921c15eae3b190b7334d089057d909 +size 1664 diff --git a/data/embeddings/tumblr_rwo1q0udhk1u890nd.npy b/data/embeddings/tumblr_rwo1q0udhk1u890nd.npy new file mode 100644 index 0000000000000000000000000000000000000000..affc2a4d6755839602da053cb39b5b3dbdea1362 --- /dev/null +++ b/data/embeddings/tumblr_rwo1q0udhk1u890nd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625f41537097a5264383e75c183b3784b63c56e964fb5dc65f414584e5706960 +size 1664 diff --git a/data/embeddings/tumblr_rwu3e8lkaw1rfnzra.npy b/data/embeddings/tumblr_rwu3e8lkaw1rfnzra.npy new file mode 100644 index 0000000000000000000000000000000000000000..16d2a8de9705a790116458b656b302c89fd2a8e9 --- /dev/null +++ b/data/embeddings/tumblr_rwu3e8lkaw1rfnzra.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d94ce408e1d2ae567f0be71d8bf2dcf1675c907baa1e51df77474174b95452e +size 1664 diff --git a/data/embeddings/tumblr_rwuqb03ctu1wem4ug.npy b/data/embeddings/tumblr_rwuqb03ctu1wem4ug.npy new file mode 100644 index 0000000000000000000000000000000000000000..2bed8eecd07af223f4a53ac606519c78020b52c1 --- /dev/null +++ b/data/embeddings/tumblr_rwuqb03ctu1wem4ug.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d12886d32a7b006b5b40d9c465ea80a9676fb9a5dbb909f8d6fcd542accdbd6 +size 1664 diff --git a/data/embeddings/tumblr_rx385l20h81vx9xi5.npy b/data/embeddings/tumblr_rx385l20h81vx9xi5.npy new file mode 100644 index 0000000000000000000000000000000000000000..70266d4baf7ca24f899214778c835c6dc006ac2c --- /dev/null +++ b/data/embeddings/tumblr_rx385l20h81vx9xi5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9573902279e9b83a8c9b5de31d6b3e30933ebf72d582bd8f4fa8457fc23d05 +size 1664 diff --git a/data/embeddings/tumblr_rx937l5x1g1qejbir.npy b/data/embeddings/tumblr_rx937l5x1g1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..181c3bbc981696ac22850db32c6e3d67dc2b655e --- /dev/null +++ b/data/embeddings/tumblr_rx937l5x1g1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99afdf2e14b45ea2d2b1929f6b39d25ca9bc323935af23fceefe0f176e73fdc8 +size 1664 diff --git a/data/embeddings/tumblr_rxpocdpbxu1x41t2d.npy b/data/embeddings/tumblr_rxpocdpbxu1x41t2d.npy new file mode 100644 index 0000000000000000000000000000000000000000..85edeaa09cdc39a97d40dc82d0470fe2dd220388 --- /dev/null +++ b/data/embeddings/tumblr_rxpocdpbxu1x41t2d.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b087098fb41bc01db14bb4a9348520a3398879722d61ba85cbd1d1934bf963 +size 1664 diff --git a/data/embeddings/tumblr_rxy7kvjqxh1z2sv3k.npy b/data/embeddings/tumblr_rxy7kvjqxh1z2sv3k.npy new file mode 100644 index 0000000000000000000000000000000000000000..681b95db27b9b5371962c1c1c077f6b2610ea944 --- /dev/null +++ b/data/embeddings/tumblr_rxy7kvjqxh1z2sv3k.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9e65a81fb31c38ce2c6bf50cfaedff65abb72becd70d7c225bc21df964a11a +size 1664 diff --git a/data/embeddings/tumblr_ry7gioasqv1zxewsp_720.npy b/data/embeddings/tumblr_ry7gioasqv1zxewsp_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..42cbfe8d7fcc246f562c42a43f0b2818939ec35d --- /dev/null +++ b/data/embeddings/tumblr_ry7gioasqv1zxewsp_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bddfb43005111603c36a539f1a3a75d6de35ca78a1588c1d48af1d6fa7ee986d +size 1664 diff --git a/data/embeddings/tumblr_ryb8tv9aru1vmobp0.npy b/data/embeddings/tumblr_ryb8tv9aru1vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..0f8f25a2b581d6885a7c7f6f6ee6a5144c223094 --- /dev/null +++ b/data/embeddings/tumblr_ryb8tv9aru1vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a22c6a34e19efe236e97d1325d5925acecd2af4d822bc71c62a443234f4c90b +size 1664 diff --git a/data/embeddings/tumblr_ryg007debm1qjnhqg.npy b/data/embeddings/tumblr_ryg007debm1qjnhqg.npy new file mode 100644 index 0000000000000000000000000000000000000000..8350fdb525eb47c2e6c8156bd9931076265892ed --- /dev/null +++ b/data/embeddings/tumblr_ryg007debm1qjnhqg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16608edec4a672ad9bcad5cff8b7eaf655616c06d358f2c5bc1c2b111c8e42ad +size 1664 diff --git a/data/embeddings/tumblr_ryjx4q1bke1y95toz.npy b/data/embeddings/tumblr_ryjx4q1bke1y95toz.npy new file mode 100644 index 0000000000000000000000000000000000000000..79c2165e1fb9698b6b5ee6f01d07e8faf7e57499 --- /dev/null +++ b/data/embeddings/tumblr_ryjx4q1bke1y95toz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d5a6826bb9920f35cf13736f4b38af9af952f3c5f003b021c9e0ce706f9d91 +size 1664 diff --git a/data/embeddings/tumblr_rz3xo8lkgq1vwyv80.npy b/data/embeddings/tumblr_rz3xo8lkgq1vwyv80.npy new file mode 100644 index 0000000000000000000000000000000000000000..144d7db34088745d3331abf34df2e5d052af1ad8 --- /dev/null +++ b/data/embeddings/tumblr_rz3xo8lkgq1vwyv80.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d23fc6af50783380d2a3b8f0e32cf349b0622e573bb0e9a90782d82a2c6156b +size 1664 diff --git a/data/embeddings/tumblr_rznavckbzp1a6wdmz_720.npy b/data/embeddings/tumblr_rznavckbzp1a6wdmz_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..98dd40ac07e4d3c3630a2767448f0604784b0641 --- /dev/null +++ b/data/embeddings/tumblr_rznavckbzp1a6wdmz_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27602873b839471c6a0d8448661d9c3d026c78477c7d4fec03ca05d1de6f75dc +size 1664 diff --git a/data/embeddings/tumblr_rzpkxhtszi1x4pmbc.npy b/data/embeddings/tumblr_rzpkxhtszi1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..5307f3c6d3aa2f16a823a2108bfc472b6237e16a --- /dev/null +++ b/data/embeddings/tumblr_rzpkxhtszi1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23cfd33c46b3fa71ca47a7f4be4c2c8e7e07415e672e569b0e4409b43e805920 +size 1664 diff --git a/data/embeddings/tumblr_s03vjpmxba1xfdj5z.npy b/data/embeddings/tumblr_s03vjpmxba1xfdj5z.npy new file mode 100644 index 0000000000000000000000000000000000000000..e98de07bcfb36f802b467693b9d3b1981e342c55 --- /dev/null +++ b/data/embeddings/tumblr_s03vjpmxba1xfdj5z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be43c6a8f45dbdb7a9f1b44f93b7c434d776160adfb60913ed3a49068222c5c +size 1664 diff --git a/data/embeddings/tumblr_s07m7vxz231a7joxk_720.npy b/data/embeddings/tumblr_s07m7vxz231a7joxk_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..bd9caf227185ad8c5d5730d92d3b1aaaded09168 --- /dev/null +++ b/data/embeddings/tumblr_s07m7vxz231a7joxk_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9272b93516d8493648792d4e01b357ff692448d0062934442b5e8d3742999759 +size 1664 diff --git a/data/embeddings/tumblr_s09x3pixvj1zl1zrz.npy b/data/embeddings/tumblr_s09x3pixvj1zl1zrz.npy new file mode 100644 index 0000000000000000000000000000000000000000..bf48e389dc1c9d369a32afec4130924dce376601 --- /dev/null +++ b/data/embeddings/tumblr_s09x3pixvj1zl1zrz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee372880b1037cda23534e1d6ab4118d1e3ae20f0e42249cb71401c7e2f605f7 +size 1664 diff --git a/data/embeddings/tumblr_s0gcdamuvq1v5t3ey.npy b/data/embeddings/tumblr_s0gcdamuvq1v5t3ey.npy new file mode 100644 index 0000000000000000000000000000000000000000..41279c783a540f4099bdbdd2227b91afd8aaa73f --- /dev/null +++ b/data/embeddings/tumblr_s0gcdamuvq1v5t3ey.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba901dc52e3900a9e6d19d231de746e6bb453b3ad932359d1e6c459ee19e89f +size 1664 diff --git a/data/embeddings/tumblr_s0grz74h561xgsqd0.npy b/data/embeddings/tumblr_s0grz74h561xgsqd0.npy new file mode 100644 index 0000000000000000000000000000000000000000..f9cf45e216dfb069f5f6da5ecf9e65b506573c61 --- /dev/null +++ b/data/embeddings/tumblr_s0grz74h561xgsqd0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb28ea381e54be5ffc4e6db3d661f5b7a9741c7d6fb6f8a7aefcb3210c78d99 +size 1664 diff --git a/data/embeddings/tumblr_s10h34cmmr1zj07jt.npy b/data/embeddings/tumblr_s10h34cmmr1zj07jt.npy new file mode 100644 index 0000000000000000000000000000000000000000..1b528ae32de9c8c9b01eeb21a14232ffb02d656d --- /dev/null +++ b/data/embeddings/tumblr_s10h34cmmr1zj07jt.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbccbaab24be9c366abd3783988776bf5ea2388d979127f214a3f7e9aa20c8c1 +size 1664 diff --git a/data/embeddings/tumblr_s15t5gfquq1rd9hsl.npy b/data/embeddings/tumblr_s15t5gfquq1rd9hsl.npy new file mode 100644 index 0000000000000000000000000000000000000000..530ac7a4cfbc2d5387514d42f77fa93f0646a62d --- /dev/null +++ b/data/embeddings/tumblr_s15t5gfquq1rd9hsl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29143176c55562efcc165469ba3cf4f7cec1f50754c8b14eecd5a30c866799a +size 1664 diff --git a/data/embeddings/tumblr_s16yqk43g81xddfa0.npy b/data/embeddings/tumblr_s16yqk43g81xddfa0.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f055066d66f381af6b70ceb7dacf9ab244fbbd9 --- /dev/null +++ b/data/embeddings/tumblr_s16yqk43g81xddfa0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8464dbf7fc4dabdd9854807c523765443dc9e173a451215fbfece6a0b1738ea6 +size 1664 diff --git a/data/embeddings/tumblr_s1ipcdvlrl1zf1e2z.npy b/data/embeddings/tumblr_s1ipcdvlrl1zf1e2z.npy new file mode 100644 index 0000000000000000000000000000000000000000..f12b642c1fca6b570cc309a3f2eae06b50612902 --- /dev/null +++ b/data/embeddings/tumblr_s1ipcdvlrl1zf1e2z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d808991d1c7f7551639de44c3398204463396cf99f2d4ee6d084e9120e9cc851 +size 1664 diff --git a/data/embeddings/tumblr_s1iyd6p8md1u890nd.npy b/data/embeddings/tumblr_s1iyd6p8md1u890nd.npy new file mode 100644 index 0000000000000000000000000000000000000000..f00d107fa5f0646f35eee53347cca3af1a9859f3 --- /dev/null +++ b/data/embeddings/tumblr_s1iyd6p8md1u890nd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ba88e3ba7c99d66fdf95ebc297be8f110e30a3ada811b80496a5c6ae532e89 +size 1664 diff --git a/data/embeddings/tumblr_s1kzp3zi7k1ykp17t.npy b/data/embeddings/tumblr_s1kzp3zi7k1ykp17t.npy new file mode 100644 index 0000000000000000000000000000000000000000..527c7d70c844e866b752214b332cfeb01d02c2cc --- /dev/null +++ b/data/embeddings/tumblr_s1kzp3zi7k1ykp17t.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebe55ce3ecb38dda537fb0f0eda11d95461fe8aa5c228ca3f867bf3f9ce04fe +size 1664 diff --git a/data/embeddings/tumblr_s1o3mldeot1zrdgct.npy b/data/embeddings/tumblr_s1o3mldeot1zrdgct.npy new file mode 100644 index 0000000000000000000000000000000000000000..d58fa8cc5549095e8c708549eb32d5cd5b62aa61 --- /dev/null +++ b/data/embeddings/tumblr_s1o3mldeot1zrdgct.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6029729172a5b359f3e6f459ce577d0bd9927bdc25afae9f37cfaca834c096 +size 1664 diff --git a/data/embeddings/tumblr_s1taj9tehe1a3apju.npy b/data/embeddings/tumblr_s1taj9tehe1a3apju.npy new file mode 100644 index 0000000000000000000000000000000000000000..5e775378d36bd49e95e6712a447b8ff6cd6f419b --- /dev/null +++ b/data/embeddings/tumblr_s1taj9tehe1a3apju.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c056937a69e7d6fff506a8cb13036ebdebdaa897bc52c9c10266da4f18124f +size 1664 diff --git a/data/embeddings/tumblr_s1vn9gpnhe1ujg2ay.npy b/data/embeddings/tumblr_s1vn9gpnhe1ujg2ay.npy new file mode 100644 index 0000000000000000000000000000000000000000..c13b8ec532083b5a44dfc0c5ce11f825ce5f8fb2 --- /dev/null +++ b/data/embeddings/tumblr_s1vn9gpnhe1ujg2ay.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d58daecbdf0e3dd79b1a4f1ced03fc4e34ced64d4d0c27b5412943ce0af4f1 +size 1664 diff --git a/data/embeddings/tumblr_s1zc80t5741z17rfw.npy b/data/embeddings/tumblr_s1zc80t5741z17rfw.npy new file mode 100644 index 0000000000000000000000000000000000000000..79833cf1ee6903fd5be70aef6a9d95c39620aad2 --- /dev/null +++ b/data/embeddings/tumblr_s1zc80t5741z17rfw.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de561be6748cc4a9c8ea095f93dd36341156b7eeb96cee75df78c2719369c1e +size 1664 diff --git a/data/embeddings/tumblr_s29dumma4s1z9bbv3.npy b/data/embeddings/tumblr_s29dumma4s1z9bbv3.npy new file mode 100644 index 0000000000000000000000000000000000000000..c73194e9ac5b20da9065dfa189a439cdf4ea253a --- /dev/null +++ b/data/embeddings/tumblr_s29dumma4s1z9bbv3.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98093fef568d9d035695214ac8c62a498ed309200a370e591d0c45dca48e39b +size 1664 diff --git a/data/embeddings/tumblr_s2co0y6tbw1rd9hsl.npy b/data/embeddings/tumblr_s2co0y6tbw1rd9hsl.npy new file mode 100644 index 0000000000000000000000000000000000000000..3d45f581bd79540de0f507526e30298557c210e2 --- /dev/null +++ b/data/embeddings/tumblr_s2co0y6tbw1rd9hsl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ba5ba44f331b84b272089f851a6e7cb092a26f987527ccce163b1fd0797d5ab +size 1664 diff --git a/data/embeddings/tumblr_s2cu8meq3t1w6jrbf.npy b/data/embeddings/tumblr_s2cu8meq3t1w6jrbf.npy new file mode 100644 index 0000000000000000000000000000000000000000..90ebd978f353fb612335a799bcef1c37ea6ef191 --- /dev/null +++ b/data/embeddings/tumblr_s2cu8meq3t1w6jrbf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17d174628c9494e81cb0f945bc872d6c1d8cf9e44a7dec9498884777f50695a +size 1664 diff --git a/data/embeddings/tumblr_s2dm9o0o1h1w5pr9j.npy b/data/embeddings/tumblr_s2dm9o0o1h1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..d3d837b90fbf52df4a287f7e42bce2dcc6ea5310 --- /dev/null +++ b/data/embeddings/tumblr_s2dm9o0o1h1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9fb0395a70a3fa0c4edf8e8920b644d00df6f4c2ac2aba3fec720f13083b8ec +size 1664 diff --git a/data/embeddings/tumblr_s2lylwy1qa1z7ukda.npy b/data/embeddings/tumblr_s2lylwy1qa1z7ukda.npy new file mode 100644 index 0000000000000000000000000000000000000000..ed6af05c39ead4c58d9b071ec45500b708d77ae8 --- /dev/null +++ b/data/embeddings/tumblr_s2lylwy1qa1z7ukda.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c84f26a1241b0dc828bc3a9011b62aa1bcbfac51b936d28149a097e2dd5f62 +size 1664 diff --git a/data/embeddings/tumblr_s2mkythsmv1a970kb.npy b/data/embeddings/tumblr_s2mkythsmv1a970kb.npy new file mode 100644 index 0000000000000000000000000000000000000000..27d5afbb6b93a4b99533eeab640b04d1e08fb010 --- /dev/null +++ b/data/embeddings/tumblr_s2mkythsmv1a970kb.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fda2b4af87f998b6d2436dafffa7c7a2e475490edbacf24d88f2b94f42c16219 +size 1664 diff --git a/data/embeddings/tumblr_s2pe2uwxq61ylh80v_720.npy b/data/embeddings/tumblr_s2pe2uwxq61ylh80v_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..16f92ae8f99aaa0c959eaa9bef3cd2defd884f69 --- /dev/null +++ b/data/embeddings/tumblr_s2pe2uwxq61ylh80v_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb45a70aea2686eaa0d52978747279adadd22a3d5334a1f24d10d9ed3762690 +size 1664 diff --git a/data/embeddings/tumblr_s2sfrtjsyw1tki7xk.npy b/data/embeddings/tumblr_s2sfrtjsyw1tki7xk.npy new file mode 100644 index 0000000000000000000000000000000000000000..46a83cf7d898f209f8663cc551664c4d586cb616 --- /dev/null +++ b/data/embeddings/tumblr_s2sfrtjsyw1tki7xk.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573d3739970125a59cc5f0483c5b29dff14ca3f547f4d352705fd3e2e1e49e7f +size 1664 diff --git a/data/embeddings/tumblr_s2vv7rs7oy1qa1gsx.npy b/data/embeddings/tumblr_s2vv7rs7oy1qa1gsx.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f661d5b63db9af9958670c8b74aac7e63259308 --- /dev/null +++ b/data/embeddings/tumblr_s2vv7rs7oy1qa1gsx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:833a0a35f61831acb37cabe426e5563bac844448b7c2f0b4a446088bb75e7154 +size 1664 diff --git a/data/embeddings/tumblr_s33xdn0jpm1tiu6k1.npy b/data/embeddings/tumblr_s33xdn0jpm1tiu6k1.npy new file mode 100644 index 0000000000000000000000000000000000000000..b0fc20efd3281df8e5c79e402bda82a44a4a33f5 --- /dev/null +++ b/data/embeddings/tumblr_s33xdn0jpm1tiu6k1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284934c0e147d243b4bfba8df88dba89f2f5a879459f12f4c825e2362d011664 +size 1664 diff --git a/data/embeddings/tumblr_s35qu6cgse1yq0dl2.npy b/data/embeddings/tumblr_s35qu6cgse1yq0dl2.npy new file mode 100644 index 0000000000000000000000000000000000000000..418063eb014395ef08d1bb0ce3e278fc792d85e0 --- /dev/null +++ b/data/embeddings/tumblr_s35qu6cgse1yq0dl2.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c53eaf0609174004071db1135c4377547a901a381293f97f8a4616a689f1b2 +size 1664 diff --git a/data/embeddings/tumblr_s3ag2z5llg1qe2obp.npy b/data/embeddings/tumblr_s3ag2z5llg1qe2obp.npy new file mode 100644 index 0000000000000000000000000000000000000000..6d40439a2c9d8ac67f84bda67ace723fbeedc2e7 --- /dev/null +++ b/data/embeddings/tumblr_s3ag2z5llg1qe2obp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94c04f12638b2876739337ad87c5f8432ab4bf16f6428f6cfec6c8437e2fdda +size 1664 diff --git a/data/embeddings/tumblr_s3dmdhyzez1xlgs6y.npy b/data/embeddings/tumblr_s3dmdhyzez1xlgs6y.npy new file mode 100644 index 0000000000000000000000000000000000000000..b4d88b0b229e5b5a493ca466f9d8ab573dec9bb5 --- /dev/null +++ b/data/embeddings/tumblr_s3dmdhyzez1xlgs6y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a252f4943dd9e392d0370c028170483baa7c11feb905441ef16e513c955e7915 +size 1664 diff --git a/data/embeddings/tumblr_s3mb4clkwu1a6j5zl.npy b/data/embeddings/tumblr_s3mb4clkwu1a6j5zl.npy new file mode 100644 index 0000000000000000000000000000000000000000..4e9df92405d70013f6fd5712d375df37a84b150e --- /dev/null +++ b/data/embeddings/tumblr_s3mb4clkwu1a6j5zl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183e8def51d2e6e5b4e04e62b11d3c6dee21e251aefe730b01b0412d3b551cce +size 1664 diff --git a/data/embeddings/tumblr_s3un5sbqgh1rd9hsl.npy b/data/embeddings/tumblr_s3un5sbqgh1rd9hsl.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bc2885e29d8e6f449ab6a285d1930af38a2beb9 --- /dev/null +++ b/data/embeddings/tumblr_s3un5sbqgh1rd9hsl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cacbe8dd2c3cb0c99ef60cbab4de52bd96d5815d76cee3bf3cb915db7565b2e7 +size 1664 diff --git a/data/embeddings/tumblr_s3wlukobx41sjhdwc.npy b/data/embeddings/tumblr_s3wlukobx41sjhdwc.npy new file mode 100644 index 0000000000000000000000000000000000000000..b98806f1b915dee6481eec40ca7bc1fe775ef3fe --- /dev/null +++ b/data/embeddings/tumblr_s3wlukobx41sjhdwc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0b0d5947491e1f1af7d2728e5017f417755a210e593d43fd74d8ed1ce63f49 +size 1664 diff --git a/data/embeddings/tumblr_s4cfa4aviy1wjjp2u.npy b/data/embeddings/tumblr_s4cfa4aviy1wjjp2u.npy new file mode 100644 index 0000000000000000000000000000000000000000..b93f6684f8c93fe9feed313a5bce5dae5f65509f --- /dev/null +++ b/data/embeddings/tumblr_s4cfa4aviy1wjjp2u.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321939da97e5af0741daad7139122e612e3d258dd04929834365d7ded05065b5 +size 1664 diff --git a/data/embeddings/tumblr_s4kidk5oi91ush256.npy b/data/embeddings/tumblr_s4kidk5oi91ush256.npy new file mode 100644 index 0000000000000000000000000000000000000000..27fde6eecd80cf1bedbc7a2c012524728aa8396b --- /dev/null +++ b/data/embeddings/tumblr_s4kidk5oi91ush256.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7bc2340345f7ba83f78fbe70f0271111ec9b213f06e2140630cd7133b918a4 +size 1664 diff --git a/data/embeddings/tumblr_s4rpwdx4cb1ykp17t_720.npy b/data/embeddings/tumblr_s4rpwdx4cb1ykp17t_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..12277f766d101ab6e941f048be85e417c9453723 --- /dev/null +++ b/data/embeddings/tumblr_s4rpwdx4cb1ykp17t_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f79730ba649fd99342af52bddb8cc16116ff2dc0417161bea615d71aabcfe9c +size 1664 diff --git a/data/embeddings/tumblr_s504nwjsye1ziw2k7_720.npy b/data/embeddings/tumblr_s504nwjsye1ziw2k7_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b2361ebbee0df4ea84ed37832f8ad729b3dd192 --- /dev/null +++ b/data/embeddings/tumblr_s504nwjsye1ziw2k7_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41df2f30087ccac4d09a7fbd57cf062216373747a5e3dfbc883aa0214f99d67 +size 1664 diff --git a/data/embeddings/tumblr_s5646eso9h1ziw2k7.npy b/data/embeddings/tumblr_s5646eso9h1ziw2k7.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4d9d6af57a51f9dba38863ecb2d78bd12492002 --- /dev/null +++ b/data/embeddings/tumblr_s5646eso9h1ziw2k7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ed3b1d3f88905270311d2cbe8274937c01e54ae620edcef41eb9c83042f57e +size 1664 diff --git a/data/embeddings/tumblr_s5bodx4o5b1anwy7r_720.npy b/data/embeddings/tumblr_s5bodx4o5b1anwy7r_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..d6576a86a345728892472a59b56181164db7b34c --- /dev/null +++ b/data/embeddings/tumblr_s5bodx4o5b1anwy7r_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9082ca197a772e6898f8ee82f5eb99f2d8e62dee8ff0de0e93930a4e1a01ad2 +size 1664 diff --git a/data/embeddings/tumblr_s5j2tgzjhd1sic8bl.npy b/data/embeddings/tumblr_s5j2tgzjhd1sic8bl.npy new file mode 100644 index 0000000000000000000000000000000000000000..50ff78ee6ec3bd10b6a973f80fb402b23ac01f1e --- /dev/null +++ b/data/embeddings/tumblr_s5j2tgzjhd1sic8bl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f704e929b97f56f56adbe5eb8f58e6a4bd79701c6821dfb6f844652cbeb5120 +size 1664 diff --git a/data/embeddings/tumblr_s5llqloh261sskw6c.npy b/data/embeddings/tumblr_s5llqloh261sskw6c.npy new file mode 100644 index 0000000000000000000000000000000000000000..eec57519af29e5801a17b983fa042e3cc35e14c6 --- /dev/null +++ b/data/embeddings/tumblr_s5llqloh261sskw6c.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289f286e8eda22485242b8592bdedd1da43cd11b2a99ad262998a6029ee75bc3 +size 1664 diff --git a/data/embeddings/tumblr_s5p9pdig6z1a4k8wu.npy b/data/embeddings/tumblr_s5p9pdig6z1a4k8wu.npy new file mode 100644 index 0000000000000000000000000000000000000000..ac1c7558680f2c1fa825fd3d7a0aa817bb50b9dd --- /dev/null +++ b/data/embeddings/tumblr_s5p9pdig6z1a4k8wu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74c6b4562215c800dd67409229e2ec7d5e0797f9085c129374d236f6b81d0db +size 1664 diff --git a/data/embeddings/tumblr_s5qy9jdwpq1xlgs6y.npy b/data/embeddings/tumblr_s5qy9jdwpq1xlgs6y.npy new file mode 100644 index 0000000000000000000000000000000000000000..55c61242710d636f82dc7b70667e836650bd5a3a --- /dev/null +++ b/data/embeddings/tumblr_s5qy9jdwpq1xlgs6y.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59b2a732ac65ae1f83a7b2db993f30540e6bf19213e9f340b13e248e38722a5 +size 1664 diff --git a/data/embeddings/tumblr_s66g2dqzma1qejbir.npy b/data/embeddings/tumblr_s66g2dqzma1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..ace386e2848c4e8b3d30e61bc725ffbf5a2d77a5 --- /dev/null +++ b/data/embeddings/tumblr_s66g2dqzma1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286c62354f77baced058acd9d0e5b540841a55523287e5701afed39b25fcd231 +size 1664 diff --git a/data/embeddings/tumblr_s67ox48vij1qejbir.npy b/data/embeddings/tumblr_s67ox48vij1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..40f675254b85bcb4a0e62e67d798db9b1b05cb76 --- /dev/null +++ b/data/embeddings/tumblr_s67ox48vij1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a50b76dddb0592d22c2d8fb5c3f59966e6c7853b716e04e3751cb5cafcf7e0 +size 1664 diff --git a/data/embeddings/tumblr_s6lhh2dlea1zkhi0f.npy b/data/embeddings/tumblr_s6lhh2dlea1zkhi0f.npy new file mode 100644 index 0000000000000000000000000000000000000000..28dda13f6c47432135b0648da9ef628567827c2e --- /dev/null +++ b/data/embeddings/tumblr_s6lhh2dlea1zkhi0f.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8067ddaa939f191dc94beb4bd04f484ac8fae4129ec1358444efbe918dbaf1 +size 1664 diff --git a/data/embeddings/tumblr_s6p7z1gmw11yanlki.npy b/data/embeddings/tumblr_s6p7z1gmw11yanlki.npy new file mode 100644 index 0000000000000000000000000000000000000000..c6500229a7ba382f54c492a489997fb01f65eace --- /dev/null +++ b/data/embeddings/tumblr_s6p7z1gmw11yanlki.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0459ee9341b19d7cd062018a05e034b11e3d69aac2950bdee64c1018a63fa6b +size 1664 diff --git a/data/embeddings/tumblr_s6us53pkxu1rqs4r5.npy b/data/embeddings/tumblr_s6us53pkxu1rqs4r5.npy new file mode 100644 index 0000000000000000000000000000000000000000..f317701f06b50e4951464b4fb683d84a53c32b1a --- /dev/null +++ b/data/embeddings/tumblr_s6us53pkxu1rqs4r5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609641e9e4d6698140fd7b3fc6a25d72d8909b6c8bf24a49dc84040d1142725a +size 1664 diff --git a/data/embeddings/tumblr_s74v0x12th1a3m7hi_720.npy b/data/embeddings/tumblr_s74v0x12th1a3m7hi_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..0b540be6a5432366c5c6ca4cc5d95c9f6b29a286 --- /dev/null +++ b/data/embeddings/tumblr_s74v0x12th1a3m7hi_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02aec7bae537de3c3640a8e4e60efc8702bb631dbc2b91f34273d01ad39bc108 +size 1664 diff --git a/data/embeddings/tumblr_s781ght1bd1wjjp2u.npy b/data/embeddings/tumblr_s781ght1bd1wjjp2u.npy new file mode 100644 index 0000000000000000000000000000000000000000..007c292dad8bec21757a14ad217b0861847cf852 --- /dev/null +++ b/data/embeddings/tumblr_s781ght1bd1wjjp2u.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8de45a5e0d8a571aac0296c935a58c46c323f0a3ca237fc747d22a2b8a087b +size 1664 diff --git a/data/embeddings/tumblr_s7f2p6ktml1qa1gsx.npy b/data/embeddings/tumblr_s7f2p6ktml1qa1gsx.npy new file mode 100644 index 0000000000000000000000000000000000000000..a1051f3aff04b33b37f0e21b091f654685c322a4 --- /dev/null +++ b/data/embeddings/tumblr_s7f2p6ktml1qa1gsx.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832f8be3bfc9e678bdc7b165fafd63ea255699eb647b87ed38f4e999e9fa4bcf +size 1664 diff --git a/data/embeddings/tumblr_s7fy56ckmy1z7uchi.npy b/data/embeddings/tumblr_s7fy56ckmy1z7uchi.npy new file mode 100644 index 0000000000000000000000000000000000000000..475d4d19802cdfa2f927234e94ae52bbee3bbd29 --- /dev/null +++ b/data/embeddings/tumblr_s7fy56ckmy1z7uchi.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16223f159e8822dcabb62db634cbea30b5df2c296bf9eb78b37be7513cafafac +size 1664 diff --git a/data/embeddings/tumblr_s7ozn9ncrx1zfq4a9.npy b/data/embeddings/tumblr_s7ozn9ncrx1zfq4a9.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d8bd189a8420f99167de519aa151391ef6f4c6c --- /dev/null +++ b/data/embeddings/tumblr_s7ozn9ncrx1zfq4a9.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8402d84ac27b13858f0253dbacd21f9c7be1a84ea6bd7f68ee0e9fa74a7bec +size 1664 diff --git a/data/embeddings/tumblr_s7tmqtomgp1vmobp0.npy b/data/embeddings/tumblr_s7tmqtomgp1vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..30f89e21cf0ee26ae3851f2d49aea5cf8648c381 --- /dev/null +++ b/data/embeddings/tumblr_s7tmqtomgp1vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50db3ac487774fb2fbd264f0e1769ff358ad548c79247a132aba8e753612b108 +size 1664 diff --git a/data/embeddings/tumblr_s7zfp3npg41vmobp0_720.npy b/data/embeddings/tumblr_s7zfp3npg41vmobp0_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..77e3a76711c6f75d4a16ee2fd77f062eb64e6337 --- /dev/null +++ b/data/embeddings/tumblr_s7zfp3npg41vmobp0_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3d43d0c8458a275e0eb8e95764eb4d79dd20e3138ad49d0cefd136b8a58f8b +size 1664 diff --git a/data/embeddings/tumblr_s8564mv19c1x4pmbc.npy b/data/embeddings/tumblr_s8564mv19c1x4pmbc.npy new file mode 100644 index 0000000000000000000000000000000000000000..a651e7c6152610c6864028628c6ea4f2d52ff352 --- /dev/null +++ b/data/embeddings/tumblr_s8564mv19c1x4pmbc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aae6a075ccb40f87d94f6e4574ad5e1f5894b3d0389abbbe7c966102b8acafa +size 1664 diff --git a/data/embeddings/tumblr_s86tvr1x9w1ap2y9o_720.npy b/data/embeddings/tumblr_s86tvr1x9w1ap2y9o_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..2288a1c74bbf67245f4457a8acc8627ee8b2385a --- /dev/null +++ b/data/embeddings/tumblr_s86tvr1x9w1ap2y9o_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa4434d58a4599703952cc141d6b714f019c23f44abf9abf04eee4431b6915c +size 1664 diff --git a/data/embeddings/tumblr_s8odyqj51j1sic8bl.npy b/data/embeddings/tumblr_s8odyqj51j1sic8bl.npy new file mode 100644 index 0000000000000000000000000000000000000000..83a647197b0dbbd0ed79a5de21380b876e1fd689 --- /dev/null +++ b/data/embeddings/tumblr_s8odyqj51j1sic8bl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a0aa535a5177f28be227aa8b2a273c236cca42996a79b02d1bbf1b6f6136f9 +size 1664 diff --git a/data/embeddings/tumblr_s96wvmpjyi1yzx85i.npy b/data/embeddings/tumblr_s96wvmpjyi1yzx85i.npy new file mode 100644 index 0000000000000000000000000000000000000000..71634e4fba3bdac4aa3a3288b4985f4ec36032f7 --- /dev/null +++ b/data/embeddings/tumblr_s96wvmpjyi1yzx85i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5fb3df91f2f3409e90ad4c456dae7ef265616116ef019dd63e29b80b0275175 +size 1664 diff --git a/data/embeddings/tumblr_s9813coagq1wpqb4v.npy b/data/embeddings/tumblr_s9813coagq1wpqb4v.npy new file mode 100644 index 0000000000000000000000000000000000000000..f14271edc84c610313b7603426f5e55db51aa87f --- /dev/null +++ b/data/embeddings/tumblr_s9813coagq1wpqb4v.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e335f5f73a6e83f4513c912ce405f17ebfb913fa5e4325a442a00a58c7efb472 +size 1664 diff --git a/data/embeddings/tumblr_s9orct4uaa1z7uchi.npy b/data/embeddings/tumblr_s9orct4uaa1z7uchi.npy new file mode 100644 index 0000000000000000000000000000000000000000..25aaa2186f502fbd8b0dadc33db948e1bf5a2024 --- /dev/null +++ b/data/embeddings/tumblr_s9orct4uaa1z7uchi.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca94e279c19b5c515a1303a75fd77333334bd99848f4f125babef085be5297fa +size 1664 diff --git a/data/embeddings/tumblr_s9qtf12ytp1zqsr34_720.npy b/data/embeddings/tumblr_s9qtf12ytp1zqsr34_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..afb7eccf8c8789fdeb17dce06e042ad829890d20 --- /dev/null +++ b/data/embeddings/tumblr_s9qtf12ytp1zqsr34_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08029c6016945aa57fc52d0017c91d5ead3e194fe601f151abb565dc9da5af59 +size 1664 diff --git a/data/embeddings/tumblr_s9rofeyyoo1api052.npy b/data/embeddings/tumblr_s9rofeyyoo1api052.npy new file mode 100644 index 0000000000000000000000000000000000000000..5255efb4ec8719ed06de1cad783156bad1ba7667 --- /dev/null +++ b/data/embeddings/tumblr_s9rofeyyoo1api052.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906a106edbe51bde67378c0ab81d441cd6024eab5625f614a94fa82b14817f62 +size 1664 diff --git a/data/embeddings/tumblr_s9sa6xfw9g1zohbkd.npy b/data/embeddings/tumblr_s9sa6xfw9g1zohbkd.npy new file mode 100644 index 0000000000000000000000000000000000000000..782491b02ad8af52e460470d03e4cb3e935b386e --- /dev/null +++ b/data/embeddings/tumblr_s9sa6xfw9g1zohbkd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28bf999aed2f02f701b0560637561425300bb28612d8f9e75af9e283cad2e443 +size 1664 diff --git a/data/embeddings/tumblr_sa5vsjcp1a1v7xdh6.npy b/data/embeddings/tumblr_sa5vsjcp1a1v7xdh6.npy new file mode 100644 index 0000000000000000000000000000000000000000..ef3d95ff0d180720f172d34d68b4adaf7ef90600 --- /dev/null +++ b/data/embeddings/tumblr_sa5vsjcp1a1v7xdh6.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ccb7abb2adf753bca92ac7dd41b278d104ed5fcc13dd444f5828f05a61e7c2 +size 1664 diff --git a/data/embeddings/tumblr_sakae7p0ie1a7lp2h.npy b/data/embeddings/tumblr_sakae7p0ie1a7lp2h.npy new file mode 100644 index 0000000000000000000000000000000000000000..62f37f5ae06dfea07c39b771d59d6df1ad38c0ff --- /dev/null +++ b/data/embeddings/tumblr_sakae7p0ie1a7lp2h.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4fbfc3942543860e93383dd474b4655558a5a531c56c602fa48e6c6774f7203 +size 1664 diff --git a/data/embeddings/tumblr_sam50zvgby1qijjtj_720.npy b/data/embeddings/tumblr_sam50zvgby1qijjtj_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..210ac766771290ae922faf3025a762367725ae3d --- /dev/null +++ b/data/embeddings/tumblr_sam50zvgby1qijjtj_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99d4ec2d2e1751d123ff4805e0ded2b51eebd57709f6ba159d5eff2e5025f16 +size 1664 diff --git a/data/embeddings/tumblr_sanbg8usdy1a7lp2h.npy b/data/embeddings/tumblr_sanbg8usdy1a7lp2h.npy new file mode 100644 index 0000000000000000000000000000000000000000..63f690f5f941bd8b9dd44cd595efe92c7f97cfcf --- /dev/null +++ b/data/embeddings/tumblr_sanbg8usdy1a7lp2h.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0e57783c840e6f3ec45e9cc5fca7ef532f289781967044aa3684068c782b76 +size 1664 diff --git a/data/embeddings/tumblr_sanw5vgrnw1wz3nj5.npy b/data/embeddings/tumblr_sanw5vgrnw1wz3nj5.npy new file mode 100644 index 0000000000000000000000000000000000000000..947e61068ed02f7dbdcefced6819d6893974ab4e --- /dev/null +++ b/data/embeddings/tumblr_sanw5vgrnw1wz3nj5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c795f564c719fdfcc6bf3e6833aff0643de44a110b7bcb6ff1f524e6ae26c37 +size 1664 diff --git a/data/embeddings/tumblr_sbghtgrttx1rd9hsl.npy b/data/embeddings/tumblr_sbghtgrttx1rd9hsl.npy new file mode 100644 index 0000000000000000000000000000000000000000..de03c4f1f4a838cbbe36164462569c4681cc6379 --- /dev/null +++ b/data/embeddings/tumblr_sbghtgrttx1rd9hsl.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe232d33525d44131cd3d6b15c18d08f74787f97a96b950fe6ab415ac2bfbef +size 1664 diff --git a/data/embeddings/tumblr_sbn13g78ar1u5zg7m.npy b/data/embeddings/tumblr_sbn13g78ar1u5zg7m.npy new file mode 100644 index 0000000000000000000000000000000000000000..8230b717b91a985b9597a87e7fd022aadcabdf26 --- /dev/null +++ b/data/embeddings/tumblr_sbn13g78ar1u5zg7m.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b13818a8af47154fd5ff89f1d9047e5abb8e53a624ea3e9b7dad1bc1a5778aa +size 1664 diff --git a/data/embeddings/tumblr_sbrdxcjqvk1uzmmfy.npy b/data/embeddings/tumblr_sbrdxcjqvk1uzmmfy.npy new file mode 100644 index 0000000000000000000000000000000000000000..edff88f7886021b448e5627f36b9a433eec8b251 --- /dev/null +++ b/data/embeddings/tumblr_sbrdxcjqvk1uzmmfy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774e149e72dc0407ba8085b7cc4ce4a1b13ab8945714939f33237aefa306411a +size 1664 diff --git a/data/embeddings/tumblr_sbsphtzpcs1wz3nj5.npy b/data/embeddings/tumblr_sbsphtzpcs1wz3nj5.npy new file mode 100644 index 0000000000000000000000000000000000000000..7ef70b66d6e75fe7dc14c86356643ee89c13c405 --- /dev/null +++ b/data/embeddings/tumblr_sbsphtzpcs1wz3nj5.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64f230f30ccc663b7ff05d9f92cd8e7834c00c33146f14c2a2ba0bff4316e00f +size 1664 diff --git a/data/embeddings/tumblr_sc39bairxa1r5ygmd.npy b/data/embeddings/tumblr_sc39bairxa1r5ygmd.npy new file mode 100644 index 0000000000000000000000000000000000000000..22c966d40971450ea2c7c9b636d2eca2ceef7ee6 --- /dev/null +++ b/data/embeddings/tumblr_sc39bairxa1r5ygmd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ed3cb9ae5a7b68fa20392c8a79bd5fd37492969208f5075ef553eb62545e67 +size 1664 diff --git a/data/embeddings/tumblr_sc3odbwh9w1xxyguz.npy b/data/embeddings/tumblr_sc3odbwh9w1xxyguz.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b090e97d1d2583c8814ee93e2e5742e8a69d10 --- /dev/null +++ b/data/embeddings/tumblr_sc3odbwh9w1xxyguz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7b2ce6aa7b52cfdb328e75fb7cc122330224f64b02a1d3a227a15f3d560b91 +size 1664 diff --git a/data/embeddings/tumblr_sc9fjwg6sh1rqf6td_720.npy b/data/embeddings/tumblr_sc9fjwg6sh1rqf6td_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..08285818cb9a6de57c4f0823a36c878d25e250d2 --- /dev/null +++ b/data/embeddings/tumblr_sc9fjwg6sh1rqf6td_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367474b93cce97379011f8b2ab88ce4f14447fcf39382cc99ab59196833e1a01 +size 1664 diff --git a/data/embeddings/tumblr_scedf6cea61rmet4a_720.npy b/data/embeddings/tumblr_scedf6cea61rmet4a_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..ddb3cfa95784be0bd3b40ac4dc8c448711e6a823 --- /dev/null +++ b/data/embeddings/tumblr_scedf6cea61rmet4a_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d0845bde9d029ba138243d57637cb3895b605e98255b791f25335393888eac +size 1664 diff --git a/data/embeddings/tumblr_sd9zzmto5i1vmobp0.npy b/data/embeddings/tumblr_sd9zzmto5i1vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..11fdd2d6349bdd7db123b364ee996df2b49ac2bb --- /dev/null +++ b/data/embeddings/tumblr_sd9zzmto5i1vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee395b4b16c76111a1ca443b49fa05d9f9be09d1947f5359fc9410e9f713925 +size 1664 diff --git a/data/embeddings/tumblr_sdc3gd1iwt1sgnr3g_720.npy b/data/embeddings/tumblr_sdc3gd1iwt1sgnr3g_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..8029299f72beeb64306b0373a89e6a1c12d37e8f --- /dev/null +++ b/data/embeddings/tumblr_sdc3gd1iwt1sgnr3g_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e198fd17b7b2c3c52d9e8fe3074c312ff44d65474b10f228f19f16d42f6d1e +size 1664 diff --git a/data/embeddings/tumblr_sdenqttafm1uvmvyd_720.npy b/data/embeddings/tumblr_sdenqttafm1uvmvyd_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c498026ad9de0a505d093951b7cfd7c75ed04f2 --- /dev/null +++ b/data/embeddings/tumblr_sdenqttafm1uvmvyd_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c4216b423eba1909966af82a421feefbfa574e5f895d2282edee826edd3f021 +size 1664 diff --git a/data/embeddings/tumblr_sdkyheltvd1qa94kp.npy b/data/embeddings/tumblr_sdkyheltvd1qa94kp.npy new file mode 100644 index 0000000000000000000000000000000000000000..65063ff80f10d4aa78e55972179283fae35d7b3c --- /dev/null +++ b/data/embeddings/tumblr_sdkyheltvd1qa94kp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83dd02d5fc37bd89960d413457ebb31ea56daf12e45f0bf4dfef0f3957c8556b +size 1664 diff --git a/data/embeddings/tumblr_sdzwy0mmys1z5jfe7.npy b/data/embeddings/tumblr_sdzwy0mmys1z5jfe7.npy new file mode 100644 index 0000000000000000000000000000000000000000..94279987ab9053227c3185195db9702919014fcf --- /dev/null +++ b/data/embeddings/tumblr_sdzwy0mmys1z5jfe7.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd572f2a261233a9e765791e5f82d49e42befdee349a937b2ea942fcdde5b40 +size 1664 diff --git a/data/embeddings/tumblr_sfwuavf8ha1w5pr9j.npy b/data/embeddings/tumblr_sfwuavf8ha1w5pr9j.npy new file mode 100644 index 0000000000000000000000000000000000000000..32b351dac56ddbfbf6a19143f0251c3c8a508233 --- /dev/null +++ b/data/embeddings/tumblr_sfwuavf8ha1w5pr9j.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9da35ea3e4034467b77e8d51e7fa28d3a87e6fa09141ac0322cc185d5176900 +size 1664 diff --git a/data/embeddings/tumblr_sh1qcr7cjb1trqggv.npy b/data/embeddings/tumblr_sh1qcr7cjb1trqggv.npy new file mode 100644 index 0000000000000000000000000000000000000000..556aa45a93b55caf61cd8ab4c6d94e1a4a95622c --- /dev/null +++ b/data/embeddings/tumblr_sh1qcr7cjb1trqggv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed7add29a816ef9f69f6830df6992b006ba09b0e12ec7e6014f25bb09d9d79f +size 1664 diff --git a/data/embeddings/tumblr_shec5jdz8y1urgf8d_720.npy b/data/embeddings/tumblr_shec5jdz8y1urgf8d_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..069d42834d468dbd253715d57e302b9eebbbaf99 --- /dev/null +++ b/data/embeddings/tumblr_shec5jdz8y1urgf8d_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad6949e878d578308a9541c42c7be82e1f1f6122160cc06268414750bc1bacf +size 1664 diff --git a/data/embeddings/tumblr_shmz6ymp0b1y8aven_720.npy b/data/embeddings/tumblr_shmz6ymp0b1y8aven_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d5c149de0c93f70dd508d30c74f8a14c5f44865 --- /dev/null +++ b/data/embeddings/tumblr_shmz6ymp0b1y8aven_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:904d3b70d51297b25734ea56f18933a2b8bba5503a008509ef014c9b1b35451b +size 1664 diff --git a/data/embeddings/tumblr_shwgmx5pew1vmobp0.npy b/data/embeddings/tumblr_shwgmx5pew1vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..288c203d8ddba3210746042fff78b3f063d512f6 --- /dev/null +++ b/data/embeddings/tumblr_shwgmx5pew1vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b566a21c355e28495ece1d3999af41afa91918e38235a930d6f0d1e0d68b028d +size 1664 diff --git a/data/embeddings/tumblr_shx8nb9kkb1rsisu2_720.npy b/data/embeddings/tumblr_shx8nb9kkb1rsisu2_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..ae437f863e2eabb4999fff1a6555e639b0691938 --- /dev/null +++ b/data/embeddings/tumblr_shx8nb9kkb1rsisu2_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872900c0a6ea41d2d4dc004a5513a37fce6039e23596876b14e7cf35cd962f9e +size 1664 diff --git a/data/embeddings/tumblr_shxowi58gb1qc775s.npy b/data/embeddings/tumblr_shxowi58gb1qc775s.npy new file mode 100644 index 0000000000000000000000000000000000000000..55759bbcc9162855b623a3fd7a04b911a5ac3188 --- /dev/null +++ b/data/embeddings/tumblr_shxowi58gb1qc775s.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd410a1fcd1c34b10e4ff5d0581e6f6be6cfb9c2dccf192c99d23f7c6c80a4eb +size 1664 diff --git a/data/embeddings/tumblr_si2wq4a2an1rl30t8.npy b/data/embeddings/tumblr_si2wq4a2an1rl30t8.npy new file mode 100644 index 0000000000000000000000000000000000000000..a2b6603cf2c60466c6243a8a23e72fa43e5835cc --- /dev/null +++ b/data/embeddings/tumblr_si2wq4a2an1rl30t8.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883f8b83b44506d34287299e149cade647e4b787b93e6cab45ab3da5fd904ac2 +size 1664 diff --git a/data/embeddings/tumblr_siecgnqj0q1ydpti4_r1_72.npy b/data/embeddings/tumblr_siecgnqj0q1ydpti4_r1_72.npy new file mode 100644 index 0000000000000000000000000000000000000000..835615924b0bf0fe2f38339383c3aa68d7655298 --- /dev/null +++ b/data/embeddings/tumblr_siecgnqj0q1ydpti4_r1_72.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76342f60db6025381063fc35d4cbb35a2ae48daf76369bc580969117c43686e3 +size 1664 diff --git a/data/embeddings/tumblr_sifk2tuq9i1a83ahu_720.npy b/data/embeddings/tumblr_sifk2tuq9i1a83ahu_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..77e819cf3cf4177f7ff885e7d89a191d89e90e80 --- /dev/null +++ b/data/embeddings/tumblr_sifk2tuq9i1a83ahu_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c6744f997ac4101d90a581110c76af9fd97ed3facddb4bb621e18c7fb87f5a +size 1664 diff --git a/data/embeddings/tumblr_simwuepihj1yq0dl2_720.npy b/data/embeddings/tumblr_simwuepihj1yq0dl2_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..5303ca2274fe7f657f8c51a6dde9871d3aa00b55 --- /dev/null +++ b/data/embeddings/tumblr_simwuepihj1yq0dl2_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3852fb987ec8f2a73abfbc44eccd4162910be4b1695f30015c0d0e55fb316da +size 1664 diff --git a/data/embeddings/tumblr_sinb1ryett1zb40j0.npy b/data/embeddings/tumblr_sinb1ryett1zb40j0.npy new file mode 100644 index 0000000000000000000000000000000000000000..9338eaaa83f040a18ded5562866ebcb03e9be2f3 --- /dev/null +++ b/data/embeddings/tumblr_sinb1ryett1zb40j0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa37af0ad708ddf055cc2d566fff9baad8a8da3639035f82b1facd5c3410cbc +size 1664 diff --git a/data/embeddings/tumblr_sio3wmehw91y8aven.npy b/data/embeddings/tumblr_sio3wmehw91y8aven.npy new file mode 100644 index 0000000000000000000000000000000000000000..77dd577771cf2ce7761062fe063c6ee120a355fd --- /dev/null +++ b/data/embeddings/tumblr_sio3wmehw91y8aven.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f78cd916258125139d9f17e9069e3cb6ad566e1e56c555b6f19226de400208b +size 1664 diff --git a/data/embeddings/tumblr_sirm24i4jy1yzbs45.npy b/data/embeddings/tumblr_sirm24i4jy1yzbs45.npy new file mode 100644 index 0000000000000000000000000000000000000000..fc142f40da8cfe7294babe3154d3d7fca25c334f --- /dev/null +++ b/data/embeddings/tumblr_sirm24i4jy1yzbs45.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebd286ac30110d521d86d8cc145a2d506f86f5351112fb4c076998ea5df62c55 +size 1664 diff --git a/data/embeddings/tumblr_sj64juhf4t1yzx85i.npy b/data/embeddings/tumblr_sj64juhf4t1yzx85i.npy new file mode 100644 index 0000000000000000000000000000000000000000..353821d164047eeab1d7519bb6a68197b272cdab --- /dev/null +++ b/data/embeddings/tumblr_sj64juhf4t1yzx85i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741dae23902735cc950db0035d05ae50368e3c7ec057fd0d1c21fa233e83fa1a +size 1664 diff --git a/data/embeddings/tumblr_sj64q4hjok1yzx85i.npy b/data/embeddings/tumblr_sj64q4hjok1yzx85i.npy new file mode 100644 index 0000000000000000000000000000000000000000..81e6309fffbb771b4517c9c002fe16ceae965acf --- /dev/null +++ b/data/embeddings/tumblr_sj64q4hjok1yzx85i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555c0ed9dcad1455fb501cbb556dfcd693dcd180c04ae48a85d8d970480e9817 +size 1664 diff --git a/data/embeddings/tumblr_sj90eoftzy1zqsr34_720.npy b/data/embeddings/tumblr_sj90eoftzy1zqsr34_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..5a91332153565b2c2a9ee599b2be7be4762329d8 --- /dev/null +++ b/data/embeddings/tumblr_sj90eoftzy1zqsr34_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761c8d2809e3e6d4b40516102722673c2cd1e6bce6e449617580f3e28d7e50fb +size 1664 diff --git a/data/embeddings/tumblr_sji4ycnwda1wz3nj51.npy b/data/embeddings/tumblr_sji4ycnwda1wz3nj51.npy new file mode 100644 index 0000000000000000000000000000000000000000..0d6eeeab468db24317944da33face66931b7542e --- /dev/null +++ b/data/embeddings/tumblr_sji4ycnwda1wz3nj51.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1de192e5c81574ee28a873b4641467ca8a39993257c0f6df2438514dd45500 +size 1664 diff --git a/data/embeddings/tumblr_sjuh1zrokr1sjcnrz.npy b/data/embeddings/tumblr_sjuh1zrokr1sjcnrz.npy new file mode 100644 index 0000000000000000000000000000000000000000..766002be310b123e1e5cae994715c45da455d107 --- /dev/null +++ b/data/embeddings/tumblr_sjuh1zrokr1sjcnrz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd960fb96e32166217d9d4e8a27e0f7020cbb00192368e3b0faf9efde98be83 +size 1664 diff --git a/data/embeddings/tumblr_sjxpenuh7a1zjppxl_720.npy b/data/embeddings/tumblr_sjxpenuh7a1zjppxl_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..474ff5bc591a9b67eec9e3ea60b5c4e79e3877d8 --- /dev/null +++ b/data/embeddings/tumblr_sjxpenuh7a1zjppxl_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0917d3b6b4c3adcd32a0c75331735ba7a15b2f45046081c7665a88605bfe151a +size 1664 diff --git a/data/embeddings/tumblr_sklg9h8jxl1avf4jv.npy b/data/embeddings/tumblr_sklg9h8jxl1avf4jv.npy new file mode 100644 index 0000000000000000000000000000000000000000..5a30f048bc9692a676e73f8856c80b2931b10dbb --- /dev/null +++ b/data/embeddings/tumblr_sklg9h8jxl1avf4jv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ba1b185e3df052d9630a578fadce636cda23d680732b07ed4112f71e94d579 +size 1664 diff --git a/data/embeddings/tumblr_smxtl1tqpo1r85rfb.npy b/data/embeddings/tumblr_smxtl1tqpo1r85rfb.npy new file mode 100644 index 0000000000000000000000000000000000000000..fe39d4c7c058f998f39e4642b8795e167b8b4698 --- /dev/null +++ b/data/embeddings/tumblr_smxtl1tqpo1r85rfb.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b1b2d00bbbc952e839de8b496a1b320d7fcceb478e33976774196b7699bcd2 +size 1664 diff --git a/data/embeddings/tumblr_snhfuk9ece1a8rzft.npy b/data/embeddings/tumblr_snhfuk9ece1a8rzft.npy new file mode 100644 index 0000000000000000000000000000000000000000..d0efdc5ba422b426eaf213e09c9749f8b7652e9f --- /dev/null +++ b/data/embeddings/tumblr_snhfuk9ece1a8rzft.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b69fc6242b1befc46d6c27b5a580efa2dc6dd54122a31204c0bf97bd9bc1b41 +size 1664 diff --git a/data/embeddings/tumblr_snyan7mwm21sk87qz.npy b/data/embeddings/tumblr_snyan7mwm21sk87qz.npy new file mode 100644 index 0000000000000000000000000000000000000000..b27724e30d0896f116368fd6793274cfe0e2bc17 --- /dev/null +++ b/data/embeddings/tumblr_snyan7mwm21sk87qz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27f3640b663914885fc5aed2a615ab839ece8e43e126f49a82a4ad41f6171cfb +size 1664 diff --git a/data/embeddings/tumblr_so9gkwgghf1ac5m7s.npy b/data/embeddings/tumblr_so9gkwgghf1ac5m7s.npy new file mode 100644 index 0000000000000000000000000000000000000000..246c26ef227347b56e1d8c6af1959f472cce0ca2 --- /dev/null +++ b/data/embeddings/tumblr_so9gkwgghf1ac5m7s.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354314abb3df3e55c4c7c884723a0defb7da7bb3d76aa93c6201a2b92b91a418 +size 1664 diff --git a/data/embeddings/tumblr_spxiuqktsa1ykp17t.npy b/data/embeddings/tumblr_spxiuqktsa1ykp17t.npy new file mode 100644 index 0000000000000000000000000000000000000000..c0056f37ca40f7fb29588c498ce6abd895cfe144 --- /dev/null +++ b/data/embeddings/tumblr_spxiuqktsa1ykp17t.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5366fb35c66a340165bbf1fc12829e946df799c07735c88191eae2b181a343e0 +size 1664 diff --git a/data/embeddings/tumblr_sq6rgoimbb1uynlhc.npy b/data/embeddings/tumblr_sq6rgoimbb1uynlhc.npy new file mode 100644 index 0000000000000000000000000000000000000000..007471afff3102fe33238fe0dcddbad2c6d2f407 --- /dev/null +++ b/data/embeddings/tumblr_sq6rgoimbb1uynlhc.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c986dee19cc250fe28fc2e62483c2acf4e141bf28f518a05e07f6c252d192932 +size 1664 diff --git a/data/embeddings/tumblr_sq94v1r8pl1qejbir.npy b/data/embeddings/tumblr_sq94v1r8pl1qejbir.npy new file mode 100644 index 0000000000000000000000000000000000000000..ce7200b75249f47bac6cc7a4da49dc9de11a2159 --- /dev/null +++ b/data/embeddings/tumblr_sq94v1r8pl1qejbir.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a9939c960a89403da7219b2714d07dd3c43ed9e7654b56d317941d00463ab9 +size 1664 diff --git a/data/embeddings/tumblr_sqjyjynlb61vmobp0.npy b/data/embeddings/tumblr_sqjyjynlb61vmobp0.npy new file mode 100644 index 0000000000000000000000000000000000000000..d448a2fa3941b5e683efeaaca8125fa575139a0a --- /dev/null +++ b/data/embeddings/tumblr_sqjyjynlb61vmobp0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9da4ea99b4c3ee9fd2513e7bf7c2fccd10efe3b5755cf0f5f83a64ef55fa41c +size 1664 diff --git a/data/embeddings/tumblr_sqkhd7clw61u1sr7e_720.npy b/data/embeddings/tumblr_sqkhd7clw61u1sr7e_720.npy new file mode 100644 index 0000000000000000000000000000000000000000..c444246fa786033f30c4940394f7ecc516310f81 --- /dev/null +++ b/data/embeddings/tumblr_sqkhd7clw61u1sr7e_720.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19dad2348d12b5efb835268f1a90f738f5fd48b8f8ac6219bb93b895bd7fdd9d +size 1664 diff --git a/data/embeddings/tvufz5dw0rjpsg7z.npy b/data/embeddings/tvufz5dw0rjpsg7z.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee9bbaba587cc0a964a72504db0c6fdd8a160710 --- /dev/null +++ b/data/embeddings/tvufz5dw0rjpsg7z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465410b84a8a64ad7455971047c5aa9b13592ef4202dab1793aca5a485d7289a +size 1664 diff --git a/data/embeddings/u0yi53mnelq2bxct.npy b/data/embeddings/u0yi53mnelq2bxct.npy new file mode 100644 index 0000000000000000000000000000000000000000..5af4f39d360b90950ec1fade632b786481a47ed3 --- /dev/null +++ b/data/embeddings/u0yi53mnelq2bxct.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f73e1c3094bab2f34310c3e98effb8ab017bce4031e89b2fbe8f4551301377cb +size 1664 diff --git a/data/embeddings/u61sgsdrmblmoy.npy b/data/embeddings/u61sgsdrmblmoy.npy new file mode 100644 index 0000000000000000000000000000000000000000..24f51a39784c026e053a53b15448453d42d39cb5 --- /dev/null +++ b/data/embeddings/u61sgsdrmblmoy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89d82f1bcc7a15d84fb18ceec5066031bc0dbd130be0b959e61756bfab2eb2d +size 1664 diff --git a/data/embeddings/u9atm9euatncqz8x.npy b/data/embeddings/u9atm9euatncqz8x.npy new file mode 100644 index 0000000000000000000000000000000000000000..eaafb76df4aa6ae95eba3bb90458afe347477132 --- /dev/null +++ b/data/embeddings/u9atm9euatncqz8x.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a0b7962c005f0ba6c13de18f64489a72a0233e091d84924155684ebbc6a960 +size 1664 diff --git a/data/embeddings/uarlwqafome5rvsy.npy b/data/embeddings/uarlwqafome5rvsy.npy new file mode 100644 index 0000000000000000000000000000000000000000..8800e1a6694d95899b93486ab4be307a40cf9a1c --- /dev/null +++ b/data/embeddings/uarlwqafome5rvsy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1450412f70ebfeb44ac3b2bcfbe59c03719ceb0f3f69dcef32943b3f460538f0 +size 1664 diff --git a/data/embeddings/ub48zwha9mglvscf.npy b/data/embeddings/ub48zwha9mglvscf.npy new file mode 100644 index 0000000000000000000000000000000000000000..36ff3b7d424092ec859abb22277c2b07c88f0150 --- /dev/null +++ b/data/embeddings/ub48zwha9mglvscf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5542a0ee7ebc4a0e11ad1af523ca0d1419b2334fbee68c440de23f199f990eb9 +size 1664 diff --git a/data/embeddings/ubipiysjmtittcub.npy b/data/embeddings/ubipiysjmtittcub.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a4d0d6b7c08b342a8620af422eaf6d43b5fae4 --- /dev/null +++ b/data/embeddings/ubipiysjmtittcub.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a06dc66a75ea23e0ffce279f87461b6c7aea185b2a8afac1ed881b768ef125 +size 1664 diff --git a/data/embeddings/ubks40ejcwx0ltzf.npy b/data/embeddings/ubks40ejcwx0ltzf.npy new file mode 100644 index 0000000000000000000000000000000000000000..980af4aefdc8e38541094ae4e8be1671b1b033c4 --- /dev/null +++ b/data/embeddings/ubks40ejcwx0ltzf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91575ac714049bd33b4f071b99e15d64c625ea1f8577c9641cc1f9533eea53fd +size 1664 diff --git a/data/embeddings/uirkojdhq8grlz66.npy b/data/embeddings/uirkojdhq8grlz66.npy new file mode 100644 index 0000000000000000000000000000000000000000..9475a9f05586b7593d3b1a8bc0d2acfe915b91b3 --- /dev/null +++ b/data/embeddings/uirkojdhq8grlz66.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:156523b512e1a159a01a78ba957342a72ef3971ae7c21576ce6536ab5c3e6bfe +size 1664 diff --git a/data/embeddings/unknown.npy b/data/embeddings/unknown.npy new file mode 100644 index 0000000000000000000000000000000000000000..47aade23796b6df6fdbb725df58522246efba43c --- /dev/null +++ b/data/embeddings/unknown.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499586a998dada5007cc157c3873d60d3d1555b4f89bac9e976aa46d5d096a7a +size 1664 diff --git a/data/embeddings/untitled.npy b/data/embeddings/untitled.npy new file mode 100644 index 0000000000000000000000000000000000000000..744ca20407d8605da283ab931e65fb65ad817828 --- /dev/null +++ b/data/embeddings/untitled.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7884ca208d2174d7beba235dab4078edcf8433ec3bdddb5cebafc0d24557088 +size 1664 diff --git a/data/embeddings/uucpry6jdxf1bxyy.npy b/data/embeddings/uucpry6jdxf1bxyy.npy new file mode 100644 index 0000000000000000000000000000000000000000..59a8f587e93355f74a56b53956fb802161365bf5 --- /dev/null +++ b/data/embeddings/uucpry6jdxf1bxyy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31fd693d7fa03a2559e212939ad7bc10c61c18f72ded87af6782f004be7310d8 +size 1664 diff --git a/data/embeddings/v0f044gc0000clad09vog65v4saabt.npy b/data/embeddings/v0f044gc0000clad09vog65v4saabt.npy new file mode 100644 index 0000000000000000000000000000000000000000..4efa6500f1ba5c67054739957c108856b2d242c6 --- /dev/null +++ b/data/embeddings/v0f044gc0000clad09vog65v4saabt.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4f83d07ee3b77ff734cc3c536c9b7da9b7bb73a0337943584dc909cf58531a +size 1664 diff --git a/data/embeddings/v10044g50000cf92jsbc77u73egs6q.npy b/data/embeddings/v10044g50000cf92jsbc77u73egs6q.npy new file mode 100644 index 0000000000000000000000000000000000000000..96a02287455f45071dbec1f73de87483d06fa019 --- /dev/null +++ b/data/embeddings/v10044g50000cf92jsbc77u73egs6q.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22afd37d62726853e3a0d7758a4b1703b0e1bb3eb7f1fa11e93b4e0390fdbba +size 1664 diff --git a/data/embeddings/v12044gd0000cc1hfmrc77ud2dqtcs.npy b/data/embeddings/v12044gd0000cc1hfmrc77ud2dqtcs.npy new file mode 100644 index 0000000000000000000000000000000000000000..00f30ee27ceb91bfd162f269f37775032f981c8b --- /dev/null +++ b/data/embeddings/v12044gd0000cc1hfmrc77ud2dqtcs.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac95527861a85f51d5b71798cd1acffec8fa7ae5a3fb4226e5a06022f290ae3 +size 1664 diff --git a/data/embeddings/v12044gd0000cotrptvog65qirmgnb.npy b/data/embeddings/v12044gd0000cotrptvog65qirmgnb.npy new file mode 100644 index 0000000000000000000000000000000000000000..30c08a0e5a1abdbfb18f2ada33297c5639416fe3 --- /dev/null +++ b/data/embeddings/v12044gd0000cotrptvog65qirmgnb.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937ad2c3d1398cf028f8533a349c57d411f089caae5f6a04f2c0bce8a8adaee6 +size 1664 diff --git a/data/embeddings/v7lcjujjlkm52a2q.npy b/data/embeddings/v7lcjujjlkm52a2q.npy new file mode 100644 index 0000000000000000000000000000000000000000..b824a219705b773958d5096701d56821e02a1545 --- /dev/null +++ b/data/embeddings/v7lcjujjlkm52a2q.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f84e6c55e551be52d93719ff688ca2ea57aa6266dc4b96ba5b4959670e638e +size 1664 diff --git a/data/embeddings/vid_42990117_003532_950.npy b/data/embeddings/vid_42990117_003532_950.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3f35f9307256e986a2381d2dff8b5bf0a645902 --- /dev/null +++ b/data/embeddings/vid_42990117_003532_950.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2928796b41e3954b7aad4aa45a08f47aafb173c84b173598ec93ee785db1b2 +size 1664 diff --git a/data/embeddings/vid_50980820_172047_960.npy b/data/embeddings/vid_50980820_172047_960.npy new file mode 100644 index 0000000000000000000000000000000000000000..c95fdf79f47b6d614217eb3ea4e474a2dd62101b --- /dev/null +++ b/data/embeddings/vid_50980820_172047_960.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:500ccfe4ca757f1d848095dcc885bbb9456aa7306d5d72f64112a5e44a571309 +size 1664 diff --git a/data/embeddings/video0.npy b/data/embeddings/video0.npy new file mode 100644 index 0000000000000000000000000000000000000000..a2ee3968354a4b96d2e2323b1f0ae1acbc2abf9d --- /dev/null +++ b/data/embeddings/video0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51481c72a3ee4d57f33436dfbae8af4518cbbee415d0bd1b0c7361c54eda90b0 +size 1664 diff --git a/data/embeddings/video1652171674.npy b/data/embeddings/video1652171674.npy new file mode 100644 index 0000000000000000000000000000000000000000..244d8fb95d7957589a82b7574f25b0e2289ba655 --- /dev/null +++ b/data/embeddings/video1652171674.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658d38cd6214999e9b6271003dd647d93aecb1282f79a5bdda3b57f6f04d37bc +size 1664 diff --git a/data/embeddings/video8080wwwredditwatch.npy b/data/embeddings/video8080wwwredditwatch.npy new file mode 100644 index 0000000000000000000000000000000000000000..472d0019e486bed0af9de377fda261fff9f9e3ed --- /dev/null +++ b/data/embeddings/video8080wwwredditwatch.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ca25343238a75850927eabe8ad4777b613d6b060df6e89eb10a09558ce3d39 +size 1664 diff --git a/data/embeddings/videoplaybac1k.npy b/data/embeddings/videoplaybac1k.npy new file mode 100644 index 0000000000000000000000000000000000000000..1fdd1dd8726c75beb7682455090a6afec3542461 --- /dev/null +++ b/data/embeddings/videoplaybac1k.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1a91c9759a020b71ec50e60cf25f01426e022d808a0ef11f6ebc9efb32e5a9 +size 1664 diff --git a/data/embeddings/videoplayback.npy b/data/embeddings/videoplayback.npy new file mode 100644 index 0000000000000000000000000000000000000000..b48901953bcccb61014696ee43369290a3a5cbaa --- /dev/null +++ b/data/embeddings/videoplayback.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ab7a0e120be9392559a5dc123ef8ddbd8f135e5a4ded6681a8384e2e6d32c6 +size 1664 diff --git a/data/embeddings/vsype_vwowl0wd.npy b/data/embeddings/vsype_vwowl0wd.npy new file mode 100644 index 0000000000000000000000000000000000000000..a9591f307bfdad8c1a8686f9eda3ee83c348d1e3 --- /dev/null +++ b/data/embeddings/vsype_vwowl0wd.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534439c9e738ecc0f8e282abdef7e6387eacbfbc5c5335fdd33d00a5e8a8713f +size 1664 diff --git a/data/embeddings/vyqvemea6drvrxph.npy b/data/embeddings/vyqvemea6drvrxph.npy new file mode 100644 index 0000000000000000000000000000000000000000..7d2b8b81221cc4deed6f3b2dd2d5cf57cce5165b --- /dev/null +++ b/data/embeddings/vyqvemea6drvrxph.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34dbacd559c1f77da1edd97951b696737a485188fae34fcb36eb78d66a0a1b9 +size 1664 diff --git a/data/embeddings/vzribeiplrdtzxh.npy b/data/embeddings/vzribeiplrdtzxh.npy new file mode 100644 index 0000000000000000000000000000000000000000..b55b7f3f6a96eaea8c17ac2057189aacab816e23 --- /dev/null +++ b/data/embeddings/vzribeiplrdtzxh.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9077b622bd069b618391c6d030822d6180ab0c2c1edbb122ca4a1a1bf51d595 +size 1664 diff --git a/data/embeddings/w4a7s3mbky74eqeu.npy b/data/embeddings/w4a7s3mbky74eqeu.npy new file mode 100644 index 0000000000000000000000000000000000000000..16a1009d9e06eb2fde80f80b2321c4d70f0accc5 --- /dev/null +++ b/data/embeddings/w4a7s3mbky74eqeu.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b34d564d36ef753ed59b9147437b5eaa580eb83839a78d7127153ae4d861392 +size 1664 diff --git a/data/embeddings/w_iimsdt_ziowvjp.npy b/data/embeddings/w_iimsdt_ziowvjp.npy new file mode 100644 index 0000000000000000000000000000000000000000..604933178f7d215ea954c8c012b2899b4ebcd3dd --- /dev/null +++ b/data/embeddings/w_iimsdt_ziowvjp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd61208e21837a995e70537d65b85439a0b48e889ccde302382bd9f2378a3270 +size 1664 diff --git a/data/embeddings/w_siafq3oqdqdn04.npy b/data/embeddings/w_siafq3oqdqdn04.npy new file mode 100644 index 0000000000000000000000000000000000000000..75418d21081f1fc361d5e86d3d687f43e9d74277 --- /dev/null +++ b/data/embeddings/w_siafq3oqdqdn04.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafa88b2452f19e1a3c511c3b4b97bd10795ed1df8b51562ac76bdf2b24300d0 +size 1664 diff --git a/data/embeddings/wdwwnexzwppomu7i.npy b/data/embeddings/wdwwnexzwppomu7i.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee5a54ff622ad00116fb35bdae8dc4a1300bea87 --- /dev/null +++ b/data/embeddings/wdwwnexzwppomu7i.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0a43d80f1bd52585ef9d3d4be248af899d3c573ce6bee869df49260941d711 +size 1664 diff --git a/data/embeddings/weakestdampweekly_8e8585_10071.npy b/data/embeddings/weakestdampweekly_8e8585_10071.npy new file mode 100644 index 0000000000000000000000000000000000000000..3ad7754f99237df6fd4a5724cfa52c9f5f518bfb --- /dev/null +++ b/data/embeddings/weakestdampweekly_8e8585_10071.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e553ebfd950c20ac8a0b9529bb04afb1c2c0e1dda0ffb739be54ccf9170ce13 +size 1664 diff --git a/data/embeddings/wednesday_d6f4b9_11028578.npy b/data/embeddings/wednesday_d6f4b9_11028578.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc55a781e59b8836ce8590b94211f5b91ed6fcf9 --- /dev/null +++ b/data/embeddings/wednesday_d6f4b9_11028578.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca77bd4e28902b50e260e10f3153b8959e18533f848650aab195c42d39a03b90 +size 1664 diff --git a/data/embeddings/whativebidone.npy b/data/embeddings/whativebidone.npy new file mode 100644 index 0000000000000000000000000000000000000000..36f508b71d389df8ce10d815f89004911f89f13a --- /dev/null +++ b/data/embeddings/whativebidone.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ce253e82dd754cea7dc3c6a579a9f83c7dc7e986cb4abb8e62831f2b96b368 +size 1664 diff --git a/data/embeddings/whenyourmatestartswearingamono.npy b/data/embeddings/whenyourmatestartswearingamono.npy new file mode 100644 index 0000000000000000000000000000000000000000..9d07c06d5409d3a6964da4ffd5fcba847429caab --- /dev/null +++ b/data/embeddings/whenyourmatestartswearingamono.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20af3b594f5cfa9af62e7f9ed41b2579680dfb1ab61680c8b8f497e3b056d780 +size 1664 diff --git a/data/embeddings/whiteguy.npy b/data/embeddings/whiteguy.npy new file mode 100644 index 0000000000000000000000000000000000000000..3965587786d9f0f3ba33523a45457c0fb65a883a --- /dev/null +++ b/data/embeddings/whiteguy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b788e5a0ed08f8c170efb8ee0cc6081dac96dee98791f5dec010c4b4b452b78e +size 1664 diff --git a/data/embeddings/wmt_z2khd1tp6dgg.npy b/data/embeddings/wmt_z2khd1tp6dgg.npy new file mode 100644 index 0000000000000000000000000000000000000000..a161adcc053e89faa67a0ecced41a2102e263d98 --- /dev/null +++ b/data/embeddings/wmt_z2khd1tp6dgg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f551b47e1dd793495b13f67a4ed5334245c1f3a232b63fcea28ae21903989c81 +size 1664 diff --git a/data/embeddings/wsu9pgl_ycsyy3f0.npy b/data/embeddings/wsu9pgl_ycsyy3f0.npy new file mode 100644 index 0000000000000000000000000000000000000000..7427f6a206f192eb1c92b6607c9291cc8c9c6f5a --- /dev/null +++ b/data/embeddings/wsu9pgl_ycsyy3f0.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac63b77b566da6bec495d5076a1a3fb1b34ca1ac22e0761871b3e564e2f1cc9e +size 1664 diff --git a/data/embeddings/x2downloadappdudeturnedintosau.npy b/data/embeddings/x2downloadappdudeturnedintosau.npy new file mode 100644 index 0000000000000000000000000000000000000000..ff6216a76a2c1453389d48b63485589d9b2bc212 --- /dev/null +++ b/data/embeddings/x2downloadappdudeturnedintosau.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7130e9551a505c23b87fb9daf7cd1ae81ab78d5c91f56ef5bb404fba1db80616 +size 1664 diff --git a/data/embeddings/x2downloadappstarwarscervezacr.npy b/data/embeddings/x2downloadappstarwarscervezacr.npy new file mode 100644 index 0000000000000000000000000000000000000000..267e91f0a5dba2569d1f1d7a40d486f78242c778 --- /dev/null +++ b/data/embeddings/x2downloadappstarwarscervezacr.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a012baf00a7334562102b27cf912e00fc4dc9fae20b62ff222c7ec93aee8508f +size 1664 diff --git a/data/embeddings/x2downloadappthisisthepartwher.npy b/data/embeddings/x2downloadappthisisthepartwher.npy new file mode 100644 index 0000000000000000000000000000000000000000..1614ddac4904746f47d8bac8b012663985e3f04a --- /dev/null +++ b/data/embeddings/x2downloadappthisisthepartwher.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533fda05a77e4c7daea3eafa3beb01fb3c778df5e13d1fb968ba081acb448a88 +size 1664 diff --git a/data/embeddings/x2downloadappweneedmoresnow1.npy b/data/embeddings/x2downloadappweneedmoresnow1.npy new file mode 100644 index 0000000000000000000000000000000000000000..17fe69ec3d5882a2644386deac488e3e9c66ac3e --- /dev/null +++ b/data/embeddings/x2downloadappweneedmoresnow1.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ee69384b6ec84ecbb3b8c0995e054b72dc85f556f7427eb03fa6545ef37ee +size 1664 diff --git a/data/embeddings/x3e_bz9d6hkb0ct8.npy b/data/embeddings/x3e_bz9d6hkb0ct8.npy new file mode 100644 index 0000000000000000000000000000000000000000..336149dd411101ba637c7bd78b2210934af559aa --- /dev/null +++ b/data/embeddings/x3e_bz9d6hkb0ct8.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080d128264423bbea95f4bc0c1d16b7233cd02347b85b02074da599754b4ed93 +size 1664 diff --git a/data/embeddings/xj4fdm46nnjvaag.npy b/data/embeddings/xj4fdm46nnjvaag.npy new file mode 100644 index 0000000000000000000000000000000000000000..87321965194a57b267e9c9a5de4d26a806965214 --- /dev/null +++ b/data/embeddings/xj4fdm46nnjvaag.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5870ad541c00e0d1902396ff8284c25dcd1a3f27f3b35a2af0cacf5fb17211f +size 1664 diff --git a/data/embeddings/xniu3sdgvbun6dbv.npy b/data/embeddings/xniu3sdgvbun6dbv.npy new file mode 100644 index 0000000000000000000000000000000000000000..835d143dd85322a0f5468d4c5f706b8b6540c8b8 --- /dev/null +++ b/data/embeddings/xniu3sdgvbun6dbv.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47bc412253e57a48e9547f545dc79abd3e9613cc907884f00bfdeb3c1e81d825 +size 1664 diff --git a/data/embeddings/ykikapnx0vah_hhy.npy b/data/embeddings/ykikapnx0vah_hhy.npy new file mode 100644 index 0000000000000000000000000000000000000000..65b0324cdf170553357b8b0b13d7ca304608fd89 --- /dev/null +++ b/data/embeddings/ykikapnx0vah_hhy.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a686dd83fb4d2ac36e0875abe1745d0ce6710cd5ec9b717b75e37045fd1a900 +size 1664 diff --git a/data/embeddings/youtube_wlrqjgxd8_608x1080_h26.npy b/data/embeddings/youtube_wlrqjgxd8_608x1080_h26.npy new file mode 100644 index 0000000000000000000000000000000000000000..c85d0bcb2abd9c350508a536cb5877e2151797ce --- /dev/null +++ b/data/embeddings/youtube_wlrqjgxd8_608x1080_h26.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a10217dc39f0293e0192e09a025549ec435696b5c6cc2cdc67ac32622c5c97b +size 1664 diff --git a/data/embeddings/yqbm1ibqiq6xrxvf.npy b/data/embeddings/yqbm1ibqiq6xrxvf.npy new file mode 100644 index 0000000000000000000000000000000000000000..169c6c5d4c281ceb4dd8c6b4d645e8fec306a4ec --- /dev/null +++ b/data/embeddings/yqbm1ibqiq6xrxvf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e90bb9bc6b6876b74f2684068f52388daf4043230ccf56bd509dc329dbd93e +size 1664 diff --git a/data/embeddings/yt5scomkirbyenjoysmacaroniwith.npy b/data/embeddings/yt5scomkirbyenjoysmacaroniwith.npy new file mode 100644 index 0000000000000000000000000000000000000000..2bf3f735a552f97083a1f49c172560bc475bfc62 --- /dev/null +++ b/data/embeddings/yt5scomkirbyenjoysmacaroniwith.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155815334d0861643e5484930fa228739cc7782b520c567bd01e80d27a3e8422 +size 1664 diff --git a/data/embeddings/yt5scomkirbylemon360p.npy b/data/embeddings/yt5scomkirbylemon360p.npy new file mode 100644 index 0000000000000000000000000000000000000000..14143a600556ba39a59fae8e603c8f9de45fe05b --- /dev/null +++ b/data/embeddings/yt5scomkirbylemon360p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ecdbaeec0cd75ff9cd0382ac8b434114ce35c96170bb8d6a56f6356023592b +size 1664 diff --git a/data/embeddings/yt5scommacaroni360p.npy b/data/embeddings/yt5scommacaroni360p.npy new file mode 100644 index 0000000000000000000000000000000000000000..7a50bd718ad8f64b05c3ff7197f15ce7763d3950 --- /dev/null +++ b/data/embeddings/yt5scommacaroni360p.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5ce83a13c3a0c4dd4e19f12935cac2fb42cc22fa7475282b7a2509e50b8e34 +size 1664 diff --git a/data/embeddings/zjwk14phnkl6iudf.npy b/data/embeddings/zjwk14phnkl6iudf.npy new file mode 100644 index 0000000000000000000000000000000000000000..4bce6214be0902621c6acf770d6c2adfe4d5e2fd --- /dev/null +++ b/data/embeddings/zjwk14phnkl6iudf.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea08bf48adda2fd8f9d76d018cb17cbb8d8874dd5f960049eac27ede95e5fd7 +size 1664 diff --git a/data/embeddings/zozfmexdhd4fnxhg.npy b/data/embeddings/zozfmexdhd4fnxhg.npy new file mode 100644 index 0000000000000000000000000000000000000000..93582e054acec003de932015a844da3ca0112b74 --- /dev/null +++ b/data/embeddings/zozfmexdhd4fnxhg.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c50526873c4adaa3e2d3db602108618e2cbb61548394fffe603ab1b295cdf2f +size 1664 diff --git a/data/embeddings/zp4v_kg_4vgplvwp.npy b/data/embeddings/zp4v_kg_4vgplvwp.npy new file mode 100644 index 0000000000000000000000000000000000000000..30555845227678a4c5cb32a863aa2f2863e694db --- /dev/null +++ b/data/embeddings/zp4v_kg_4vgplvwp.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70559a02c1ba8b799353d4b4b4f8b215beee3ccc969663eb21e5b190f4cbf49 +size 1664 diff --git a/data/embeddings/zumzy8e0zyorqpkz.npy b/data/embeddings/zumzy8e0zyorqpkz.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb169f3219ed51136ad44979e62db959f0277347 --- /dev/null +++ b/data/embeddings/zumzy8e0zyorqpkz.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f2ac9197767502fbc56b8fdd85aa81183666e4b91fe2ddffa6c32ad89e468b +size 1664 diff --git a/data/name_map.json b/data/name_map.json new file mode 100644 index 0000000000000000000000000000000000000000..b57f0cf1291b49dac175957d26447ef140f24965 --- /dev/null +++ b/data/name_map.json @@ -0,0 +1 @@ +{"017d956359676be2393d8e07c0d9cd": "017d956359676be2393d8e07c0d9cd.jpg", "0a4afbdf14f42abcaf731aedbd8783": "0a4afbdf14f42abcaf731aedbd8783.mp4", "0z8eppisoyzd3jte": "0z8eppisoyzd3jte.mp4", "1004332103284052018": "1004332103284052018.gif", "170f3a0d74d628f405745cd107d8fc": "170f3a0d74d628f405745cd107d8fc.jpg", "1cmt9rrcral5m1t": "1cmt9rrcral5m1t.mp4", "1x_mpgvsmlwi4b4": "1x_mpgvsmlwi4b4.mp4", "1_4972134405645533911": "1_4972134405645533911.mp4", "20250209_cooperativeperfectpon": "20250209_cooperativeperfectpon.mp4", "244301680_1204542536721927_730": "244301680_1204542536721927_730.mp4", "248320392_939578913314000_7632": "248320392_939578913314000_7632.mp4", "2df31f1dd1d31b6d5b55934e2c0125": "2df31f1dd1d31b6d5b55934e2c0125.mp4", "2gtri3bqxrdkzp2": "2gtri3bqxrdkzp2.mp4", "2og27hbdaohr0_u7": "2og27hbdaohr0_u7.mp4", "311472807_847803186574673_6180": "311472807_847803186574673_6180.mp4", "317972007_872625493783372_7982": "317972007_872625493783372_7982.mp4", "3c494477159df432b7c51e2f809dd3": "3c494477159df432b7c51e2f809dd3.mp4", "3cl41iruuh0jfi27": "3cl41iruuh0jfi27.mp4", "3jev0656inc_e09p": "3jev0656inc_e09p.mp4", "3wlic3cumg3yvudn": "3wlic3cumg3yvudn.mp4", "405360888_7293554827322499_503": "405360888_7293554827322499_503.mp4", "441930059_1175058477005126_751": "441930059_1175058477005126_751.mp4", "469182540_8739739586133293_167": "469182540_8739739586133293_167.mp4", "471482695_9131258876896657_266": "471482695_9131258876896657_266.mp4", "47671917_1318637692320758_5748": "47671917_1318637692320758_5748.mp4", "4bdeac2a1334624ce3c8afe96ea9c5": "4bdeac2a1334624ce3c8afe96ea9c5.jpg", "4kcamera": "4kcamera.mp4", "4x": "4x.webp", "5fb3731a8dcfd8172c9bdd12ae1970": "5fb3731a8dcfd8172c9bdd12ae1970.jpg", "6e725c5ef715b822f11ea67c2ca9cb": "6e725c5ef715b822f11ea67c2ca9cb.jpg", "6o6psry1hrnpwhvo": "6o6psry1hrnpwhvo.mp4", "6rme9unctzitcye8": "6rme9unctzitcye8.mp4", "789591e5aee5552b63569b5aae9f91": "789591e5aee5552b63569b5aae9f91.jpg", "8212422b9b4889a0770c55c18bbf96": "8212422b9b4889a0770c55c18bbf96.mp4", "889c0176ad2dd4e71b6a9ba7691b0b": "889c0176ad2dd4e71b6a9ba7691b0b.jpg", "8e4282f75a64f7e3c35175be4bbcf1": "8e4282f75a64f7e3c35175be4bbcf1.mp4", "8fi9o0y09mibdhjx": "8fi9o0y09mibdhjx.mp4", "8v5z0c8f2unrtshm": "8v5z0c8f2unrtshm.mp4", "9b91784d80d2d2776635a21f3216ad": "9b91784d80d2d2776635a21f3216ad.jpg", "9ef3d77d6ba7aaa02fb07a20e65002": "9ef3d77d6ba7aaa02fb07a20e65002.mp4", "9qgdm3pnsbmkj0bp": "9qgdm3pnsbmkj0bp.mp4", "a34e43fd73ea2615461fa0de628606": "a34e43fd73ea2615461fa0de628606.mp4", "a44dde0bcf48418e421888ded96142": "a44dde0bcf48418e421888ded96142.mp4", "actco41llg3epur": "actco41llg3epur.mp4", "animeduck": "animeduck.mp4", "an_q8r53s3owf37dudylabcnyebkjh": "an_q8r53s3owf37dudylabcnyebkjh.mp4", "aqmrivm3iqgohe81vfgdgu7snmiz86": "aqmrivm3iqgohe81vfgdgu7snmiz86.mp4", "aqn9uc0aud6ow22sxj3tpv3uvz68r7": "aqn9uc0aud6ow22sxj3tpv3uvz68r7.mp4", "aqne9jk18ijvwlubrohcev2m4yp2ij": "aqne9jk18ijvwlubrohcev2m4yp2ij.mp4", "aqo7pz0pctyxtrzizqwslc7yoih55s": "aqo7pz0pctyxtrzizqwslc7yoih55s.mp4", "aqofilmwaebo4_vlclpo_roaqvryy9": "aqofilmwaebo4_vlclpo_roaqvryy9.mp4", "aqp3jfzrryrsi0aq5lo1zsvpdvkkka": "aqp3jfzrryrsi0aq5lo1zsvpdvkkka.mp4", "aqpa8vqffgf8chahe3ophfsvneqaf1": "aqpa8vqffgf8chahe3ophfsvneqaf1.mp4", "ard7xnzrwsdsejur": "ard7xnzrwsdsejur.mp4", "asdads": "asdads.png", "asdasd": "asdasd.png", "asdasdadasd": "asdasdadasd.png", "asdasdads": "asdasdads.png", "asdasdasdasdasdasd": "asdasdasdasdasdasd.png", "asdjahsdkjhasd": "asdjahsdkjhasd.png", "atcm0h4ohnyo809lwilrmjp0eq720": "atcm0h4ohnyo809lwilrmjp0eq720.mp4", "atcmkndoiqmxknsp11fubazygg": "atcmkndoiqmxknsp11fubazygg.mp4", "b6km77y9umgddmcl": "b6km77y9umgddmcl.mp4", "b9ojoo2ezabflidp": "b9ojoo2ezabflidp.mp4", "bc02da4a6f8c4ede27b1a529de4180": "bc02da4a6f8c4ede27b1a529de4180.mp4", "bhoyq9puxrtm65d": "bhoyq9puxrtm65d.mp4", "binkyfish": "binkyfish.mp4", "birdsofoz_6871529526262893826": "birdsofoz_6871529526262893826.mp4", "bkxib3qhjezelv0e": "bkxib3qhjezelv0e.mp4", "bqwv_r7ksyj_kbzt": "bqwv_r7ksyj_kbzt.mp4", "browassweatinghardspellinggoti": "browassweatinghardspellinggoti.mp4", "burgerking": "burgerking.mp4", "burritooo": "burritooo.mov", "bvsd9zqxmf9xillu": "bvsd9zqxmf9xillu.mp4", "byhxpkhkfdrrlmy": "byhxpkhkfdrrlmy.mp4", "c8lrehkd1pyohsgk": "c8lrehkd1pyohsgk.mp4", "cageymeditatedhairy_457f04_117": "cageymeditatedhairy_457f04_117.mp4", "candlethatmakesyourheadablocko": "candlethatmakesyourheadablocko.mp4", "catjamkiss": "catjamkiss.gif", "cb2": "cb2.jpg", "cd41c35762fc5843fdc8875521e45e": "cd41c35762fc5843fdc8875521e45e.mp4", "ck13qbi4kodqdujz": "ck13qbi4kodqdujz.mp4", "ckpvwmqjsu4gho9y": "ckpvwmqjsu4gho9y.mp4", "cmp1tz8yz088poaz": "cmp1tz8yz088poaz.mp4", "cp5fxsjdcks0bafp": "cp5fxsjdcks0bafp.mp4", "d05b54c356bbdd9475e39167a10f95": "d05b54c356bbdd9475e39167a10f95.jpg", "d0wtghlwsaiu0se": "d0wtghlwsaiu0se.jpg", "d1ivxtow0aitywfjpglarge": "d1ivxtow0aitywfjpglarge.jpg", "d3kxq61uwaa9mh1": "d3kxq61uwaa9mh1.jpg", "d5_sl6ew4ael8js": "d5_sl6ew4ael8js.jpg", "dallemini_2022618_234934": "dallemini_2022618_234934.png", "dimglz1zw5ih35l9": "dimglz1zw5ih35l9.mp4", "doctor": "doctor.mp4", "doge1": "doge1.mp4", "doge2": "doge2.mp4", "doughslappin": "doughslappin.mp4", "download": "download.mp4", "download1": "download1.mp4", "download2": "download2.mp4", "download3": "download3.mp4", "download5": "download5.mp4", "drqhjjowkaal0wr": "drqhjjowkaal0wr.jpg", "dt1gybauuaacxpl": "dt1gybauuaacxpl.jpg", "dvwsbx8xgaao9la": "dvwsbx8xgaao9la.jpg", "dynamicpurplesore_8ace6a_10258": "dynamicpurplesore_8ace6a_10258.mp4", "dyyzulvumqezdmd": "dyyzulvumqezdmd.mp4", "e10dcb8b535edda1d59de9c6576583": "e10dcb8b535edda1d59de9c6576583.jpg", "ebbtg6wwaaeu0i": "ebbtg6wwaaeu0i.jpg", "ebqabllxsaaznnq": "ebqabllxsaaznnq.jpg", "echidna_bathurst_1000": "echidna_bathurst_1000.mp4", "edrdpeft6fnvawjm": "edrdpeft6fnvawjm.mp4", "eefxrokxoaimik1": "eefxrokxoaimik1.jpg", "eemaaw3xkaevhfb": "eemaaw3xkaevhfb.png", "elpegl8wkaarda4": "elpegl8wkaarda4.jpg", "elpegl8wkaarda4sticker": "elpegl8wkaarda4sticker.png", "em2dcacvuaanu9c": "em2dcacvuaanu9c.jpg", "emma_6872821372339408134": "emma_6872821372339408134.mp4", "eyqjvqeucaapaw": "eyqjvqeucaapaw.jpg", "ezy427jwkaeejrr": "ezy427jwkaeejrr.jpg", "f038534e564e43aa05d55b7c01c0b7": "f038534e564e43aa05d55b7c01c0b7.jpg", "f3avkgppaa9jo6it": "f3avkgppaa9jo6it.mp4", "f6qsf0krrv9gnro5": "f6qsf0krrv9gnro5.mp4", "fave": "fave.mp4", "fggsy5eqparmcqef": "fggsy5eqparmcqef.mp4", "fh1qguhx_5xlriga": "fh1qguhx_5xlriga.mp4", "fish": "fish.mp4", "fjb9glvwuaubrb6": "fjb9glvwuaubrb6.png", "fliestony": "fliestony.mp4", "fshgrbywoaio8r88": "fshgrbywoaio8r88.mp4", "fvdcf4md7mfdzchx": "fvdcf4md7mfdzchx.mp4", "fyng5h5zmbgx_lji": "fyng5h5zmbgx_lji.mp4", "fzuv04xwamwec_": "fzuv04xwamwec_.jpg", "generalincomprehensibleinking_": "generalincomprehensibleinking_.mp4", "gettingchanged": "gettingchanged.png", "ha5cgwzrlbfpagun": "ha5cgwzrlbfpagun.mp4", "hbkm4n0dzn0o2ncj": "hbkm4n0dzn0o2ncj.mp4", "hd6is8jqsygkdzi8": "hd6is8jqsygkdzi8.mp4", "hergh": "hergh.mp4", "horrorgame": "horrorgame.mp4", "howlandnovathecollies_68738638": "howlandnovathecollies_68738638.mp4", "htdtdxauioztf": "htdtdxauioztf.mp4", "hzdrbjmjnjmlpuls": "hzdrbjmjnjmlpuls.mp4", "i0red7yngpkcrase": "i0red7yngpkcrase.mp4", "i565oygnmhnpp03u": "i565oygnmhnpp03u.mp4", "ibisv9rsbrlrbvnnwaboplar0hdp3g": "ibisv9rsbrlrbvnnwaboplar0hdp3g.mp4", "igvideo1_1": "igvideo1_1.mov", "images": "images.jpg", "index": "index.jpg", "injuriousoperatinghappygolucky": "injuriousoperatinghappygolucky.mp4", "insanewellgroomedaccountant_4b": "insanewellgroomedaccountant_4b.mp4", "jad59lwdmidb6di6": "jad59lwdmidb6di6.mp4", "jaypee_6865092104721304837": "jaypee_6865092104721304837.mp4", "jc_jmovgi1io0dxl": "jc_jmovgi1io0dxl.mp4", "jkzc7etuubg25vfd": "jkzc7etuubg25vfd.mp4", "jordanpetersontakesaload": "jordanpetersontakesaload.mp4", "jux8fsykzs7_niu": "jux8fsykzs7_niu.mp4", "k1fua2a6zgweix27": "k1fua2a6zgweix27.mp4", "k2iwgp7o9c8w8a_o": "k2iwgp7o9c8w8a_o.mp4", "k6reuef_4oowg9a": "k6reuef_4oowg9a.mp4", "kaputformativetaut_03d7f7_1228": "kaputformativetaut_03d7f7_1228.mp4", "khakmqdidbaoy8qc": "khakmqdidbaoy8qc.mp4", "kounterkittyslurper": "kounterkittyslurper.mp4", "kuzlkhnvn9926ibj": "kuzlkhnvn9926ibj.mp4", "l9ja83mkhw13e4o": "l9ja83mkhw13e4o.mp4", "lbsqpjgudiggdfcg": "lbsqpjgudiggdfcg.mp4", "lch3037ehv6711": "lch3037ehv6711.mp4", "leftatlondon_69990546340147397": "leftatlondon_69990546340147397.mp4", "leonkennedy2": "leonkennedy2.mp4", "lewdsouls_67020b_11705629": "lewdsouls_67020b_11705629.mp4", "licfixzflyd3nxlj": "licfixzflyd3nxlj.mp4", "lightestadversewinningest_4f22": "lightestadversewinningest_4f22.mp4", "love_miley_6871985317335796998": "love_miley_6871985317335796998.mp4", "lvzzvbhboqdye16": "lvzzvbhboqdye16.mp4", "m994nqwqddwg5yw": "m994nqwqddwg5yw.mp4", "mellowwildcat_e38664_9792319": "mellowwildcat_e38664_9792319.mp4", "mkstq1ipav3jlnq_": "mkstq1ipav3jlnq_.mp4", "mmdpdsslaeudwa": "mmdpdsslaeudwa.mp4", "mnsqqeomzyzabguj": "mnsqqeomzyzabguj.mp4", "mqba2nqzgai65ru": "mqba2nqzgai65ru.mp4", "mzibzbgvxvzgkdam": "mzibzbgvxvzgkdam.mp4", "n0ttet0pspzmmvbz": "n0ttet0pspzmmvbz.mp4", "n3tlyz04fqqstrwv": "n3tlyz04fqqstrwv.mp4", "n93effsaxmxf2kor": "n93effsaxmxf2kor.mp4", "nahfrv0sjg3s56uczw81": "nahfrv0sjg3s56uczw81.webp", "neverbackdownneverwhat": "neverbackdownneverwhat.mp4", "newcanvas": "newcanvas.png", "ngzo_4miejrnd3sk": "ngzo_4miejrnd3sk.mp4", "nikodavis_6866459592591805702": "nikodavis_6866459592591805702.mp4", "ninenews": "ninenews.mp4", "noizxlsakr5gkeo8": "noizxlsakr5gkeo8.mp4", "o8wkds87xgtozhqa": "o8wkds87xgtozhqa.mp4", "okmcxk9ii4ry7gh": "okmcxk9ii4ry7gh.mp4", "omg": "omg.png", "oof_dcb340_12285762": "oof_dcb340_12285762.mp4", "oppenheimer": "oppenheimer.mp4", "orsfp8lahrsggsu": "orsfp8lahrsggsu.mp4", "osxjarsdh_hmok69": "osxjarsdh_hmok69.mp4", "otehze8bd_ixkree": "otehze8bd_ixkree.mp4", "oymxczue0nnv7_fu": "oymxczue0nnv7_fu.mp4", "parallellinestony": "parallellinestony.mp4", "piastriembarassment": "piastriembarassment.mp4", "pissing_all_by_yourself": "pissing_all_by_yourself.mp4", "prescientaberrantbridged_766a7": "prescientaberrantbridged_766a7.mp4", "pvltmijei3ktofhm": "pvltmijei3ktofhm.mp4", "pxl_20230504_083022355ts3": "pxl_20230504_083022355ts3.mp4", "pxl_20250120_171712912ts1": "pxl_20250120_171712912ts1.mp4", "pzjasougx0xl7ch": "pzjasougx0xl7ch.mp4", "qgsqndxwzz45n_43": "qgsqndxwzz45n_43.mp4", "qhqbmp_yfkcxhzxh": "qhqbmp_yfkcxhzxh.mp4", "qmgas8gregc21rta": "qmgas8gregc21rta.mp4", "qnqp9kgewqaxmvvw": "qnqp9kgewqaxmvvw.mp4", "qt9xfqxkkwrohllj": "qt9xfqxkkwrohllj.mp4", "r4gqvsc9ou_sqen": "r4gqvsc9ou_sqen.mp4", "rapidsavecom_i_present_you_the": "rapidsavecom_i_present_you_the.mp4", "ratlove": "ratlove.png", "rea4xbawqq8thmko": "rea4xbawqq8thmko.mp4", "redditsavecom_hes_an_omega_lev": "redditsavecom_hes_an_omega_lev.mp4", "redditsavecom_i_think_this_bel": "redditsavecom_i_think_this_bel.mp4", "redditsavecom_theres_no_way_a_": "redditsavecom_theres_no_way_a_.mp4", "redditsavecom_they_did_itk7c5t": "redditsavecom_they_did_itk7c5t.mp4", "redditsavecom__2zhvauh3dj691": "redditsavecom__2zhvauh3dj691.mp4", "redunadvisedodd_a4e39c_1230263": "redunadvisedodd_a4e39c_1230263.mp4", "rgtg0uogscxeoxk": "rgtg0uogscxeoxk.mp4", "rmzmsmswryh2uk2": "rmzmsmswryh2uk2.mp4", "rn_image_picker_lib_temp_6d697": "rn_image_picker_lib_temp_6d697.jpg", "robobro": "robobro.mp4", "rounddog": "rounddog.mp4", "rrjfvq7krpivctr9": "rrjfvq7krpivctr9.mp4", "rsg9eyy6btyveyp_": "rsg9eyy6btyveyp_.mp4", "rwt4ffbiegespghf": "rwt4ffbiegespghf.mp4", "rx4rkzheyhyaozdg": "rx4rkzheyhyaozdg.mp4", "rxq3fgsdc8e4ivjv": "rxq3fgsdc8e4ivjv.mp4", "s0azfmmnif3twp20": "s0azfmmnif3twp20.mp4", "s1wrpvsv_uwvfj6": "s1wrpvsv_uwvfj6.mp4", "salsamachine": "salsamachine.mp4", "screen202208162212513": "screen202208162212513.mp4", "screenshot20240622at1359341one": "screenshot20240622at1359341one.png", "screenshot_2020080200464338": "screenshot_2020080200464338.png", "screen_recording_2022022011352": "screen_recording_2022022011352.3gp", "sdfgvxcvxcvxcvxcv": "sdfgvxcvxcvxcvxcv.mp4", "sdfsdfsdf1": "sdfsdfsdf1.mp4", "sealbounce": "sealbounce.mp4", "seashanty2_but_somethings_diff": "seashanty2_but_somethings_diff.mp3", "shakenpastelabsent_ae9e42_1101": "shakenpastelabsent_ae9e42_1101.mp4", "shrimp": "shrimp.png", "sindl8igbksah9q1": "sindl8igbksah9q1.mp4", "snapinstaapp_video_163282601_1": "snapinstaapp_video_163282601_1.mp4", "snapinstaapp_video_321193628_7": "snapinstaapp_video_321193628_7.mp4", "snapinstaapp_video_332523165_7": "snapinstaapp_video_332523165_7.mp4", "snapinstaapp_video_47669493_10": "snapinstaapp_video_47669493_10.mp4", "snapinstaapp_video_54449357_28": "snapinstaapp_video_54449357_28.mp4", "snapinstaapp_video_894a1754009": "snapinstaapp_video_894a1754009.mp4", "snapinstaapp_video_an82j9syhul": "snapinstaapp_video_an82j9syhul.mp4", "snapinstaapp_video_an9esvyt4lh": "snapinstaapp_video_an9esvyt4lh.mp4", "snapinstaapp_video_an_m964jpwu": "snapinstaapp_video_an_m964jpwu.mp4", "snapinstaapp_video_aqodrarbnss": "snapinstaapp_video_aqodrarbnss.mp4", "snapinstaapp_video_aqpsvmxmvr3": "snapinstaapp_video_aqpsvmxmvr3.mp4", "snapinstaapp_video_bd4a699a45d": "snapinstaapp_video_bd4a699a45d.mp4", "snapinstaapp_video_c840837805b": "snapinstaapp_video_c840837805b.mp4", "snapinstaapp_video_fc45fb95595": "snapinstaapp_video_fc45fb95595.mp4", "snapinstaapp_video_gb7e3ho8evr": "snapinstaapp_video_gb7e3ho8evr.mp4", "snaptikapp_7226237414149197099": "snaptikapp_7226237414149197099.mp4", "snaptikapp_7235133942335163653": "snaptikapp_7235133942335163653.mp4", "snaptikapp_7235391626737241387": "snaptikapp_7235391626737241387.mp4", "snaptikapp_7265553545204698374": "snaptikapp_7265553545204698374.mp4", "snaptikapp_7349202484293864737": "snaptikapp_7349202484293864737.mp4", "sns52wt7pkh9l_l": "sns52wt7pkh9l_l.mp4", "snsdj_eerta5vhhs": "snsdj_eerta5vhhs.mp4", "spincarrot": "spincarrot.mp4", "streamladdersus": "streamladdersus.mp4", "streamladderuntitled1": "streamladderuntitled1.mp4", "suddenbrawnyenchanted_a93914_1": "suddenbrawnyenchanted_a93914_1.mp4", "t7sz2tgd6xvnuile": "t7sz2tgd6xvnuile.mp4", "td9tqct7k_pkdjqx": "td9tqct7k_pkdjqx.mp4", "th": "th.jpg", "thdmwz6yqocxmmv0": "thdmwz6yqocxmmv0.mp4", "themfstreets": "themfstreets.mp4", "thisisyourautisticchild": "thisisyourautisticchild.mp4", "tiktok_ichristopher_7364474144": "tiktok_ichristopher_7364474144.mp4", "tiktok_thedailyshow_7459544295": "tiktok_thedailyshow_7459544295.mp4", "tiktok_wanderinglittlejay_7421": "tiktok_wanderinglittlejay_7421.mp4", "tll9nhvfpeft3dib": "tll9nhvfpeft3dib.mp4", "tth_m7txtrys2fge": "tth_m7txtrys2fge.mp4", "tumblr_0213294e57d70cf3bef9f89": "tumblr_0213294e57d70cf3bef9f89.gif", "tumblr_0535012913fb2f3a51a414a": "tumblr_0535012913fb2f3a51a414a.gif", "tumblr_0c74c87cbbf109cd50d6d70": "tumblr_0c74c87cbbf109cd50d6d70.jpg", "tumblr_110d1883d13787b80091b7e": "tumblr_110d1883d13787b80091b7e.gif", "tumblr_1179feb2c0d9e99eff0c31a": "tumblr_1179feb2c0d9e99eff0c31a.gif", "tumblr_12f154799b69e0f7786c6dc": "tumblr_12f154799b69e0f7786c6dc.gif", "tumblr_181f93488ce76cdb819992d": "tumblr_181f93488ce76cdb819992d.jpg", "tumblr_24acfb09752258cd5ddc879": "tumblr_24acfb09752258cd5ddc879.gif", "tumblr_24fe18fe5f478c10ba01dda": "tumblr_24fe18fe5f478c10ba01dda.jpg", "tumblr_2602fb207786b37125f3c3f": "tumblr_2602fb207786b37125f3c3f.jpg", "tumblr_26657fa47543e5622e9a611": "tumblr_26657fa47543e5622e9a611.jpg", "tumblr_3748f9c76c6ecf089ea8750": "tumblr_3748f9c76c6ecf089ea8750.jpg", "tumblr_404dc93594cccd3b49b18c1": "tumblr_404dc93594cccd3b49b18c1.gif", "tumblr_463df70969c21e0f9ce28f6": "tumblr_463df70969c21e0f9ce28f6.jpg", "tumblr_478ea635fcecbe62553797a": "tumblr_478ea635fcecbe62553797a.jpg", "tumblr_4f29b3bb5fbb08ae6d09f27": "tumblr_4f29b3bb5fbb08ae6d09f27.gif", "tumblr_56efd871d63c2a6b24ce8f4": "tumblr_56efd871d63c2a6b24ce8f4.jpg", "tumblr_5d01116b6a72d0fef4cf632": "tumblr_5d01116b6a72d0fef4cf632.jpg", "tumblr_5d2140cea40608406c9ff19": "tumblr_5d2140cea40608406c9ff19.jpg", "tumblr_5f6cf03bad545ef00f56dc4": "tumblr_5f6cf03bad545ef00f56dc4.gif", "tumblr_631431ad8ad753246714978": "tumblr_631431ad8ad753246714978.jpg", "tumblr_63352bafb04e2286ffe0c24": "tumblr_63352bafb04e2286ffe0c24.jpg", "tumblr_65d2b20d7d7cbfda32cf94e": "tumblr_65d2b20d7d7cbfda32cf94e.jpg", "tumblr_69365289a8626bf2d4592eb": "tumblr_69365289a8626bf2d4592eb.png", "tumblr_6ad8fe08f89e33f8badaff5": "tumblr_6ad8fe08f89e33f8badaff5.gif", "tumblr_797440bf87f093439a0a201": "tumblr_797440bf87f093439a0a201.gif", "tumblr_79a8f93f7e2bc5cd2599a03": "tumblr_79a8f93f7e2bc5cd2599a03.gif", "tumblr_7d44e099aaf29b3de971a3b": "tumblr_7d44e099aaf29b3de971a3b.jpg", "tumblr_7f7a241b304609908dc75f0": "tumblr_7f7a241b304609908dc75f0.jpg", "tumblr_8531196024878c332ee4c00": "tumblr_8531196024878c332ee4c00.png", "tumblr_880985540ca3cc411f1483f": "tumblr_880985540ca3cc411f1483f.gif", "tumblr_89cdcd658bdcd655b8c24b0": "tumblr_89cdcd658bdcd655b8c24b0.gif", "tumblr_8d9bdcae1e1620ef0da06fe": "tumblr_8d9bdcae1e1620ef0da06fe.jpg", "tumblr_929823ab234b0282d8b3868": "tumblr_929823ab234b0282d8b3868.png", "tumblr_9ecf4eae8152f05ff68964c": "tumblr_9ecf4eae8152f05ff68964c.jpg", "tumblr_a15b8b07b12029e048d0916": "tumblr_a15b8b07b12029e048d0916.gif", "tumblr_a1b08fcacb7aeed6b0274f2": "tumblr_a1b08fcacb7aeed6b0274f2.gif", "tumblr_a6a4822a3fb5938db6e77c4": "tumblr_a6a4822a3fb5938db6e77c4.gif", "tumblr_a8ef7300bce88758558e2b0": "tumblr_a8ef7300bce88758558e2b0.jpg", "tumblr_aea047dc6705d15f4363f0e": "tumblr_aea047dc6705d15f4363f0e.png", "tumblr_b05ee6c063687adf6a4cf24": "tumblr_b05ee6c063687adf6a4cf24.gif", "tumblr_b55a190767068bedfe6ce33": "tumblr_b55a190767068bedfe6ce33.gif", "tumblr_b5dfea703bdb80d0a9206fe": "tumblr_b5dfea703bdb80d0a9206fe.gif", "tumblr_bfa50e636ffb816c917e8bc": "tumblr_bfa50e636ffb816c917e8bc.gif", "tumblr_c47dfea71d0689c27122560": "tumblr_c47dfea71d0689c27122560.jpg", "tumblr_c5274f4befeb9eed213ce35": "tumblr_c5274f4befeb9eed213ce35.jpg", "tumblr_c9187a69e66b512ab7724ef": "tumblr_c9187a69e66b512ab7724ef.jpg", "tumblr_cab670264ae540d2d41f39c": "tumblr_cab670264ae540d2d41f39c.png", "tumblr_cb90e8ae1ffb6c817e49d4d": "tumblr_cb90e8ae1ffb6c817e49d4d.gif", "tumblr_d04adfa7b1ebc92b91bd8de": "tumblr_d04adfa7b1ebc92b91bd8de.gif", "tumblr_d2280e797b43431e57f75b1": "tumblr_d2280e797b43431e57f75b1.gif", "tumblr_d80b9ea35f72be3f9a5bc89": "tumblr_d80b9ea35f72be3f9a5bc89.jpg", "tumblr_e16bb9b41b14e2e794b1884": "tumblr_e16bb9b41b14e2e794b1884.jpg", "tumblr_e35760cd2b4f9a354bdf483": "tumblr_e35760cd2b4f9a354bdf483.gif", "tumblr_e6b94bb873f9274a40a8bb9": "tumblr_e6b94bb873f9274a40a8bb9.gif", "tumblr_e994d06264884430a8edbb5": "tumblr_e994d06264884430a8edbb5.jpg", "tumblr_f51aa184d45716645f62cab": "tumblr_f51aa184d45716645f62cab.png", "tumblr_fe57469b3d7f1e23edd2d9d": "tumblr_fe57469b3d7f1e23edd2d9d.gif", "tumblr_no9p3dergp1sit7ww": "tumblr_no9p3dergp1sit7ww.mp4", "tumblr_nqo3jsflla1tczeo1": "tumblr_nqo3jsflla1tczeo1.mp4", "tumblr_nvbbz81rn81s7vcw5_720": "tumblr_nvbbz81rn81s7vcw5_720.mp4", "tumblr_nx7rb8bu0j1sj0zai": "tumblr_nx7rb8bu0j1sj0zai.mp4", "tumblr_o23iv57xku1s9rrcg": "tumblr_o23iv57xku1s9rrcg.mp4", "tumblr_o2obqdesvz1qiu7yx": "tumblr_o2obqdesvz1qiu7yx.mp4", "tumblr_o6ixlnhbkc1vpel39": "tumblr_o6ixlnhbkc1vpel39.mp4", "tumblr_o73thfracl1slstjg": "tumblr_o73thfracl1slstjg.mp4", "tumblr_o7h9rdhofm1qd4q8ao1_500": "tumblr_o7h9rdhofm1qd4q8ao1_500.gif", "tumblr_ofjdsex8xl1r77qhao1_540": "tumblr_ofjdsex8xl1r77qhao1_540.jpg", "tumblr_oiew2j3oxr1tkxvxv": "tumblr_oiew2j3oxr1tkxvxv.mp4", "tumblr_on4va96ayo1w09rji": "tumblr_on4va96ayo1w09rji.mp4", "tumblr_oobqvwfqax1v4qe09": "tumblr_oobqvwfqax1v4qe09.jpg", "tumblr_oqn0af6ma41vbvowz": "tumblr_oqn0af6ma41vbvowz.mp4", "tumblr_ort14e71ed1rusd51": "tumblr_ort14e71ed1rusd51.mp4", "tumblr_oyrn3narh41wfxs4p": "tumblr_oyrn3narh41wfxs4p.mp4", "tumblr_p080x68crg1v61b0e": "tumblr_p080x68crg1v61b0e.mp4", "tumblr_p0opytk0me1vnq1cr": "tumblr_p0opytk0me1vnq1cr.mp4", "tumblr_p22xdaxdyb1wmj5u2_720": "tumblr_p22xdaxdyb1wmj5u2_720.mp4", "tumblr_p4vvpl8m1x1uu22sk": "tumblr_p4vvpl8m1x1uu22sk.mp4", "tumblr_p5m33bhgd81v61b0e": "tumblr_p5m33bhgd81v61b0e.mp4", "tumblr_p62i1lzrsj1ujkkfn_720": "tumblr_p62i1lzrsj1ujkkfn_720.mp4", "tumblr_paiu6vodeg1xt0fn9": "tumblr_paiu6vodeg1xt0fn9.mp4", "tumblr_pcug7ipupp1ucb78j1": "tumblr_pcug7ipupp1ucb78j1.mp4", "tumblr_pf9v7h7tle1qicsph": "tumblr_pf9v7h7tle1qicsph.mp4", "tumblr_pftgtl50dj1xoyw8p": "tumblr_pftgtl50dj1xoyw8p.mp4", "tumblr_pg2yezpodj1wkb5q4": "tumblr_pg2yezpodj1wkb5q4.mp4", "tumblr_pggbhshcy91qjpq1o": "tumblr_pggbhshcy91qjpq1o.mp4", "tumblr_pgkj141bhe1xseads1": "tumblr_pgkj141bhe1xseads1.mp4", "tumblr_ph9tstzv0d1wiatbxo1_250": "tumblr_ph9tstzv0d1wiatbxo1_250.webp", "tumblr_pi3xsduhru1qdz4bw": "tumblr_pi3xsduhru1qdz4bw.mp4", "tumblr_pjs86ff7d61xknvha": "tumblr_pjs86ff7d61xknvha.mp4", "tumblr_pkrg13minm1ufbwoc": "tumblr_pkrg13minm1ufbwoc.mp4", "tumblr_ppe0ziwngp1xoyw8p": "tumblr_ppe0ziwngp1xoyw8p.mp4", "tumblr_ppmhj77cgz1y5y4d0": "tumblr_ppmhj77cgz1y5y4d0.mp4", "tumblr_psl4ml2lrb1y9fkxh": "tumblr_psl4ml2lrb1y9fkxh.mp4", "tumblr_psscvt0lnt1yozk4p": "tumblr_psscvt0lnt1yozk4p.mp4", "tumblr_pswuvejcuq1t1rjsc": "tumblr_pswuvejcuq1t1rjsc.mp4", "tumblr_pud1klyjte1vu7869": "tumblr_pud1klyjte1vu7869.mp4", "tumblr_pvgpmifqs81r1f8n1": "tumblr_pvgpmifqs81r1f8n1.mp4", "tumblr_pvjsmtqh5t1xy89dz": "tumblr_pvjsmtqh5t1xy89dz.mp4", "tumblr_pw39w8i6xu1tekpe5": "tumblr_pw39w8i6xu1tekpe5.mp4", "tumblr_pwns4wy8wq1y73t5z": "tumblr_pwns4wy8wq1y73t5z.mp4", "tumblr_pwvcz6epvx1sg5u7k": "tumblr_pwvcz6epvx1sg5u7k.mp4", "tumblr_px00euzcme1w6we7f_720": "tumblr_px00euzcme1w6we7f_720.mp4", "tumblr_px12cem2y61ww1c21": "tumblr_px12cem2y61ww1c21.mp4", "tumblr_px2oa7xj5j1y3tvij": "tumblr_px2oa7xj5j1y3tvij.mp4", "tumblr_py2cpycmfi1urdjha": "tumblr_py2cpycmfi1urdjha.mp4", "tumblr_pyqb56qfal1ys1mpp": "tumblr_pyqb56qfal1ys1mpp.mp4", "tumblr_pz6tue0foy1yu9fc3": "tumblr_pz6tue0foy1yu9fc3.mp4", "tumblr_pz8lvr6vkd1wyqvz5": "tumblr_pz8lvr6vkd1wyqvz5.mp4", "tumblr_pzvx3nmmxq1upr3iz": "tumblr_pzvx3nmmxq1upr3iz.mp4", "tumblr_q00lxfxyjl1r518v3": "tumblr_q00lxfxyjl1r518v3.mp4", "tumblr_q05btbnjkf1wjlseu1": "tumblr_q05btbnjkf1wjlseu1.mp4", "tumblr_q0p3rfacwg1vdn84q": "tumblr_q0p3rfacwg1vdn84q.mp4", "tumblr_q0tiiln9tt1xnckdk_720": "tumblr_q0tiiln9tt1xnckdk_720.mp4", "tumblr_q1fu0o3pwc1yym5l4": "tumblr_q1fu0o3pwc1yym5l4.mp4", "tumblr_q1x2rgk4di1vmobp0": "tumblr_q1x2rgk4di1vmobp0.mp4", "tumblr_q25hbhhmlu1x4pmbc": "tumblr_q25hbhhmlu1x4pmbc.mp4", "tumblr_q2xxyazp681qb43os": "tumblr_q2xxyazp681qb43os.mp4", "tumblr_q3k09e6lkm1yym5l4": "tumblr_q3k09e6lkm1yym5l4.mp4", "tumblr_q4e9yngshz1yowoi1": "tumblr_q4e9yngshz1yowoi1.mp4", "tumblr_q799hw2ti91s1ddrj": "tumblr_q799hw2ti91s1ddrj.mp4", "tumblr_q7xr0ihfny1rmij36": "tumblr_q7xr0ihfny1rmij36.mp4", "tumblr_q8f813ghj51yttqag": "tumblr_q8f813ghj51yttqag.mp4", "tumblr_q8qbdq7oer1s8ba22": "tumblr_q8qbdq7oer1s8ba22.mp4", "tumblr_q90ozzqhty1qjbz3w": "tumblr_q90ozzqhty1qjbz3w.mp4", "tumblr_q98zp21tkh1y5o966": "tumblr_q98zp21tkh1y5o966.mp4", "tumblr_qb2335qsyr1rv8mhv_720": "tumblr_qb2335qsyr1rv8mhv_720.mp4", "tumblr_qbjgncf2y31qev8ce": "tumblr_qbjgncf2y31qev8ce.mp4", "tumblr_qbjjwixbkb1ugrbaa": "tumblr_qbjjwixbkb1ugrbaa.mp4", "tumblr_qbm1psgnth1xn7gce": "tumblr_qbm1psgnth1xn7gce.mp4", "tumblr_qbpwn8hf431uwm4bj": "tumblr_qbpwn8hf431uwm4bj.mp4", "tumblr_qcixzrehec1rndv4t": "tumblr_qcixzrehec1rndv4t.mp4", "tumblr_qcktyo2n6x1wl2mro": "tumblr_qcktyo2n6x1wl2mro.mp4", "tumblr_qd14sc1zcz1yg9abg": "tumblr_qd14sc1zcz1yg9abg.mp4", "tumblr_qdgncuguqd1x4pmbc": "tumblr_qdgncuguqd1x4pmbc.mp4", "tumblr_qdsr7m8sog1ya40ij": "tumblr_qdsr7m8sog1ya40ij.mp4", "tumblr_qdv6r4j7l51ry1uzo": "tumblr_qdv6r4j7l51ry1uzo.mp4", "tumblr_qehf84j1vf1xoyw8p": "tumblr_qehf84j1vf1xoyw8p.mp4", "tumblr_qfc3fgiqrb1wmhpzh_720": "tumblr_qfc3fgiqrb1wmhpzh_720.mp4", "tumblr_qfgbyyvddj1yri6y0": "tumblr_qfgbyyvddj1yri6y0.mp4", "tumblr_qfll0cvr4l1yvwbim": "tumblr_qfll0cvr4l1yvwbim.mp4", "tumblr_qfxxev71zt1y54s2v": "tumblr_qfxxev71zt1y54s2v.mp4", "tumblr_qgfg7uurh41wsqdel_720": "tumblr_qgfg7uurh41wsqdel_720.mp4", "tumblr_qhejmpjvzs1tkir8g": "tumblr_qhejmpjvzs1tkir8g.mp4", "tumblr_qhhed200971r7eexa": "tumblr_qhhed200971r7eexa.mp4", "tumblr_qhpiexdp451si01xj": "tumblr_qhpiexdp451si01xj.mp4", "tumblr_qja6r95k4b1qk3d2x": "tumblr_qja6r95k4b1qk3d2x.mp4", "tumblr_qjkyxeikcy1seiyci": "tumblr_qjkyxeikcy1seiyci.mp4", "tumblr_qkbqlem9s91v7xdh6": "tumblr_qkbqlem9s91v7xdh6.mp4", "tumblr_qkbyhdlyji1ufotlr_720": "tumblr_qkbyhdlyji1ufotlr_720.mp4", "tumblr_qkh09zwfrf1ye9vv1": "tumblr_qkh09zwfrf1ye9vv1.mp4", "tumblr_ql6pf5bmme1qfgq3v": "tumblr_ql6pf5bmme1qfgq3v.mp4", "tumblr_ql74jko7ug1vlete3": "tumblr_ql74jko7ug1vlete3.mp4", "tumblr_qlpq08e0ek1yh1kk0": "tumblr_qlpq08e0ek1yh1kk0.mp4", "tumblr_qlwrbnuzlp1xy51ep": "tumblr_qlwrbnuzlp1xy51ep.mp4", "tumblr_qmn6ak2ujd1yih4m9": "tumblr_qmn6ak2ujd1yih4m9.mp4", "tumblr_qnzo48p8ph1y54s2v": "tumblr_qnzo48p8ph1y54s2v.mp4", "tumblr_qoj6tzy7a41vy91o2": "tumblr_qoj6tzy7a41vy91o2.mp4", "tumblr_qonn8rdhau1sxr884": "tumblr_qonn8rdhau1sxr884.mp4", "tumblr_qosv2zcpws1v7xdh6": "tumblr_qosv2zcpws1v7xdh6.mp4", "tumblr_qp1bsjzuzh1yefkvd": "tumblr_qp1bsjzuzh1yefkvd.mp4", "tumblr_qp4d3h43ul1txvytp": "tumblr_qp4d3h43ul1txvytp.mp4", "tumblr_qp6b0phqdw1qjnhqg": "tumblr_qp6b0phqdw1qjnhqg.mp4", "tumblr_qp9z10frbx1xdvjtm": "tumblr_qp9z10frbx1xdvjtm.mp4", "tumblr_qpaz42aljv1z6jfls": "tumblr_qpaz42aljv1z6jfls.mp4", "tumblr_qpknh3uu3g1vtts30_720": "tumblr_qpknh3uu3g1vtts30_720.mp4", "tumblr_qplyg4lj6v1y686sz": "tumblr_qplyg4lj6v1y686sz.mp4", "tumblr_qpvqjgjcwk1y4p0x6": "tumblr_qpvqjgjcwk1y4p0x6.mp4", "tumblr_qqagoslwdg1w8lequ": "tumblr_qqagoslwdg1w8lequ.mp4", "tumblr_qqcajl6u251y98erd_720": "tumblr_qqcajl6u251y98erd_720.mp4", "tumblr_qqhn8gxsie1uvv5gh": "tumblr_qqhn8gxsie1uvv5gh.mp4", "tumblr_qqindkfonu1z7ukda": "tumblr_qqindkfonu1z7ukda.mp4", "tumblr_qqjd54wun41y4j5aa": "tumblr_qqjd54wun41y4j5aa.mp4", "tumblr_qqrmdeymoe1szwlr0": "tumblr_qqrmdeymoe1szwlr0.mp4", "tumblr_qqv8e4v2p81uncty6": "tumblr_qqv8e4v2p81uncty6.mp4", "tumblr_qrcocvqoew1z67npc": "tumblr_qrcocvqoew1z67npc.mp4", "tumblr_qrg3v2rkuw1xgom7z": "tumblr_qrg3v2rkuw1xgom7z.mp4", "tumblr_qro23kandl1y8aven": "tumblr_qro23kandl1y8aven.mp4", "tumblr_qrzs8alir01ylx4u7": "tumblr_qrzs8alir01ylx4u7.mp4", "tumblr_qscntczstr1rgaeps": "tumblr_qscntczstr1rgaeps.mp4", "tumblr_qsi9yjrvyv1unz71b": "tumblr_qsi9yjrvyv1unz71b.mp4", "tumblr_qsxd9ta7mx1z9rw1w_720": "tumblr_qsxd9ta7mx1z9rw1w_720.mp4", "tumblr_qszbamec4n1u9ealm": "tumblr_qszbamec4n1u9ealm.mp4", "tumblr_qszhjhtzmz1xlxjza": "tumblr_qszhjhtzmz1xlxjza.mp4", "tumblr_qt0izosczf1wsdsxa": "tumblr_qt0izosczf1wsdsxa.mp4", "tumblr_qtdpbopcpq1yjz13y": "tumblr_qtdpbopcpq1yjz13y.mp4", "tumblr_qtl3jqnool1z3d1y0": "tumblr_qtl3jqnool1z3d1y0.mp4", "tumblr_qtsjfgfsw01z4xvoq": "tumblr_qtsjfgfsw01z4xvoq.mp4", "tumblr_qtvlvhqh0v1y4l641": "tumblr_qtvlvhqh0v1y4l641.mp4", "tumblr_qu1hnd3wjw1ym1g8h1": "tumblr_qu1hnd3wjw1ym1g8h1.mp4", "tumblr_qu706smvbx1x4pmbc": "tumblr_qu706smvbx1x4pmbc.mp4", "tumblr_queragdb3u1xlgs6y": "tumblr_queragdb3u1xlgs6y.mp4", "tumblr_quinyhcict1x2sb3u": "tumblr_quinyhcict1x2sb3u.mp4", "tumblr_quwhk8yifs1qaekxx": "tumblr_quwhk8yifs1qaekxx.mp4", "tumblr_quy0yyojr41sglkei_720": "tumblr_quy0yyojr41sglkei_720.mp4", "tumblr_qvq1bbmhsl1qep3h6": "tumblr_qvq1bbmhsl1qep3h6.mp4", "tumblr_qwgrvao5nf1z69592": "tumblr_qwgrvao5nf1z69592.mp4", "tumblr_qwnimc0kmq1v43hvg": "tumblr_qwnimc0kmq1v43hvg.mp4", "tumblr_qwrawtnod91ye9vv1": "tumblr_qwrawtnod91ye9vv1.mp4", "tumblr_qx0uqjbzlk1z5lzrl": "tumblr_qx0uqjbzlk1z5lzrl.mp4", "tumblr_qx6ws0dqmg1rq84xg": "tumblr_qx6ws0dqmg1rq84xg.mp4", "tumblr_qxec9uc20w1qjnhqg1": "tumblr_qxec9uc20w1qjnhqg1.mp4", "tumblr_qxtolnq9ow1x6rok9": "tumblr_qxtolnq9ow1x6rok9.mp4", "tumblr_qxws4eigy11ylx4u7": "tumblr_qxws4eigy11ylx4u7.mp4", "tumblr_qxx02cvthu1rnx060": "tumblr_qxx02cvthu1rnx060.mp4", "tumblr_qy9emglwqv1x4pmbc": "tumblr_qy9emglwqv1x4pmbc.mp4", "tumblr_qyhb34fmnb1qzeo2z": "tumblr_qyhb34fmnb1qzeo2z.mp4", "tumblr_qymo64d5p01vym9pt": "tumblr_qymo64d5p01vym9pt.mp4", "tumblr_qyrichecbc1vij12m": "tumblr_qyrichecbc1vij12m.mp4", "tumblr_qyrkryjovb1x4pmbc": "tumblr_qyrkryjovb1x4pmbc.mp4", "tumblr_qysc55isxe1z7ukda": "tumblr_qysc55isxe1z7ukda.mp4", "tumblr_qytlknq5wk1r0uzl6": "tumblr_qytlknq5wk1r0uzl6.mp4", "tumblr_qyvyikvzve1xpm6vs": "tumblr_qyvyikvzve1xpm6vs.mp4", "tumblr_qz7mzrb5zz1y54s2v": "tumblr_qz7mzrb5zz1y54s2v.mp4", "tumblr_r02uimoygh1r79r4w": "tumblr_r02uimoygh1r79r4w.mp4", "tumblr_r03ke82nhh1xdi286": "tumblr_r03ke82nhh1xdi286.mp4", "tumblr_r08gwi4m881z4dj7t": "tumblr_r08gwi4m881z4dj7t.mp4", "tumblr_r0bl35fudy1vjakdo": "tumblr_r0bl35fudy1vjakdo.mp4", "tumblr_r0s19qdfls1ujkkfn": "tumblr_r0s19qdfls1ujkkfn.mp4", "tumblr_r0syz8uvwb1y54s2v": "tumblr_r0syz8uvwb1y54s2v.mp4", "tumblr_r0zdlts1ga1vmobp0": "tumblr_r0zdlts1ga1vmobp0.mp4", "tumblr_r11xbhdvuy1ywzg15": "tumblr_r11xbhdvuy1ywzg15.mp4", "tumblr_r13hdlly961z8fjg1": "tumblr_r13hdlly961z8fjg1.mp4", "tumblr_r16fx4bvm51t4f51m1": "tumblr_r16fx4bvm51t4f51m1.mp4", "tumblr_r17uu7xcjk1uy8v6v": "tumblr_r17uu7xcjk1uy8v6v.mp4", "tumblr_r18u24ndcu1vmobp0_720": "tumblr_r18u24ndcu1vmobp0_720.mp4", "tumblr_r1iit3moox1u0fuse": "tumblr_r1iit3moox1u0fuse.mp4", "tumblr_r1lizwpi7y1vij12m": "tumblr_r1lizwpi7y1vij12m.mp4", "tumblr_r1uozsdz981z5lzrl": "tumblr_r1uozsdz981z5lzrl.mp4", "tumblr_r25y6pxxck1xddfa0": "tumblr_r25y6pxxck1xddfa0.mp4", "tumblr_r28lad2qzj1v43hvg": "tumblr_r28lad2qzj1v43hvg.mp4", "tumblr_r29qa1zylk1y4klfl": "tumblr_r29qa1zylk1y4klfl.mp4", "tumblr_r2bh6neakf1s52b0v": "tumblr_r2bh6neakf1s52b0v.mp4", "tumblr_r2dbccnznq1r0uzl6": "tumblr_r2dbccnznq1r0uzl6.mp4", "tumblr_r2fdmzn4ns1ye1yab": "tumblr_r2fdmzn4ns1ye1yab.mp4", "tumblr_r2l0vsqbxm1s9rurb": "tumblr_r2l0vsqbxm1s9rurb.mp4", "tumblr_r2rtbly1l91yefkvd": "tumblr_r2rtbly1l91yefkvd.mp4", "tumblr_r35f80px9z1vij12m": "tumblr_r35f80px9z1vij12m.mp4", "tumblr_r3fjy4g0wl1y54s2v": "tumblr_r3fjy4g0wl1y54s2v.mp4", "tumblr_r3njg6nkup1w5pr9j": "tumblr_r3njg6nkup1w5pr9j.mp4", "tumblr_r3u4a1ezky1vnes7l": "tumblr_r3u4a1ezky1vnes7l.mp4", "tumblr_r433cmyzam1zubnwn_720": "tumblr_r433cmyzam1zubnwn_720.mp4", "tumblr_r4b1uuttcr1wmu9gj": "tumblr_r4b1uuttcr1wmu9gj.mp4", "tumblr_r4dmzalrwg1vmobp01": "tumblr_r4dmzalrwg1vmobp01.mp4", "tumblr_r4i59lkpae1yb94xp_720": "tumblr_r4i59lkpae1yb94xp_720.mp4", "tumblr_r4mvmlkewc1r2dbtp": "tumblr_r4mvmlkewc1r2dbtp.mp4", "tumblr_r4qsvrks1d1ylx4u7": "tumblr_r4qsvrks1d1ylx4u7.mp4", "tumblr_r4w1grxwwa1yc3lzu": "tumblr_r4w1grxwwa1yc3lzu.mp4", "tumblr_r4y3tqh0ts1qev8ce": "tumblr_r4y3tqh0ts1qev8ce.mp4", "tumblr_r57l37ivdi1x4pmbc": "tumblr_r57l37ivdi1x4pmbc.mp4", "tumblr_r59e2vx3pe1umyhub": "tumblr_r59e2vx3pe1umyhub.mp4", "tumblr_r5ebvzrey31z3d5j0": "tumblr_r5ebvzrey31z3d5j0.mp4", "tumblr_r5glgnkuuj1yjz13y": "tumblr_r5glgnkuuj1yjz13y.mp4", "tumblr_r5kg3ywmzp1v7xdh6": "tumblr_r5kg3ywmzp1v7xdh6.mp4", "tumblr_r5r98tuik21z7d7sr": "tumblr_r5r98tuik21z7d7sr.mp4", "tumblr_r5zdsglqep1ybplg0": "tumblr_r5zdsglqep1ybplg0.mp4", "tumblr_r66hoepkfc1udzxps1": "tumblr_r66hoepkfc1udzxps1.mp4", "tumblr_r6awwkoyhr1z8ckep": "tumblr_r6awwkoyhr1z8ckep.mp4", "tumblr_r6aywmkocd1r1zw9e": "tumblr_r6aywmkocd1r1zw9e.mp4", "tumblr_r6jk1pukce1zurqo3": "tumblr_r6jk1pukce1zurqo3.mp4", "tumblr_r6s058rpiu1yp75af_720": "tumblr_r6s058rpiu1yp75af_720.mp4", "tumblr_r6ufreychq1vmobp0_720": "tumblr_r6ufreychq1vmobp0_720.mp4", "tumblr_r75idmwmxq1s3s35z": "tumblr_r75idmwmxq1s3s35z.mp4", "tumblr_r7f519ubsz1qjnhqg": "tumblr_r7f519ubsz1qjnhqg.mp4", "tumblr_r7hr0tv4sk1unz71b_720": "tumblr_r7hr0tv4sk1unz71b_720.mp4", "tumblr_r7mlrcuzwn1vij12m": "tumblr_r7mlrcuzwn1vij12m.mp4", "tumblr_r7patxrbch1y54s2v": "tumblr_r7patxrbch1y54s2v.mp4", "tumblr_r7q2q9mxlh1zs633i": "tumblr_r7q2q9mxlh1zs633i.mp4", "tumblr_r7u5ovtigh1y879bt": "tumblr_r7u5ovtigh1y879bt.mp4", "tumblr_r7w47spsx21vij12m": "tumblr_r7w47spsx21vij12m.mp4", "tumblr_r81aiodk711s2xa1q": "tumblr_r81aiodk711s2xa1q.mp4", "tumblr_r86nqhn5e71zurqo3_720": "tumblr_r86nqhn5e71zurqo3_720.mp4", "tumblr_r89ig3r3y81yn587p_720": "tumblr_r89ig3r3y81yn587p_720.mp4", "tumblr_r8euq8h9r11sjcnrz": "tumblr_r8euq8h9r11sjcnrz.mp4", "tumblr_r8i1u16elk1yksmbx": "tumblr_r8i1u16elk1yksmbx.mp4", "tumblr_r8mejifymz1zxblu6": "tumblr_r8mejifymz1zxblu6.mp4", "tumblr_r8mymjqpkk1w5pr9j": "tumblr_r8mymjqpkk1w5pr9j.mp4", "tumblr_r8n6gpmyo71sxxjp9_720": "tumblr_r8n6gpmyo71sxxjp9_720.mp4", "tumblr_r94p3rf9v21vb46le_720": "tumblr_r94p3rf9v21vb46le_720.mp4", "tumblr_r966i8tz3h1x4pmbc": "tumblr_r966i8tz3h1x4pmbc.mp4", "tumblr_r9wni0j1dc1yjz13y": "tumblr_r9wni0j1dc1yjz13y.mp4", "tumblr_raaxuxmb4q1uv2d0a": "tumblr_raaxuxmb4q1uv2d0a.mp4", "tumblr_rabhlzkzqq1xji3o7": "tumblr_rabhlzkzqq1xji3o7.mp4", "tumblr_raczwng2il1qejbir": "tumblr_raczwng2il1qejbir.mp4", "tumblr_ragrv2rxo91ylx4u7": "tumblr_ragrv2rxo91ylx4u7.mp4", "tumblr_rajujvfpt71x4pmbc1": "tumblr_rajujvfpt71x4pmbc1.mp4", "tumblr_raw6t3ukry1z58l44": "tumblr_raw6t3ukry1z58l44.mp4", "tumblr_rawvjpdbye1x4pmbc": "tumblr_rawvjpdbye1x4pmbc.mp4", "tumblr_rb0lpzthzn1yvdogn": "tumblr_rb0lpzthzn1yvdogn.mp4", "tumblr_rb297af9l01yafjb5": "tumblr_rb297af9l01yafjb5.mp4", "tumblr_rb4ue4xbmn1tkir8g": "tumblr_rb4ue4xbmn1tkir8g.mp4", "tumblr_rb5fj7mzsu1qjnhqg": "tumblr_rb5fj7mzsu1qjnhqg.mp4", "tumblr_rb6jmpmrac1z03uzm": "tumblr_rb6jmpmrac1z03uzm.mp4", "tumblr_rb85boasbk1qejbir": "tumblr_rb85boasbk1qejbir.mp4", "tumblr_rb8vs2nj2w1unz71b": "tumblr_rb8vs2nj2w1unz71b.mp4", "tumblr_rbpy8dxo4d1ylx4u7": "tumblr_rbpy8dxo4d1ylx4u7.mp4", "tumblr_rbsswm2qyw1sputqp": "tumblr_rbsswm2qyw1sputqp.mp4", "tumblr_rbsttoq1ff1yeaczo": "tumblr_rbsttoq1ff1yeaczo.mp4", "tumblr_rbyb5a6ayn1y37vow": "tumblr_rbyb5a6ayn1y37vow.mp4", "tumblr_rbyu202hao1y73t5z": "tumblr_rbyu202hao1y73t5z.mp4", "tumblr_rc1hora2mb1s7k78b": "tumblr_rc1hora2mb1s7k78b.mp4", "tumblr_rc38dvqyjl1udzxps": "tumblr_rc38dvqyjl1udzxps.mp4", "tumblr_rcax6kgnlp1yhkxjj_720": "tumblr_rcax6kgnlp1yhkxjj_720.mp4", "tumblr_rcdlmafq7z1ylx4u7": "tumblr_rcdlmafq7z1ylx4u7.mp4", "tumblr_rceke8xnmt1zurqo3": "tumblr_rceke8xnmt1zurqo3.mp4", "tumblr_rckhmvwoo91shzk1m_720": "tumblr_rckhmvwoo91shzk1m_720.mp4", "tumblr_rcq9anb9lc1umyhub": "tumblr_rcq9anb9lc1umyhub.mp4", "tumblr_rcvdc58ums1znffzm": "tumblr_rcvdc58ums1znffzm.mp4", "tumblr_rd7rfejnup1zuy7pe": "tumblr_rd7rfejnup1zuy7pe.mp4", "tumblr_rd960hdefi1w5pr9j": "tumblr_rd960hdefi1w5pr9j.mp4", "tumblr_rda8hw0udk1xq2d9i_720": "tumblr_rda8hw0udk1xq2d9i_720.mp4", "tumblr_rdsnf452wn1smecn2": "tumblr_rdsnf452wn1smecn2.mp4", "tumblr_rdzx7787ds1xmebob_720": "tumblr_rdzx7787ds1xmebob_720.mp4", "tumblr_re1xz9wpzo1xlgs6y": "tumblr_re1xz9wpzo1xlgs6y.mp4", "tumblr_re40idwe2e1yiaof7_7201": "tumblr_re40idwe2e1yiaof7_7201.mp4", "tumblr_re428xx2au1r7mmfh": "tumblr_re428xx2au1r7mmfh.mp4", "tumblr_re53pgvwon1z1f8jq": "tumblr_re53pgvwon1z1f8jq.mp4", "tumblr_re752kfqfj1z93tyx": "tumblr_re752kfqfj1z93tyx.mp4", "tumblr_reefxukmi11z8cf6d": "tumblr_reefxukmi11z8cf6d.mp4", "tumblr_rejytpakhk1qev8ce": "tumblr_rejytpakhk1qev8ce.mp4", "tumblr_renlxvazzu1w5pr9j1": "tumblr_renlxvazzu1w5pr9j1.mp4", "tumblr_rez0bvrost1zp1oam": "tumblr_rez0bvrost1zp1oam.mp4", "tumblr_rf77cpb70a1zbtu7g": "tumblr_rf77cpb70a1zbtu7g.mp4", "tumblr_rfkbomp2wj1ylx4u7": "tumblr_rfkbomp2wj1ylx4u7.mp4", "tumblr_rfluqltsjt1u890nd": "tumblr_rfluqltsjt1u890nd.mp4", "tumblr_rfo95kjgiv1s1ddrj": "tumblr_rfo95kjgiv1s1ddrj.mp4", "tumblr_rfoctbs4vm1qg690e": "tumblr_rfoctbs4vm1qg690e.mp4", "tumblr_rfsf8w8qtc1qzezhm": "tumblr_rfsf8w8qtc1qzezhm.mp4", "tumblr_rfsx05yqwf1x4pmbc": "tumblr_rfsx05yqwf1x4pmbc.mp4", "tumblr_rfsxrptdfe1y54s2v": "tumblr_rfsxrptdfe1y54s2v.mp4", "tumblr_rfv9juthnk1z67npc": "tumblr_rfv9juthnk1z67npc.mp4", "tumblr_rfyjqglhal1zp4n3d": "tumblr_rfyjqglhal1zp4n3d.mp4", "tumblr_rg085ptzqa1rc4ohq": "tumblr_rg085ptzqa1rc4ohq.mp4", "tumblr_rg2f3upmih1zs633i": "tumblr_rg2f3upmih1zs633i.mp4", "tumblr_rg2kjrth0u1yzx85i": "tumblr_rg2kjrth0u1yzx85i.mp4", "tumblr_rg2nmkxw511znffzm": "tumblr_rg2nmkxw511znffzm.mp4", "tumblr_rg5i9cloie1sjcnrz": "tumblr_rg5i9cloie1sjcnrz.mp4", "tumblr_rg71tpjwnh1vmobp0_720": "tumblr_rg71tpjwnh1vmobp0_720.mp4", "tumblr_rga1nzveec1r5er4w_720": "tumblr_rga1nzveec1r5er4w_720.mp4", "tumblr_rghe3pctik1z5xnal": "tumblr_rghe3pctik1z5xnal.mp4", "tumblr_rgmtuwrgpy1zygiub": "tumblr_rgmtuwrgpy1zygiub.mp4", "tumblr_rh3ea5jopf1zunae1": "tumblr_rh3ea5jopf1zunae1.mp4", "tumblr_rh4jk7bnel1rzpzre": "tumblr_rh4jk7bnel1rzpzre.mp4", "tumblr_rhag8krlr81znffzm": "tumblr_rhag8krlr81znffzm.mp4", "tumblr_rhm7gqwnqs1vyya9h": "tumblr_rhm7gqwnqs1vyya9h.mp4", "tumblr_rhoc5ryrs41qjtzkc": "tumblr_rhoc5ryrs41qjtzkc.mp4", "tumblr_rhswkl3ezj1w5pr9j": "tumblr_rhswkl3ezj1w5pr9j.mp4", "tumblr_rhtdrj9bxc1rpd0k1": "tumblr_rhtdrj9bxc1rpd0k1.mp4", "tumblr_rhwrcqxscg1vmay6q": "tumblr_rhwrcqxscg1vmay6q.mp4", "tumblr_rhyhsmj5rt1z8ckep": "tumblr_rhyhsmj5rt1z8ckep.mp4", "tumblr_ri02ogq2lc1zy0blv": "tumblr_ri02ogq2lc1zy0blv.mp4", "tumblr_ri4kwgygrt1qejbir": "tumblr_ri4kwgygrt1qejbir.mp4", "tumblr_riekbzhgtx1uealtn": "tumblr_riekbzhgtx1uealtn.mp4", "tumblr_riy9l7ygms1zaldg3": "tumblr_riy9l7ygms1zaldg3.mp4", "tumblr_rj0xsn334e1zg81l7": "tumblr_rj0xsn334e1zg81l7.mp4", "tumblr_rj12j1bymq1rfm5rk": "tumblr_rj12j1bymq1rfm5rk.mp4", "tumblr_rj5oejrrt41rs8m6x": "tumblr_rj5oejrrt41rs8m6x.mp4", "tumblr_rj6ggapubd1umyhub": "tumblr_rj6ggapubd1umyhub.mp4", "tumblr_rj8y8ynxwb1x4pmbc": "tumblr_rj8y8ynxwb1x4pmbc.mp4", "tumblr_rj8yacrthu1ujdpk3": "tumblr_rj8yacrthu1ujdpk3.mp4", "tumblr_rje9wxhg4p1zds1bl": "tumblr_rje9wxhg4p1zds1bl.mp4", "tumblr_rjeedqlc6m1ycf0uc_720": "tumblr_rjeedqlc6m1ycf0uc_720.mp4", "tumblr_rjfa5yx3xv1xlgs6y": "tumblr_rjfa5yx3xv1xlgs6y.mp4", "tumblr_rjheuu8tdg1y54s2v": "tumblr_rjheuu8tdg1y54s2v.mp4", "tumblr_rjisk5qs4x1yxx4cl": "tumblr_rjisk5qs4x1yxx4cl.mp4", "tumblr_rjne4zikxe1s1ddrj": "tumblr_rjne4zikxe1s1ddrj.mp4", "tumblr_rjz7sjpda81u890nd": "tumblr_rjz7sjpda81u890nd.mp4", "tumblr_rk41nrdzwd1zwpy2k": "tumblr_rk41nrdzwd1zwpy2k.mp4", "tumblr_rk74ko5it31y54s2v": "tumblr_rk74ko5it31y54s2v.mp4", "tumblr_rkbh5ez6dj1zs633i": "tumblr_rkbh5ez6dj1zs633i.mp4", "tumblr_rkj8o3yzkc1vg0r9t_720": "tumblr_rkj8o3yzkc1vg0r9t_720.mp4", "tumblr_rklwywfir71z8p5jx": "tumblr_rklwywfir71z8p5jx.mp4", "tumblr_rkuc2uimxu1yhkxjj": "tumblr_rkuc2uimxu1yhkxjj.mp4", "tumblr_rkuytvawjr1vb7ar51": "tumblr_rkuytvawjr1vb7ar51.mp4", "tumblr_rkvxyjl9mz1xoyw8p_r1": "tumblr_rkvxyjl9mz1xoyw8p_r1.mp4", "tumblr_rlavouvis01zhk7qu": "tumblr_rlavouvis01zhk7qu.mp4", "tumblr_rlaxy1gwmm1u890nd_720": "tumblr_rlaxy1gwmm1u890nd_720.mp4", "tumblr_rlbv3qgroe1xoyw8p_720": "tumblr_rlbv3qgroe1xoyw8p_720.mp4", "tumblr_rlf77sktus1z67npc": "tumblr_rlf77sktus1z67npc.mp4", "tumblr_rllsiytctd1t07xg4": "tumblr_rllsiytctd1t07xg4.mp4", "tumblr_rlt72fpdga1udzxps": "tumblr_rlt72fpdga1udzxps.mp4", "tumblr_rm83zayduk1zvx5ha": "tumblr_rm83zayduk1zvx5ha.mp4", "tumblr_rmahkbya6t1y686sz": "tumblr_rmahkbya6t1y686sz.mp4", "tumblr_rmcny1nhjs1sic8bl": "tumblr_rmcny1nhjs1sic8bl.mp4", "tumblr_rmdwpjx6yw1ruqtxu": "tumblr_rmdwpjx6yw1ruqtxu.mp4", "tumblr_rmg8ewlr1y1yjf3mv": "tumblr_rmg8ewlr1y1yjf3mv.mp4", "tumblr_rmpy2ki4fi1zhr80f_720": "tumblr_rmpy2ki4fi1zhr80f_720.mp4", "tumblr_rmsewqgvcf1umyhub_720": "tumblr_rmsewqgvcf1umyhub_720.mp4", "tumblr_rmx4iq2rln1w7wbpk": "tumblr_rmx4iq2rln1w7wbpk.mp4", "tumblr_rn2ddrbzxq1ykp17t": "tumblr_rn2ddrbzxq1ykp17t.mp4", "tumblr_rn5b8tgfho1vwyv80": "tumblr_rn5b8tgfho1vwyv80.mp4", "tumblr_rnhxakeael1y54s2v": "tumblr_rnhxakeael1y54s2v.mp4", "tumblr_rnj4l7r6a81rrruro": "tumblr_rnj4l7r6a81rrruro.mp4", "tumblr_rnwcimxndr1zb1ms9": "tumblr_rnwcimxndr1zb1ms9.mp4", "tumblr_rnxeti6gjn1z69592": "tumblr_rnxeti6gjn1z69592.mp4", "tumblr_ro064ovlr61z7ukda": "tumblr_ro064ovlr61z7ukda.mp4", "tumblr_ro1fdb1fbo1r00k2k": "tumblr_ro1fdb1fbo1r00k2k.mp4", "tumblr_ro5rf1q9bo1qjnhqg": "tumblr_ro5rf1q9bo1qjnhqg.mp4", "tumblr_roc7bxha3a1yd1erx_720": "tumblr_roc7bxha3a1yd1erx_720.mp4", "tumblr_rocj60vnxe1zizeiu": "tumblr_rocj60vnxe1zizeiu.mp4", "tumblr_roeocqjxeg1z67npc": "tumblr_roeocqjxeg1z67npc.mp4", "tumblr_roji3u6ipl1vnghde": "tumblr_roji3u6ipl1vnghde.mp4", "tumblr_rok05yte9n1stqyka_720": "tumblr_rok05yte9n1stqyka_720.mp4", "tumblr_rolpdgfehg1x4pmbc": "tumblr_rolpdgfehg1x4pmbc.mp4", "tumblr_roo130db7m1zurqo3": "tumblr_roo130db7m1zurqo3.mp4", "tumblr_rp1iivfpco1y54s2v": "tumblr_rp1iivfpco1y54s2v.mp4", "tumblr_rp4swrrsgm1r5z507": "tumblr_rp4swrrsgm1r5z507.mp4", "tumblr_rpph80qjag1un8t8y": "tumblr_rpph80qjag1un8t8y.mp4", "tumblr_rpq4lssidp1w5pr9j": "tumblr_rpq4lssidp1w5pr9j.mp4", "tumblr_rpvq1c2gfw1vmobp0_720": "tumblr_rpvq1c2gfw1vmobp0_720.mp4", "tumblr_rpx3qiewrw1rd9hsl": "tumblr_rpx3qiewrw1rd9hsl.mp4", "tumblr_rqbois1kz31qejbir": "tumblr_rqbois1kz31qejbir.mp4", "tumblr_rqcwoahb431tbb55m_720": "tumblr_rqcwoahb431tbb55m_720.mp4", "tumblr_rqqldgkxz51y51wgl": "tumblr_rqqldgkxz51y51wgl.mp4", "tumblr_rr9j0tnc261tvhzlo": "tumblr_rr9j0tnc261tvhzlo.mp4", "tumblr_rraqyvqlqj1w5pr9j": "tumblr_rraqyvqlqj1w5pr9j.mp4", "tumblr_rrfkr3vkig1xwedvf": "tumblr_rrfkr3vkig1xwedvf.mp4", "tumblr_rrhrjn7v7n1wgqtvi": "tumblr_rrhrjn7v7n1wgqtvi.mp4", "tumblr_rrp1cubb1w1qejbir": "tumblr_rrp1cubb1w1qejbir.mp4", "tumblr_rrpusfk4eh1qjnhqg": "tumblr_rrpusfk4eh1qjnhqg.mp4", "tumblr_rrq4ratbso1unz71b": "tumblr_rrq4ratbso1unz71b.mp4", "tumblr_rrwsd7chye1xoyw8p": "tumblr_rrwsd7chye1xoyw8p.mp4", "tumblr_rs04rudlzc1uoezqw": "tumblr_rs04rudlzc1uoezqw.mp4", "tumblr_rs376qf4sv1a1i6yy": "tumblr_rs376qf4sv1a1i6yy.mp4", "tumblr_rsakiajzhp1vbdnor": "tumblr_rsakiajzhp1vbdnor.mp4", "tumblr_rsbmrfhyot1yxv6w4": "tumblr_rsbmrfhyot1yxv6w4.mp4", "tumblr_rscdeylf531w5pr9j": "tumblr_rscdeylf531w5pr9j.mp4", "tumblr_rsfddakv9a1vfklhbfff": "tumblr_rsfddakv9a1vfklhbfff.mp4", "tumblr_rshdrqv2t11tvhzlo": "tumblr_rshdrqv2t11tvhzlo.mp4", "tumblr_rskz58sghe1qhs0m6": "tumblr_rskz58sghe1qhs0m6.mp4", "tumblr_rsmnpwbimy1z43swh_720": "tumblr_rsmnpwbimy1z43swh_720.mp4", "tumblr_rsqsgkntxj1zf1e2z": "tumblr_rsqsgkntxj1zf1e2z.mp4", "tumblr_rstul0hbac1y5ejpt": "tumblr_rstul0hbac1y5ejpt.mp4", "tumblr_rsu14qwyix1rd9hsl": "tumblr_rsu14qwyix1rd9hsl.mp4", "tumblr_rszl0h2osr1z7ukda": "tumblr_rszl0h2osr1z7ukda.mp4", "tumblr_rt2rlizwsj1x4pmbc": "tumblr_rt2rlizwsj1x4pmbc.mp4", "tumblr_rt31xxqlcs1ujg2ay": "tumblr_rt31xxqlcs1ujg2ay.mp4", "tumblr_rtbmiqksae1w5pr9j": "tumblr_rtbmiqksae1w5pr9j.mp4", "tumblr_rtboz01lbt1vmobp0": "tumblr_rtboz01lbt1vmobp0.mp4", "tumblr_rtf2rqs3ub1yajgpc": "tumblr_rtf2rqs3ub1yajgpc.mp4", "tumblr_rtju7b98et1t4f51m": "tumblr_rtju7b98et1t4f51m.mp4", "tumblr_rtlk7590yl1zs633i": "tumblr_rtlk7590yl1zs633i.mp4", "tumblr_rtu08tdqdk1w4j956": "tumblr_rtu08tdqdk1w4j956.mp4", "tumblr_ru08mplzbx1ydkkl5": "tumblr_ru08mplzbx1ydkkl5.mp4", "tumblr_ru3f7xehbj1yibpma": "tumblr_ru3f7xehbj1yibpma.mp4", "tumblr_ruepjvcmnp1yjz13y": "tumblr_ruepjvcmnp1yjz13y.mp4", "tumblr_ruewhsjaag1zik2zt_720": "tumblr_ruewhsjaag1zik2zt_720.mp4", "tumblr_rufc5eggv91qjnhqg": "tumblr_rufc5eggv91qjnhqg.mp4", "tumblr_run6ts1vnb1w5pr9j": "tumblr_run6ts1vnb1w5pr9j.mp4", "tumblr_run6wxg0h51w5pr9j": "tumblr_run6wxg0h51w5pr9j.mp4", "tumblr_run7c1v0sm1w5pr9j": "tumblr_run7c1v0sm1w5pr9j.mp4", "tumblr_ruz61u8uwl1zvw9u1": "tumblr_ruz61u8uwl1zvw9u1.mp4", "tumblr_rv0et0ffsf1w5pr9j": "tumblr_rv0et0ffsf1w5pr9j.mp4", "tumblr_rv6eyfwjw61yd1erx_720": "tumblr_rv6eyfwjw61yd1erx_720.mp4", "tumblr_rv9vjneixd1yjf3mv": "tumblr_rv9vjneixd1yjf3mv.mp4", "tumblr_rvoq3kn2f51yq0dl2_720": "tumblr_rvoq3kn2f51yq0dl2_720.mp4", "tumblr_rvzry4eisi1tjrwu3": "tumblr_rvzry4eisi1tjrwu3.mp4", "tumblr_rw1hnnqntm1ucoynk": "tumblr_rw1hnnqntm1ucoynk.mp4", "tumblr_rw30fe6mbg1qjnhqg": "tumblr_rw30fe6mbg1qjnhqg.mp4", "tumblr_rw4cq9d2rv1z5l7qe": "tumblr_rw4cq9d2rv1z5l7qe.mp4", "tumblr_rw5fx8nkgl1a1zhk7": "tumblr_rw5fx8nkgl1a1zhk7.mp4", "tumblr_rw9i8qloyb1un8t8y": "tumblr_rw9i8qloyb1un8t8y.mp4", "tumblr_rwfra8ef391xv4rgy": "tumblr_rwfra8ef391xv4rgy.mp4", "tumblr_rwin3zpb181a55lqo": "tumblr_rwin3zpb181a55lqo.mp4", "tumblr_rwmvfj1km21qejbir_720": "tumblr_rwmvfj1km21qejbir_720.mp4", "tumblr_rwo1q0udhk1u890nd": "tumblr_rwo1q0udhk1u890nd.mp4", "tumblr_rwu3e8lkaw1rfnzra": "tumblr_rwu3e8lkaw1rfnzra.mp4", "tumblr_rwuqb03ctu1wem4ug": "tumblr_rwuqb03ctu1wem4ug.mp4", "tumblr_rx385l20h81vx9xi5": "tumblr_rx385l20h81vx9xi5.mp4", "tumblr_rx937l5x1g1qejbir": "tumblr_rx937l5x1g1qejbir.mp4", "tumblr_rxpocdpbxu1x41t2d": "tumblr_rxpocdpbxu1x41t2d.mp4", "tumblr_rxy7kvjqxh1z2sv3k": "tumblr_rxy7kvjqxh1z2sv3k.mp4", "tumblr_ry7gioasqv1zxewsp_720": "tumblr_ry7gioasqv1zxewsp_720.mp4", "tumblr_ryb8tv9aru1vmobp0": "tumblr_ryb8tv9aru1vmobp0.mp4", "tumblr_ryg007debm1qjnhqg": "tumblr_ryg007debm1qjnhqg.mp4", "tumblr_ryjx4q1bke1y95toz": "tumblr_ryjx4q1bke1y95toz.mp4", "tumblr_rz3xo8lkgq1vwyv80": "tumblr_rz3xo8lkgq1vwyv80.mp4", "tumblr_rznavckbzp1a6wdmz_720": "tumblr_rznavckbzp1a6wdmz_720.mp4", "tumblr_rzpkxhtszi1x4pmbc": "tumblr_rzpkxhtszi1x4pmbc.mp4", "tumblr_s03vjpmxba1xfdj5z": "tumblr_s03vjpmxba1xfdj5z.mp4", "tumblr_s07m7vxz231a7joxk_720": "tumblr_s07m7vxz231a7joxk_720.mp4", "tumblr_s09x3pixvj1zl1zrz": "tumblr_s09x3pixvj1zl1zrz.mp4", "tumblr_s0gcdamuvq1v5t3ey": "tumblr_s0gcdamuvq1v5t3ey.mp4", "tumblr_s0grz74h561xgsqd0": "tumblr_s0grz74h561xgsqd0.mp4", "tumblr_s10h34cmmr1zj07jt": "tumblr_s10h34cmmr1zj07jt.mp4", "tumblr_s15t5gfquq1rd9hsl": "tumblr_s15t5gfquq1rd9hsl.mp4", "tumblr_s16yqk43g81xddfa0": "tumblr_s16yqk43g81xddfa0.mp4", "tumblr_s1ipcdvlrl1zf1e2z": "tumblr_s1ipcdvlrl1zf1e2z.mp4", "tumblr_s1iyd6p8md1u890nd": "tumblr_s1iyd6p8md1u890nd.mp4", "tumblr_s1kzp3zi7k1ykp17t": "tumblr_s1kzp3zi7k1ykp17t.mp4", "tumblr_s1o3mldeot1zrdgct": "tumblr_s1o3mldeot1zrdgct.mp4", "tumblr_s1taj9tehe1a3apju": "tumblr_s1taj9tehe1a3apju.mp4", "tumblr_s1vn9gpnhe1ujg2ay": "tumblr_s1vn9gpnhe1ujg2ay.mp4", "tumblr_s1zc80t5741z17rfw": "tumblr_s1zc80t5741z17rfw.mp4", "tumblr_s29dumma4s1z9bbv3": "tumblr_s29dumma4s1z9bbv3.mp4", "tumblr_s2co0y6tbw1rd9hsl": "tumblr_s2co0y6tbw1rd9hsl.mp4", "tumblr_s2cu8meq3t1w6jrbf": "tumblr_s2cu8meq3t1w6jrbf.mp4", "tumblr_s2dm9o0o1h1w5pr9j": "tumblr_s2dm9o0o1h1w5pr9j.mp4", "tumblr_s2lylwy1qa1z7ukda": "tumblr_s2lylwy1qa1z7ukda.mp4", "tumblr_s2mkythsmv1a970kb": "tumblr_s2mkythsmv1a970kb.mp4", "tumblr_s2pe2uwxq61ylh80v_720": "tumblr_s2pe2uwxq61ylh80v_720.mp4", "tumblr_s2sfrtjsyw1tki7xk": "tumblr_s2sfrtjsyw1tki7xk.mp4", "tumblr_s2vv7rs7oy1qa1gsx": "tumblr_s2vv7rs7oy1qa1gsx.mp4", "tumblr_s33xdn0jpm1tiu6k1": "tumblr_s33xdn0jpm1tiu6k1.mp4", "tumblr_s35qu6cgse1yq0dl2": "tumblr_s35qu6cgse1yq0dl2.mp4", "tumblr_s3ag2z5llg1qe2obp": "tumblr_s3ag2z5llg1qe2obp.mp4", "tumblr_s3dmdhyzez1xlgs6y": "tumblr_s3dmdhyzez1xlgs6y.mp4", "tumblr_s3mb4clkwu1a6j5zl": "tumblr_s3mb4clkwu1a6j5zl.mp4", "tumblr_s3un5sbqgh1rd9hsl": "tumblr_s3un5sbqgh1rd9hsl.mp4", "tumblr_s3wlukobx41sjhdwc": "tumblr_s3wlukobx41sjhdwc.mp4", "tumblr_s4cfa4aviy1wjjp2u": "tumblr_s4cfa4aviy1wjjp2u.mp4", "tumblr_s4kidk5oi91ush256": "tumblr_s4kidk5oi91ush256.mp4", "tumblr_s4rpwdx4cb1ykp17t_720": "tumblr_s4rpwdx4cb1ykp17t_720.mp4", "tumblr_s504nwjsye1ziw2k7_720": "tumblr_s504nwjsye1ziw2k7_720.mp4", "tumblr_s5646eso9h1ziw2k7": "tumblr_s5646eso9h1ziw2k7.mp4", "tumblr_s5bodx4o5b1anwy7r_720": "tumblr_s5bodx4o5b1anwy7r_720.mp4", "tumblr_s5j2tgzjhd1sic8bl": "tumblr_s5j2tgzjhd1sic8bl.mp4", "tumblr_s5llqloh261sskw6c": "tumblr_s5llqloh261sskw6c.mp4", "tumblr_s5p9pdig6z1a4k8wu": "tumblr_s5p9pdig6z1a4k8wu.mp4", "tumblr_s5qy9jdwpq1xlgs6y": "tumblr_s5qy9jdwpq1xlgs6y.mp4", "tumblr_s66g2dqzma1qejbir": "tumblr_s66g2dqzma1qejbir.mp4", "tumblr_s67ox48vij1qejbir": "tumblr_s67ox48vij1qejbir.mp4", "tumblr_s6lhh2dlea1zkhi0f": "tumblr_s6lhh2dlea1zkhi0f.mp4", "tumblr_s6p7z1gmw11yanlki": "tumblr_s6p7z1gmw11yanlki.mp4", "tumblr_s6us53pkxu1rqs4r5": "tumblr_s6us53pkxu1rqs4r5.mp4", "tumblr_s74v0x12th1a3m7hi_720": "tumblr_s74v0x12th1a3m7hi_720.mp4", "tumblr_s781ght1bd1wjjp2u": "tumblr_s781ght1bd1wjjp2u.mp4", "tumblr_s7f2p6ktml1qa1gsx": "tumblr_s7f2p6ktml1qa1gsx.mp4", "tumblr_s7fy56ckmy1z7uchi": "tumblr_s7fy56ckmy1z7uchi.mp4", "tumblr_s7ozn9ncrx1zfq4a9": "tumblr_s7ozn9ncrx1zfq4a9.mp4", "tumblr_s7tmqtomgp1vmobp0": "tumblr_s7tmqtomgp1vmobp0.mp4", "tumblr_s7zfp3npg41vmobp0_720": "tumblr_s7zfp3npg41vmobp0_720.mp4", "tumblr_s8564mv19c1x4pmbc": "tumblr_s8564mv19c1x4pmbc.mp4", "tumblr_s86tvr1x9w1ap2y9o_720": "tumblr_s86tvr1x9w1ap2y9o_720.mp4", "tumblr_s8odyqj51j1sic8bl": "tumblr_s8odyqj51j1sic8bl.mp4", "tumblr_s96wvmpjyi1yzx85i": "tumblr_s96wvmpjyi1yzx85i.mp4", "tumblr_s9813coagq1wpqb4v": "tumblr_s9813coagq1wpqb4v.mp4", "tumblr_s9orct4uaa1z7uchi": "tumblr_s9orct4uaa1z7uchi.mp4", "tumblr_s9qtf12ytp1zqsr34_720": "tumblr_s9qtf12ytp1zqsr34_720.mp4", "tumblr_s9rofeyyoo1api052": "tumblr_s9rofeyyoo1api052.mp4", "tumblr_s9sa6xfw9g1zohbkd": "tumblr_s9sa6xfw9g1zohbkd.mp4", "tumblr_sa5vsjcp1a1v7xdh6": "tumblr_sa5vsjcp1a1v7xdh6.mp4", "tumblr_sakae7p0ie1a7lp2h": "tumblr_sakae7p0ie1a7lp2h.mp4", "tumblr_sam50zvgby1qijjtj_720": "tumblr_sam50zvgby1qijjtj_720.mp4", "tumblr_sanbg8usdy1a7lp2h": "tumblr_sanbg8usdy1a7lp2h.mp4", "tumblr_sanw5vgrnw1wz3nj5": "tumblr_sanw5vgrnw1wz3nj5.mp4", "tumblr_sbghtgrttx1rd9hsl": "tumblr_sbghtgrttx1rd9hsl.mp4", "tumblr_sbn13g78ar1u5zg7m": "tumblr_sbn13g78ar1u5zg7m.mp4", "tumblr_sbrdxcjqvk1uzmmfy": "tumblr_sbrdxcjqvk1uzmmfy.mp4", "tumblr_sbsphtzpcs1wz3nj5": "tumblr_sbsphtzpcs1wz3nj5.mp4", "tumblr_sc39bairxa1r5ygmd": "tumblr_sc39bairxa1r5ygmd.mp4", "tumblr_sc3odbwh9w1xxyguz": "tumblr_sc3odbwh9w1xxyguz.mp4", "tumblr_sc9fjwg6sh1rqf6td_720": "tumblr_sc9fjwg6sh1rqf6td_720.mp4", "tumblr_scedf6cea61rmet4a_720": "tumblr_scedf6cea61rmet4a_720.mp4", "tumblr_sd9zzmto5i1vmobp0": "tumblr_sd9zzmto5i1vmobp0.mp4", "tumblr_sdc3gd1iwt1sgnr3g_720": "tumblr_sdc3gd1iwt1sgnr3g_720.mp4", "tumblr_sdenqttafm1uvmvyd_720": "tumblr_sdenqttafm1uvmvyd_720.mp4", "tumblr_sdkyheltvd1qa94kp": "tumblr_sdkyheltvd1qa94kp.mp4", "tumblr_sdzwy0mmys1z5jfe7": "tumblr_sdzwy0mmys1z5jfe7.mp4", "tumblr_sfwuavf8ha1w5pr9j": "tumblr_sfwuavf8ha1w5pr9j.mp4", "tumblr_sh1qcr7cjb1trqggv": "tumblr_sh1qcr7cjb1trqggv.mp4", "tumblr_shec5jdz8y1urgf8d_720": "tumblr_shec5jdz8y1urgf8d_720.mp4", "tumblr_shmz6ymp0b1y8aven_720": "tumblr_shmz6ymp0b1y8aven_720.mp4", "tumblr_shwgmx5pew1vmobp0": "tumblr_shwgmx5pew1vmobp0.mp4", "tumblr_shx8nb9kkb1rsisu2_720": "tumblr_shx8nb9kkb1rsisu2_720.mp4", "tumblr_shxowi58gb1qc775s": "tumblr_shxowi58gb1qc775s.mp4", "tumblr_si2wq4a2an1rl30t8": "tumblr_si2wq4a2an1rl30t8.mp4", "tumblr_siecgnqj0q1ydpti4_r1_72": "tumblr_siecgnqj0q1ydpti4_r1_72.mp4", "tumblr_sifk2tuq9i1a83ahu_720": "tumblr_sifk2tuq9i1a83ahu_720.mp4", "tumblr_simwuepihj1yq0dl2_720": "tumblr_simwuepihj1yq0dl2_720.mp4", "tumblr_sinb1ryett1zb40j0": "tumblr_sinb1ryett1zb40j0.mp4", "tumblr_sio3wmehw91y8aven": "tumblr_sio3wmehw91y8aven.mp4", "tumblr_sirm24i4jy1yzbs45": "tumblr_sirm24i4jy1yzbs45.mp4", "tumblr_sj64juhf4t1yzx85i": "tumblr_sj64juhf4t1yzx85i.mp4", "tumblr_sj64q4hjok1yzx85i": "tumblr_sj64q4hjok1yzx85i.mp4", "tumblr_sj90eoftzy1zqsr34_720": "tumblr_sj90eoftzy1zqsr34_720.mp4", "tumblr_sji4ycnwda1wz3nj51": "tumblr_sji4ycnwda1wz3nj51.mp4", "tumblr_sjuh1zrokr1sjcnrz": "tumblr_sjuh1zrokr1sjcnrz.mp4", "tumblr_sjxpenuh7a1zjppxl_720": "tumblr_sjxpenuh7a1zjppxl_720.mp4", "tumblr_sklg9h8jxl1avf4jv": "tumblr_sklg9h8jxl1avf4jv.mp4", "tumblr_smxtl1tqpo1r85rfb": "tumblr_smxtl1tqpo1r85rfb.mp4", "tumblr_snhfuk9ece1a8rzft": "tumblr_snhfuk9ece1a8rzft.mp4", "tumblr_snyan7mwm21sk87qz": "tumblr_snyan7mwm21sk87qz.mp4", "tumblr_so9gkwgghf1ac5m7s": "tumblr_so9gkwgghf1ac5m7s.mp4", "tumblr_spxiuqktsa1ykp17t": "tumblr_spxiuqktsa1ykp17t.mp4", "tumblr_sq6rgoimbb1uynlhc": "tumblr_sq6rgoimbb1uynlhc.mp4", "tumblr_sq94v1r8pl1qejbir": "tumblr_sq94v1r8pl1qejbir.mp4", "tumblr_sqjyjynlb61vmobp0": "tumblr_sqjyjynlb61vmobp0.mp4", "tumblr_sqkhd7clw61u1sr7e_720": "tumblr_sqkhd7clw61u1sr7e_720.mp4", "tvufz5dw0rjpsg7z": "tvufz5dw0rjpsg7z.mp4", "u0yi53mnelq2bxct": "u0yi53mnelq2bxct.mp4", "u61sgsdrmblmoy": "u61sgsdrmblmoy.mp4", "u9atm9euatncqz8x": "u9atm9euatncqz8x.mp4", "uarlwqafome5rvsy": "uarlwqafome5rvsy.mp4", "ub48zwha9mglvscf": "ub48zwha9mglvscf.mp4", "ubipiysjmtittcub": "ubipiysjmtittcub.mp4", "ubks40ejcwx0ltzf": "ubks40ejcwx0ltzf.mp4", "uirkojdhq8grlz66": "uirkojdhq8grlz66.mp4", "uncircumciseddudeswhenthey": "uncircumciseddudeswhenthey.mp4", "unknown": "unknown.png", "untitled": "untitled.png", "uucpry6jdxf1bxyy": "uucpry6jdxf1bxyy.mp4", "v0f044gc0000clad09vog65v4saabt": "v0f044gc0000clad09vog65v4saabt.mov", "v10044g50000cf92jsbc77u73egs6q": "v10044g50000cf92jsbc77u73egs6q.mov", "v12044gd0000cc1hfmrc77ud2dqtcs": "v12044gd0000cc1hfmrc77ud2dqtcs.mp4", "v12044gd0000cotrptvog65qirmgnb": "v12044gd0000cotrptvog65qirmgnb.mov", "v7lcjujjlkm52a2q": "v7lcjujjlkm52a2q.mp4", "video0": "video0.mp4", "video1652171674": "video1652171674.mp4", "video8080wwwredditwatch": "video8080wwwredditwatch.mp4", "videoplaybac1k": "videoplaybac1k.mp4", "videoplayback": "videoplayback.mp4", "vid_42990117_003532_950": "vid_42990117_003532_950.mp4", "vid_50980820_172047_960": "vid_50980820_172047_960.mp4", "vsype_vwowl0wd": "vsype_vwowl0wd.mp4", "vyqvemea6drvrxph": "vyqvemea6drvrxph.mp4", "vzribeiplrdtzxh": "vzribeiplrdtzxh.mp4", "w4a7s3mbky74eqeu": "w4a7s3mbky74eqeu.mp4", "wdwwnexzwppomu7i": "wdwwnexzwppomu7i.mp4", "weakestdampweekly_8e8585_10071": "weakestdampweekly_8e8585_10071.mp4", "wednesday_d6f4b9_11028578": "wednesday_d6f4b9_11028578.mp4", "whativebidone": "whativebidone.mp4", "whenyourmatestartswearingamono": "whenyourmatestartswearingamono.mp4", "whiteguy": "whiteguy.mp4", "wmt_z2khd1tp6dgg": "wmt_z2khd1tp6dgg.mp4", "wsu9pgl_ycsyy3f0": "wsu9pgl_ycsyy3f0.mp4", "w_iimsdt_ziowvjp": "w_iimsdt_ziowvjp.mp4", "w_siafq3oqdqdn04": "w_siafq3oqdqdn04.mp4", "x2downloadappdudeturnedintosau": "x2downloadappdudeturnedintosau.mp4", "x2downloadappstarwarscervezacr": "x2downloadappstarwarscervezacr.mp4", "x2downloadappthisisthepartwher": "x2downloadappthisisthepartwher.mp4", "x2downloadappweneedmoresnow1": "x2downloadappweneedmoresnow1.mp4", "x3e_bz9d6hkb0ct8": "x3e_bz9d6hkb0ct8.mp4", "xj4fdm46nnjvaag": "xj4fdm46nnjvaag.mp4", "xniu3sdgvbun6dbv": "xniu3sdgvbun6dbv.mp4", "ykikapnx0vah_hhy": "ykikapnx0vah_hhy.mp4", "youtube_wlrqjgxd8_608x1080_h26": "youtube_wlrqjgxd8_608x1080_h26.mp4", "yqbm1ibqiq6xrxvf": "yqbm1ibqiq6xrxvf.mp4", "yt5scomkirbyenjoysmacaroniwith": "yt5scomkirbyenjoysmacaroniwith.mp4", "yt5scomkirbylemon360p": "yt5scomkirbylemon360p.mp4", "yt5scommacaroni360p": "yt5scommacaroni360p.mp4", "zjwk14phnkl6iudf": "zjwk14phnkl6iudf.mp4", "zozfmexdhd4fnxhg": "zozfmexdhd4fnxhg.mp4", "zp4v_kg_4vgplvwp": "zp4v_kg_4vgplvwp.mp4", "zumzy8e0zyorqpkz": "zumzy8e0zyorqpkz.mp4", "_3qzrqxl7iyc0kcw": "_3qzrqxl7iyc0kcw.mp4", "_72rkphcvkjmc7x": "_72rkphcvkjmc7x.mp4", "_agckaq6h32ycmqi": "_agckaq6h32ycmqi.mp4", "_owxv_jrbidwkise": "_owxv_jrbidwkise.mp4"} \ No newline at end of file diff --git a/data/summaries/017d956359676be2393d8e07c0d9cd.txt b/data/summaries/017d956359676be2393d8e07c0d9cd.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0422820db62b601b16d7bc0bd9276753b1dd694 --- /dev/null +++ b/data/summaries/017d956359676be2393d8e07c0d9cd.txt @@ -0,0 +1 @@ +A cat with its eyes closed, smiling, with pink hearts floating above its head. \ No newline at end of file diff --git a/data/summaries/0a4afbdf14f42abcaf731aedbd8783.txt b/data/summaries/0a4afbdf14f42abcaf731aedbd8783.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f221a32cc2eb1881e72e0aadc1ed5063de69773 --- /dev/null +++ b/data/summaries/0a4afbdf14f42abcaf731aedbd8783.txt @@ -0,0 +1 @@ +A man enters a basement containing wooden barrels and a mess of bricks and other debris scattered on the ground. He addresses someone named Ethan, and asks if he knows the word “deez”. Ethan asks who Deez is, and the first man asks him if he's not cultured. Ethan is then attacked. At the last second Ethan turns the tables on his attacker and asks, “Who’s Candice?” His attacker responds by laughing and calling him “Joe Mama”. \ No newline at end of file diff --git a/data/summaries/0z8eppisoyzd3jte.txt b/data/summaries/0z8eppisoyzd3jte.txt new file mode 100644 index 0000000000000000000000000000000000000000..a137b97962b6ce84d402104790d28303d806f5c5 --- /dev/null +++ b/data/summaries/0z8eppisoyzd3jte.txt @@ -0,0 +1 @@ +A husky dog is seen standing in the grass, then playfully bites a hand reaching towards them. \ No newline at end of file diff --git a/data/summaries/1004332103284052018.txt b/data/summaries/1004332103284052018.txt new file mode 100644 index 0000000000000000000000000000000000000000..12ae5e532a69fb7d8770b8fc03c120412aae1663 --- /dev/null +++ b/data/summaries/1004332103284052018.txt @@ -0,0 +1 @@ +The image shows a close-up, somewhat blurry, digital painting of a light orange and white cat face against a dark background. The cat is facing the viewer with a slightly wide-eyed expression. The style is somewhat meme-like. diff --git a/data/summaries/170f3a0d74d628f405745cd107d8fc.txt b/data/summaries/170f3a0d74d628f405745cd107d8fc.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7d0364d0472517d32ee4b756d493950434edfcd --- /dev/null +++ b/data/summaries/170f3a0d74d628f405745cd107d8fc.txt @@ -0,0 +1 @@ +The image shows a white cat lying on its back with its paws up in the air, surrounded by multiple heart emojis, conveying a feeling of love, affection and adoration. \ No newline at end of file diff --git a/data/summaries/1_4972134405645533911.txt b/data/summaries/1_4972134405645533911.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ca67d2c83e66349c677c0660727fdb8e036ea88 --- /dev/null +++ b/data/summaries/1_4972134405645533911.txt @@ -0,0 +1 @@ +Tucker Carlson is speaking about America on the Fox News channel. His headline states, "America Was A Very Different Country A Year Ago." He states that everyone agreed segregation was the worst thing the country ever did. \ No newline at end of file diff --git a/data/summaries/1cmt9rrcral5m1t.txt b/data/summaries/1cmt9rrcral5m1t.txt new file mode 100644 index 0000000000000000000000000000000000000000..efe954a127b44d70148ed84df11919dbcd987b50 --- /dev/null +++ b/data/summaries/1cmt9rrcral5m1t.txt @@ -0,0 +1 @@ +A yellow axolotl with pink gills is nestled among green leaves in an aquarium. It stares directly at the camera. \ No newline at end of file diff --git a/data/summaries/1x_mpgvsmlwi4b4.txt b/data/summaries/1x_mpgvsmlwi4b4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f205798acb74c23b6184f21a13815113a68958e --- /dev/null +++ b/data/summaries/1x_mpgvsmlwi4b4.txt @@ -0,0 +1,2 @@ +Here's a summary of the video file: +The video features a person who is in a hoodie in a bedroom. The person is singing some kind of off-key song about killing children, people dying, etc. The video is shot as a social media style personal recording. \ No newline at end of file diff --git a/data/summaries/20250209_cooperativeperfectpon.txt b/data/summaries/20250209_cooperativeperfectpon.txt new file mode 100644 index 0000000000000000000000000000000000000000..c35cd703aa7228884324b8f8b27559d4d5cd1f47 --- /dev/null +++ b/data/summaries/20250209_cooperativeperfectpon.txt @@ -0,0 +1 @@ +The streamer is playing Dark Souls. She is currently in the equipment menu, selecting a Hand Axe to equip as her right weapon. She is streaming to Twitch, and her monthly rent is $161.57 out of $300. Her current race is 1:00.13. She is walking into a stone structure, with a chain hanging down. \ No newline at end of file diff --git a/data/summaries/244301680_1204542536721927_730.txt b/data/summaries/244301680_1204542536721927_730.txt new file mode 100644 index 0000000000000000000000000000000000000000..68cb909ce5e662d1ce4534bb7c9316100d37f055 --- /dev/null +++ b/data/summaries/244301680_1204542536721927_730.txt @@ -0,0 +1 @@ +On a bright sunny day, a man is ice fishing. An orange "Frabill" tip-up is lying in the snow near a small hole in the ice. The man reaches into the hole in the ice and pulls out a crustacean. He is completely shocked by his unexpected catch. He jumps back from the hole in surprise and yells, "What the f***!" \ No newline at end of file diff --git a/data/summaries/248320392_939578913314000_7632.txt b/data/summaries/248320392_939578913314000_7632.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2a090016e3a0f2a3cef5a8a93377126ffabfde7 --- /dev/null +++ b/data/summaries/248320392_939578913314000_7632.txt @@ -0,0 +1 @@ +Singer Doja Cat answers the question "Have you ever had a crush on an animated character?" in the affirmative. She says she has around 30 animated crushes, and her biggest crush is Hopper from "Bug's Life." \ No newline at end of file diff --git a/data/summaries/2df31f1dd1d31b6d5b55934e2c0125.txt b/data/summaries/2df31f1dd1d31b6d5b55934e2c0125.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3fde605fc247a05a9569783360a9156f1460eef --- /dev/null +++ b/data/summaries/2df31f1dd1d31b6d5b55934e2c0125.txt @@ -0,0 +1 @@ +The TikTok video shows a person in a pink beret and lipstick trying to enter a name into the "Detective" field of a Team Barbie Detective game. When typing in "Tran_" the first result is "Traneaice" which the person says out loud and seems to feel bad about, saying "Oof, girl. Oof, what did you call me?" \ No newline at end of file diff --git a/data/summaries/2gtri3bqxrdkzp2.txt b/data/summaries/2gtri3bqxrdkzp2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b06fc2360cf98d8627e1f63f5eb458507b86735e --- /dev/null +++ b/data/summaries/2gtri3bqxrdkzp2.txt @@ -0,0 +1 @@ +A split screen shows a person dressed as a blue character on the left, and a woman in an orange blouse and jeans on the right. Both are dancing to the song displayed on the screen, which says: "step tap step tap scare scare clap clap". The character costume falls down a flight of stairs during the dance, while the woman on the right completes the dance. \ No newline at end of file diff --git a/data/summaries/2og27hbdaohr0_u7.txt b/data/summaries/2og27hbdaohr0_u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..abbc867db26f2eee8e896fec8c7cd2e333b6d9de --- /dev/null +++ b/data/summaries/2og27hbdaohr0_u7.txt @@ -0,0 +1 @@ +A man is videoing from an elevated perspective. He opens a drawer filled with a plastic bag. He is filming from a balcony that overlooks a street with parked cars and motorcycles. A black vehicle is shown parked near a metal grate in the street. The angle of the camera shifts upwards to show a power pole surrounded by wires. \ No newline at end of file diff --git a/data/summaries/311472807_847803186574673_6180.txt b/data/summaries/311472807_847803186574673_6180.txt new file mode 100644 index 0000000000000000000000000000000000000000..238a2c513f9969dadd96b867cc82a98e7424ba06 --- /dev/null +++ b/data/summaries/311472807_847803186574673_6180.txt @@ -0,0 +1 @@ +A woman eats at a restaurant while perusing the menu. She's wearing a t-shirt with an image on it. In front of her are three small containers of sauce and a basket of chips. \ No newline at end of file diff --git a/data/summaries/317972007_872625493783372_7982.txt b/data/summaries/317972007_872625493783372_7982.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e25a91e30b239f32b6b96759cf426b949512a3e --- /dev/null +++ b/data/summaries/317972007_872625493783372_7982.txt @@ -0,0 +1 @@ +The video shows a watermelon with white liquid dripping out of it. A person speaking in the video expresses disgust at the situation. The watermelon has a sticker that says "PURE HEART." The video then cuts to a woman wearing glasses who asks if the watermelon is seedless. \ No newline at end of file diff --git a/data/summaries/3c494477159df432b7c51e2f809dd3.txt b/data/summaries/3c494477159df432b7c51e2f809dd3.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a7b588bfa0b2de1c2dd5ec8b9d9c15145bd18b7 --- /dev/null +++ b/data/summaries/3c494477159df432b7c51e2f809dd3.txt @@ -0,0 +1 @@ +A woman asks her cat if she is hungry, and the cat meows in response. The cat then runs to where its food is kept. \ No newline at end of file diff --git a/data/summaries/3cl41iruuh0jfi27.txt b/data/summaries/3cl41iruuh0jfi27.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b031c5e0ea10733ae8e3011e9df1dcbeb0d5546 --- /dev/null +++ b/data/summaries/3cl41iruuh0jfi27.txt @@ -0,0 +1 @@ +Here is a summary of the video. The person filming starts by stating that the person with them is their husband before he got hit by a car. They proceed to say they have not done it yet and that viewers should like and follow for part 2. \ No newline at end of file diff --git a/data/summaries/3jev0656inc_e09p.txt b/data/summaries/3jev0656inc_e09p.txt new file mode 100644 index 0000000000000000000000000000000000000000..332b6a277bdb7679dc4c46746ec76acbd257e097 --- /dev/null +++ b/data/summaries/3jev0656inc_e09p.txt @@ -0,0 +1 @@ +Arven and the player character are in a cave. Arven is tidying up, and tells the player not to worry about helping, as they have earned a break after battling the Titan. \ No newline at end of file diff --git a/data/summaries/3wlic3cumg3yvudn.txt b/data/summaries/3wlic3cumg3yvudn.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce58b15f2275f2f6c8ceadbd16a1bdd93200938c --- /dev/null +++ b/data/summaries/3wlic3cumg3yvudn.txt @@ -0,0 +1 @@ +A person lifts a red plastic cup to reveal a frog underneath. The frog hops into view from behind the cup and moves around on the table. diff --git a/data/summaries/405360888_7293554827322499_503.txt b/data/summaries/405360888_7293554827322499_503.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d89aeaad4265ac1649eadf8f6bb530b82d6a3cc --- /dev/null +++ b/data/summaries/405360888_7293554827322499_503.txt @@ -0,0 +1 @@ +A small, white and tan dog with curly hair is lying on a bed. Someone calls the dog's name, "Amba," and asks if she's "doing good." The dog looks up at the person speaking. \ No newline at end of file diff --git a/data/summaries/441930059_1175058477005126_751.txt b/data/summaries/441930059_1175058477005126_751.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12cb568acda2cca55bd6ec70569980de15920ca --- /dev/null +++ b/data/summaries/441930059_1175058477005126_751.txt @@ -0,0 +1 @@ +A person attempts to share spray cheese with a cat. They mess up and accidentally get the cheese all over the cat. They feel bad about the accident and put the cat in a tub of water to clean it off. \ No newline at end of file diff --git a/data/summaries/469182540_8739739586133293_167.txt b/data/summaries/469182540_8739739586133293_167.txt new file mode 100644 index 0000000000000000000000000000000000000000..775f5676f456934b4fa85442293c70b500c31b09 --- /dev/null +++ b/data/summaries/469182540_8739739586133293_167.txt @@ -0,0 +1 @@ +A small, black-and-white dog with long hair is submerged to its shoulders in water in an aqua treadmill. It's held in place by a person, who is wearing waterproof clothing. The dog appears to be undergoing hydrotherapy as part of its rehabilitation. \ No newline at end of file diff --git a/data/summaries/471482695_9131258876896657_266.txt b/data/summaries/471482695_9131258876896657_266.txt new file mode 100644 index 0000000000000000000000000000000000000000..9134859c4589274e08e6ec9d8f2dacd2e2eed3c4 --- /dev/null +++ b/data/summaries/471482695_9131258876896657_266.txt @@ -0,0 +1 @@ +A small, fluffy black and white dog is standing on a hardwood floor and howling. \ No newline at end of file diff --git a/data/summaries/47671917_1318637692320758_5748.txt b/data/summaries/47671917_1318637692320758_5748.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fdd4e41bb2b1688aa6566880217e2358f041b4d --- /dev/null +++ b/data/summaries/47671917_1318637692320758_5748.txt @@ -0,0 +1 @@ +A dog is seen barking from the open window of a moving gray truck. \ No newline at end of file diff --git a/data/summaries/4bdeac2a1334624ce3c8afe96ea9c5.txt b/data/summaries/4bdeac2a1334624ce3c8afe96ea9c5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9302abcec0731dfa705448135d97e385bbce5cc5 --- /dev/null +++ b/data/summaries/4bdeac2a1334624ce3c8afe96ea9c5.txt @@ -0,0 +1 @@ +A light tan and white cat with black spots is smiling with hearts floating around its head. It conveys a feeling of love and affection. diff --git a/data/summaries/4kcamera.txt b/data/summaries/4kcamera.txt new file mode 100644 index 0000000000000000000000000000000000000000..24632707634c73db091d5a9726fbec89b8b596e8 --- /dev/null +++ b/data/summaries/4kcamera.txt @@ -0,0 +1 @@ +A TikTok video about the tinylens.cam mini-camera. The video shows the camera in someone's hand, with a view of the screen. Later, the video shows some of the footage that was recorded on it. \ No newline at end of file diff --git a/data/summaries/4x.txt b/data/summaries/4x.txt new file mode 100644 index 0000000000000000000000000000000000000000..9257e467470ef4b6936ce2f750fa28c75678741c --- /dev/null +++ b/data/summaries/4x.txt @@ -0,0 +1 @@ +A small white kitten is peeking out from between two fleshy objects. The kitten is centered in the image and appears to be looking directly at the viewer. The background is blurred and out of focus. \ No newline at end of file diff --git a/data/summaries/5fb3731a8dcfd8172c9bdd12ae1970.txt b/data/summaries/5fb3731a8dcfd8172c9bdd12ae1970.txt new file mode 100644 index 0000000000000000000000000000000000000000..ded2d029783fd3423bbc5e4fa095ff0bd0366baf --- /dev/null +++ b/data/summaries/5fb3731a8dcfd8172c9bdd12ae1970.txt @@ -0,0 +1 @@ +A close-up, heartwarming image of a white cat with various colorful hearts floating around it, creating a loving and affectionate mood. A watermark of "Kapwing" is visible in the lower right corner. diff --git a/data/summaries/6e725c5ef715b822f11ea67c2ca9cb.txt b/data/summaries/6e725c5ef715b822f11ea67c2ca9cb.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6d3bf5e1ee2530cd9c0ddd0b8269fc4290d42b3 --- /dev/null +++ b/data/summaries/6e725c5ef715b822f11ea67c2ca9cb.txt @@ -0,0 +1 @@ +A white cat is yawning with a blurry, vibrant heart aura. The hearts are colorful, featuring purple, pink, red, and rainbow accents. \ No newline at end of file diff --git a/data/summaries/6o6psry1hrnpwhvo.txt b/data/summaries/6o6psry1hrnpwhvo.txt new file mode 100644 index 0000000000000000000000000000000000000000..850992375b2d9010dab486d4dd86b6ef8ac2dbd6 --- /dev/null +++ b/data/summaries/6o6psry1hrnpwhvo.txt @@ -0,0 +1 @@ +Two women play a Word Scramble game with controversial results. The first word appears to be a racial slur, but it resolves as the word ginger. The women react to this in surprise and laugh. \ No newline at end of file diff --git a/data/summaries/6rme9unctzitcye8.txt b/data/summaries/6rme9unctzitcye8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2346600907d53dbd543cea1f906a1e739e268b57 --- /dev/null +++ b/data/summaries/6rme9unctzitcye8.txt @@ -0,0 +1 @@ +The video shows a cat being held up to the camera, with music playing in the background. The video is shot outdoors at night. The cat appears to be in a bag or container. The person holding the cat moves around, showing the cat and the surrounding area. \ No newline at end of file diff --git a/data/summaries/789591e5aee5552b63569b5aae9f91.txt b/data/summaries/789591e5aee5552b63569b5aae9f91.txt new file mode 100644 index 0000000000000000000000000000000000000000..396106dcb40b22f40b4339e1420d060700095e44 --- /dev/null +++ b/data/summaries/789591e5aee5552b63569b5aae9f91.txt @@ -0,0 +1 @@ +The image features a sad-looking kitten lying on a soft surface. The kitten's eyes appear tearful, and the photo is overlaid with colorful heart graphics. The kitten's paw appears to be near a phone. diff --git a/data/summaries/8212422b9b4889a0770c55c18bbf96.txt b/data/summaries/8212422b9b4889a0770c55c18bbf96.txt new file mode 100644 index 0000000000000000000000000000000000000000..c26d612e5295507109653a6c42df52519cd2db0a --- /dev/null +++ b/data/summaries/8212422b9b4889a0770c55c18bbf96.txt @@ -0,0 +1 @@ +A TikTok video shows a deflated Hello Kitty balloon sitting on the ground in the dark. The camera zooms in on the balloon as the person filming says "Oh god what the hell?" in Chinese. \ No newline at end of file diff --git a/data/summaries/889c0176ad2dd4e71b6a9ba7691b0b.txt b/data/summaries/889c0176ad2dd4e71b6a9ba7691b0b.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c5cfd0500bd3ef5f0f8fd33d23820765b01ca4f --- /dev/null +++ b/data/summaries/889c0176ad2dd4e71b6a9ba7691b0b.txt @@ -0,0 +1 @@ +A white cat with pink blush stickers on its cheeks is adorned with a crown of pink heart emojis. The cat is resting its head against a light blue fabric and appears to be looking directly at the viewer with wide, dark eyes. diff --git a/data/summaries/8e4282f75a64f7e3c35175be4bbcf1.txt b/data/summaries/8e4282f75a64f7e3c35175be4bbcf1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d951d6734565a93cdcbd2e137a4c85e22e35fcbb --- /dev/null +++ b/data/summaries/8e4282f75a64f7e3c35175be4bbcf1.txt @@ -0,0 +1 @@ +Lil Nas X is sitting next to Camila Cabello, trying not to laugh as she sings. \ No newline at end of file diff --git a/data/summaries/8fi9o0y09mibdhjx.txt b/data/summaries/8fi9o0y09mibdhjx.txt new file mode 100644 index 0000000000000000000000000000000000000000..d56e6692b77133b79d2c48dd8290138266901bcd --- /dev/null +++ b/data/summaries/8fi9o0y09mibdhjx.txt @@ -0,0 +1 @@ +Here is a man doing the Marvel Avenger challenge. He has a list of characters from Avengers: Infinity War, and is overlaying the images of the characters over his face to see which character he looks most like. At the end of the video, he states he can't even be the Hulk. \ No newline at end of file diff --git a/data/summaries/8v5z0c8f2unrtshm.txt b/data/summaries/8v5z0c8f2unrtshm.txt new file mode 100644 index 0000000000000000000000000000000000000000..c89404eddee656e25bafcd000522f95029bce935 --- /dev/null +++ b/data/summaries/8v5z0c8f2unrtshm.txt @@ -0,0 +1 @@ +A woman wearing a purple shirt is sitting on her bed and unboxing her new clothing purchases. Someone in the room makes a farting sound and she is visibly grossed out by this, but continues on with her video despite the disruption. \ No newline at end of file diff --git a/data/summaries/9b91784d80d2d2776635a21f3216ad.txt b/data/summaries/9b91784d80d2d2776635a21f3216ad.txt new file mode 100644 index 0000000000000000000000000000000000000000..f74bfcbd9da34640d5da3a589d43cc0c2a3587ea --- /dev/null +++ b/data/summaries/9b91784d80d2d2776635a21f3216ad.txt @@ -0,0 +1 @@ +A gray tabby kitten is nestled in a bed of white blankets, with many pink love heart emojis surrounding the cat. A black background is visible above the bed. \ No newline at end of file diff --git a/data/summaries/9ef3d77d6ba7aaa02fb07a20e65002.txt b/data/summaries/9ef3d77d6ba7aaa02fb07a20e65002.txt new file mode 100644 index 0000000000000000000000000000000000000000..30ac33234b036e4678c6846e98b28e4545231a9e --- /dev/null +++ b/data/summaries/9ef3d77d6ba7aaa02fb07a20e65002.txt @@ -0,0 +1,2 @@ +Here is a summary of the video: +The video is a TikTok clip of Jordan Peterson saying: You're such an idiot, that it's just hard to even imagine. If you give a man a fish you feed him for a day. If you give a man a rat, you satisfy his rat desire. If a rat plays Monopoly with another rat, and rats do that by the way, like lobsters, the little rat will always lose. That just shows you whose side God is really on. Then the losing rat will yell at the big rat because he's the big rat, which inevitably results in mass genocide, which is what a rabbit would do. \ No newline at end of file diff --git a/data/summaries/9qgdm3pnsbmkj0bp.txt b/data/summaries/9qgdm3pnsbmkj0bp.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e3431a7311133e38462d96ae60474b22a98091c --- /dev/null +++ b/data/summaries/9qgdm3pnsbmkj0bp.txt @@ -0,0 +1 @@ +Two characters face each other, with one holding a large sword in front of them, addressing the other, asking "What is it you're after?" The character being addressed replies "World domination." The first character responds "That's not even funny, man." \ No newline at end of file diff --git a/data/summaries/_3qzrqxl7iyc0kcw.txt b/data/summaries/_3qzrqxl7iyc0kcw.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e82cf468b7ce763f6a12ddf0411f853efed9384 --- /dev/null +++ b/data/summaries/_3qzrqxl7iyc0kcw.txt @@ -0,0 +1 @@ +Two men are on camera while streaming, one in a black t-shirt and the other in a red and white jersey. The man in red asks his viewers what they would like them to do. He also points out that many of them have suggested kissing him, but the man in black states that he doesn't want to do that. \ No newline at end of file diff --git a/data/summaries/_72rkphcvkjmc7x.txt b/data/summaries/_72rkphcvkjmc7x.txt new file mode 100644 index 0000000000000000000000000000000000000000..86a951264429a382b2c0665ad5ee9daac2b6b175 --- /dev/null +++ b/data/summaries/_72rkphcvkjmc7x.txt @@ -0,0 +1 @@ +Star-Lord and Gamora, dressed as their characters from Guardians of the Galaxy, are posing for photos with visitors at a Disney park. Star-Lord is holding his arms out wide and announcing, “We are the Guardians of the Galaxy.” \ No newline at end of file diff --git a/data/summaries/_agckaq6h32ycmqi.txt b/data/summaries/_agckaq6h32ycmqi.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c788428530fbdf924f38dfcfdd4477a58dfa059 --- /dev/null +++ b/data/summaries/_agckaq6h32ycmqi.txt @@ -0,0 +1 @@ +The clip shows a man speaking into a microphone, asking the other man in the conversation if he has ever seen a Chinese person working for someone who wasn’t Chinese. The second man responds “yeah.” \ No newline at end of file diff --git a/data/summaries/_owxv_jrbidwkise.txt b/data/summaries/_owxv_jrbidwkise.txt new file mode 100644 index 0000000000000000000000000000000000000000..d09b4de9f5d67323362c5ebb619c26b89e5717fc --- /dev/null +++ b/data/summaries/_owxv_jrbidwkise.txt @@ -0,0 +1 @@ +A white cat gets shaken around in front of the camera while a filter adds Kraft parmesan cheese and McCormick red pepper flake bottles that jump around to a Caribbean dance beat. \ No newline at end of file diff --git a/data/summaries/a34e43fd73ea2615461fa0de628606.txt b/data/summaries/a34e43fd73ea2615461fa0de628606.txt new file mode 100644 index 0000000000000000000000000000000000000000..8287cf686018158600f6f2f6c9ef80195b8cdd96 --- /dev/null +++ b/data/summaries/a34e43fd73ea2615461fa0de628606.txt @@ -0,0 +1 @@ +The Minecraft player tries the new update minecart that can go 1,000 blocks fast, going up and down over the custom-built course. As the player flies through the air, the game almost fails to render. The player then tries building a higher ascent for the course. \ No newline at end of file diff --git a/data/summaries/a44dde0bcf48418e421888ded96142.txt b/data/summaries/a44dde0bcf48418e421888ded96142.txt new file mode 100644 index 0000000000000000000000000000000000000000..83e8a96fe25767d7969fa516034fe8d0f0099ba2 --- /dev/null +++ b/data/summaries/a44dde0bcf48418e421888ded96142.txt @@ -0,0 +1 @@ +The meme shows a police officer opening a prison cell, with the text "Me showing my Minecraft villagers their new home". This is referring to the Minecraft game, where players often capture villagers and confine them to small spaces. The prison cell in the video is a dark, confined space with a toilet and bed, resembling the type of enclosure that Minecraft players build for villagers. \ No newline at end of file diff --git a/data/summaries/actco41llg3epur.txt b/data/summaries/actco41llg3epur.txt new file mode 100644 index 0000000000000000000000000000000000000000..18b4b2958b805824534d2d4a942f5c5836a244c8 --- /dev/null +++ b/data/summaries/actco41llg3epur.txt @@ -0,0 +1 @@ +A ray swims up to the glass of an aquarium tank, and the camera zooms in, showing its face, two dots for eyes and a line for a mouth. Suddenly, a sound like a wolf howl pierces the air, and the camera loses focus as it shakes. The ray swims out of focus again. \ No newline at end of file diff --git a/data/summaries/an_q8r53s3owf37dudylabcnyebkjh.txt b/data/summaries/an_q8r53s3owf37dudylabcnyebkjh.txt new file mode 100644 index 0000000000000000000000000000000000000000..385678d94e74d8d70a3cfe7ddbf3ef9f5ff2c0be --- /dev/null +++ b/data/summaries/an_q8r53s3owf37dudylabcnyebkjh.txt @@ -0,0 +1 @@ +A man is looking down and asks where his hands are. The top of the screen reads, "Fish 400 million years ago." The video cuts to a brief, blurred shot of some sort of fire. \ No newline at end of file diff --git a/data/summaries/animeduck.txt b/data/summaries/animeduck.txt new file mode 100644 index 0000000000000000000000000000000000000000..73fffba8a3da111726f8b5ac497aca6eba742d8d --- /dev/null +++ b/data/summaries/animeduck.txt @@ -0,0 +1,2 @@ +A white duck with an orange beak says, "お姉ちゃんが教えてくれた色んな見た目になれるアプリなんだって。”(Onee-chan ga oshiete kureta ironna mitame ni nareru apuri nan datte.) "I hear that my older sister taught me about an app that can change your appearance in various ways." +The duck then says, "どれどれ。(Dore dore.)" "Let's see." \ No newline at end of file diff --git a/data/summaries/aqmrivm3iqgohe81vfgdgu7snmiz86.txt b/data/summaries/aqmrivm3iqgohe81vfgdgu7snmiz86.txt new file mode 100644 index 0000000000000000000000000000000000000000..823075265e974614ff77070b744a71abefcac930 --- /dev/null +++ b/data/summaries/aqmrivm3iqgohe81vfgdgu7snmiz86.txt @@ -0,0 +1 @@ +The video shows a cat lying down, apparently kneading a tiny kitten lying beneath her paws. Text overlay reads, “making biscuits out of her own child.” \ No newline at end of file diff --git a/data/summaries/aqn9uc0aud6ow22sxj3tpv3uvz68r7.txt b/data/summaries/aqn9uc0aud6ow22sxj3tpv3uvz68r7.txt new file mode 100644 index 0000000000000000000000000000000000000000..02994e1728be8ca17dd43ac41676ba727c72f819 --- /dev/null +++ b/data/summaries/aqn9uc0aud6ow22sxj3tpv3uvz68r7.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +The file contains a short video of a cat. A question posed in the video is: "How has our 'Scouse cat' changed over time?". The answer given is "He hasn't at all". The video then splits into two and then four segments and continues showing the cat, who is seen vocalizing and covered with a blanket. \ No newline at end of file diff --git a/data/summaries/aqne9jk18ijvwlubrohcev2m4yp2ij.txt b/data/summaries/aqne9jk18ijvwlubrohcev2m4yp2ij.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e566d39aa6136bbda517fedc0560cc894fb8eca --- /dev/null +++ b/data/summaries/aqne9jk18ijvwlubrohcev2m4yp2ij.txt @@ -0,0 +1 @@ +A man is dancing in a living room for the camera while fun music plays. The text overlay reads "My most viewed reel of 2024," followed by "Making my boyfriend do an interpretive dance so he can play Xbox tonight." \ No newline at end of file diff --git a/data/summaries/aqo7pz0pctyxtrzizqwslc7yoih55s.txt b/data/summaries/aqo7pz0pctyxtrzizqwslc7yoih55s.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e49833b42843c891029da231c0c4635a65eafd7 --- /dev/null +++ b/data/summaries/aqo7pz0pctyxtrzizqwslc7yoih55s.txt @@ -0,0 +1 @@ +Here's a short summary of the file: A person is petting a hairless guinea pig on its back while the animal makes cooing sounds. The guinea pig sits on a red blanket. diff --git a/data/summaries/aqofilmwaebo4_vlclpo_roaqvryy9.txt b/data/summaries/aqofilmwaebo4_vlclpo_roaqvryy9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a822396be81984d647622c65d881b3fe2508be72 --- /dev/null +++ b/data/summaries/aqofilmwaebo4_vlclpo_roaqvryy9.txt @@ -0,0 +1 @@ +The video features a collection of short clips of a cat, a forest road, a lake, and the beach. The words "WiWiWi," "Uya-ya," "Wa-wa," and "Wu" appear on the screen. The cat's name or what it likes to meow may be the topic of the video. \ No newline at end of file diff --git a/data/summaries/aqp3jfzrryrsi0aq5lo1zsvpdvkkka.txt b/data/summaries/aqp3jfzrryrsi0aq5lo1zsvpdvkkka.txt new file mode 100644 index 0000000000000000000000000000000000000000..16ea87b72d4e1aaa5cd7016593056c614d99ff76 --- /dev/null +++ b/data/summaries/aqp3jfzrryrsi0aq5lo1zsvpdvkkka.txt @@ -0,0 +1 @@ +Here's a summary of the file: In this funny video, a man carries a very large fish (a barramundi) in the rain during a flood in Townsville. The uploader jokes, "His house may be underwater... but he's the happiest man alive!" \ No newline at end of file diff --git a/data/summaries/aqpa8vqffgf8chahe3ophfsvneqaf1.txt b/data/summaries/aqpa8vqffgf8chahe3ophfsvneqaf1.txt new file mode 100644 index 0000000000000000000000000000000000000000..923485c567130a667ea35e1082a5ad1e3306f0a6 --- /dev/null +++ b/data/summaries/aqpa8vqffgf8chahe3ophfsvneqaf1.txt @@ -0,0 +1 @@ +A person wearing a green satin robe and a grey towel on their head reacts with disgust to finding a large piece of black hair or fur on their robe. \ No newline at end of file diff --git a/data/summaries/ard7xnzrwsdsejur.txt b/data/summaries/ard7xnzrwsdsejur.txt new file mode 100644 index 0000000000000000000000000000000000000000..e91cd1fea1395e1bac9be1a1274110dfff4861e8 --- /dev/null +++ b/data/summaries/ard7xnzrwsdsejur.txt @@ -0,0 +1 @@ +Anakin Skywalker from Star Wars is in a mechanic’s garage, saying, “What have I done?” The search bar above him reads, “help i accidentally b,” and the first suggestion says, “help i accidentally built a jeep.” Anakin turns his head to see a black Jeep Rubicon. He approaches it, taking a bolt cutter and cutting through a wire. \ No newline at end of file diff --git a/data/summaries/asdads.txt b/data/summaries/asdads.txt new file mode 100644 index 0000000000000000000000000000000000000000..0710cb04f1a30fa67854a750ab9008197694bbfd --- /dev/null +++ b/data/summaries/asdads.txt @@ -0,0 +1 @@ +A Discord message from "Soup Again" shows a cake on the ground surrounded by rats, captioned "me and the girlies having something sweet." diff --git a/data/summaries/asdasd.txt b/data/summaries/asdasd.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fb7d88556651b1c3633c2e85a78712389bd338 --- /dev/null +++ b/data/summaries/asdasd.txt @@ -0,0 +1 @@ +A Tumblr user, thecureinorange, reluctantly admits that British people had the right idea when they say "what's all this then." \ No newline at end of file diff --git a/data/summaries/asdasdadasd.txt b/data/summaries/asdasdadasd.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ebda131a091ef6d6451f1981da627fbb9bf64cf --- /dev/null +++ b/data/summaries/asdasdadasd.txt @@ -0,0 +1 @@ +The image is a meme that shows a stick figure "father" figure entering a room with the caption "Are ya winning son?" The "son" is also a stick figure sitting at a computer with multiple monitors, keyboard, and mouse and the caption "I'm harassing British people on Discord." The caption at the bottom is "This being Luma every stream". \ No newline at end of file diff --git a/data/summaries/asdasdads.txt b/data/summaries/asdasdads.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a5be0e4da946ff5f7d917bc987268ceaf08b1e8 --- /dev/null +++ b/data/summaries/asdasdads.txt @@ -0,0 +1 @@ +Two t-shirts are displayed for a comparison, presented against a colorful background. The shirt on the left is gray and features a crudely drawn figure and the text "TONIGHT WE FEAST ON WHAT REMAINS." The shirt on the right is blue and has a cartoon dinosaur along with the text "I WILOL TAKE YOUR TOES." A "VS" graphic separates the two. The top right corner also contains a logo promoting LRPO Jackbox.tv. \ No newline at end of file diff --git a/data/summaries/asdasdasdasdasdasd.txt b/data/summaries/asdasdasdasdasdasd.txt new file mode 100644 index 0000000000000000000000000000000000000000..06740f9e432803fd8dc2edb9b09b1937e9804510 --- /dev/null +++ b/data/summaries/asdasdasdasdasdasd.txt @@ -0,0 +1 @@ +The image is a Discord post by "Super Moths" featuring a meme with the text "The horrors are never ending, yet I remain silly" overlaid on a picture of a cute, plush mouse wearing a party hat and colorful vest. diff --git a/data/summaries/asdjahsdkjhasd.txt b/data/summaries/asdjahsdkjhasd.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa2d2a0a4782858811d7a01ecac07b2a4b3dde7b --- /dev/null +++ b/data/summaries/asdjahsdkjhasd.txt @@ -0,0 +1 @@ +A Discord conversation where "Emotional Support Clown" states they aesthetically view a cat as a middle-aged "milf," clarifying they don't want to sexually engage with it. "Super Mitten" asks if that means the cat is a mom, and "Emotional Support Clown" confirms. diff --git a/data/summaries/atcm0h4ohnyo809lwilrmjp0eq720.txt b/data/summaries/atcm0h4ohnyo809lwilrmjp0eq720.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2f58d66d93b11390bf89225527c95ec9e944f26 --- /dev/null +++ b/data/summaries/atcm0h4ohnyo809lwilrmjp0eq720.txt @@ -0,0 +1 @@ +A streamer is playing The Legend of Zelda: Breath of the Wild and has reached the underground floor 10. He's facing an enemy while a combo counter is accompanied by the image of a pixelated fish. When he shoots the enemy with an arrow, the screen becomes pixelated, causing the streamer to exclaim in surprise and laugh at what he's seeing. \ No newline at end of file diff --git a/data/summaries/atcmkndoiqmxknsp11fubazygg.txt b/data/summaries/atcmkndoiqmxknsp11fubazygg.txt new file mode 100644 index 0000000000000000000000000000000000000000..5583b30650e015e77b1464d4df182b5bf7480bd1 --- /dev/null +++ b/data/summaries/atcmkndoiqmxknsp11fubazygg.txt @@ -0,0 +1 @@ +Yosuke Matsuda, President and Representative Director of Square Enix, speaks at PAX East in 2024. He mentions that early access to the next Final Fantasy will be delayed a week so players can enjoy the Elden Ring DLC instead. The audience cheers loudly at the announcement. \ No newline at end of file diff --git a/data/summaries/b6km77y9umgddmcl.txt b/data/summaries/b6km77y9umgddmcl.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c1f8d5c4085fdd8bdd60adf3365a28e5f67e2f5 --- /dev/null +++ b/data/summaries/b6km77y9umgddmcl.txt @@ -0,0 +1 @@ +A gamer tries to resume the game and has issues when suddenly the narrator starts speaking on its own on his computer, so the gamer turns it off. The narrator then turns on and off repeatedly, and later on it's followed by some loud bangs and a crash. \ No newline at end of file diff --git a/data/summaries/b9ojoo2ezabflidp.txt b/data/summaries/b9ojoo2ezabflidp.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c22ad78529d0bbec66254d7529bc432b1282599 --- /dev/null +++ b/data/summaries/b9ojoo2ezabflidp.txt @@ -0,0 +1 @@ +Here's what's happening in the video: A trainer on a red and blue Pokémon, travels towards another trainer who's holding a white Pokémon. The trainers engage in battle. The Pokémon on the red and blue mount successfully defeats the opposing Pokémon, causing it to collapse. diff --git a/data/summaries/bc02da4a6f8c4ede27b1a529de4180.txt b/data/summaries/bc02da4a6f8c4ede27b1a529de4180.txt new file mode 100644 index 0000000000000000000000000000000000000000..698d8e7a5dc803df9cf03686252f1a9c4910aab9 --- /dev/null +++ b/data/summaries/bc02da4a6f8c4ede27b1a529de4180.txt @@ -0,0 +1 @@ +The video captures a gameplay scene from a first-person video game, presumably The Last of Us. The player's character is standing behind a table when another character, in a crouching position, makes a full circle on the ground before rising to a standing position. The question displayed on screen asks if there is a canonical explanation for this behavior. \ No newline at end of file diff --git a/data/summaries/bhoyq9puxrtm65d.txt b/data/summaries/bhoyq9puxrtm65d.txt new file mode 100644 index 0000000000000000000000000000000000000000..276b87ee1576f0aee029c877997e373f37977237 --- /dev/null +++ b/data/summaries/bhoyq9puxrtm65d.txt @@ -0,0 +1 @@ +A cat sits upright in a chair, looking alert and somewhat startled. It suddenly yawns wide, then bends over to preen itself. \ No newline at end of file diff --git a/data/summaries/binkyfish.txt b/data/summaries/binkyfish.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c987beaf0e65c4b35eeb464285b6948ffc1ddbc --- /dev/null +++ b/data/summaries/binkyfish.txt @@ -0,0 +1 @@ +Fish swimming around with baby pacifiers in their mouths. The music is a bouncy electronic tune. \ No newline at end of file diff --git a/data/summaries/birdsofoz_6871529526262893826.txt b/data/summaries/birdsofoz_6871529526262893826.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe7967bfaaaf2b8555e5eaeb78b088e30e417d0f --- /dev/null +++ b/data/summaries/birdsofoz_6871529526262893826.txt @@ -0,0 +1 @@ +Here's a summary of the file: The video is a compilation of unusual things Kookaburras do, including growling, head clacking, beak knocking, and smiling. \ No newline at end of file diff --git a/data/summaries/bkxib3qhjezelv0e.txt b/data/summaries/bkxib3qhjezelv0e.txt new file mode 100644 index 0000000000000000000000000000000000000000..75578f3698c985bf677eac412a72cac8d9b56235 --- /dev/null +++ b/data/summaries/bkxib3qhjezelv0e.txt @@ -0,0 +1 @@ +The file is a video of a man reacting to the announcement of Sora as a playable fighter in Super Smash Bros. Ultimate. He is initially surprised and then excited. \ No newline at end of file diff --git a/data/summaries/bqwv_r7ksyj_kbzt.txt b/data/summaries/bqwv_r7ksyj_kbzt.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3f165b27517fe1303472ec62a15e9ca576fc32e --- /dev/null +++ b/data/summaries/bqwv_r7ksyj_kbzt.txt @@ -0,0 +1 @@ +Here's a short summary of the video: A veteran's car was vandalized in D.C., with the message "Mike is a cheater" spray-painted on it. The man is being interviewed by the news about the event, and he expresses his confusion and anger as he does not know who Mike is or who vandalized his car. \ No newline at end of file diff --git a/data/summaries/browassweatinghardspellinggoti.txt b/data/summaries/browassweatinghardspellinggoti.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a3140e85de3b74ff609d5c5a7d74c86954a48a --- /dev/null +++ b/data/summaries/browassweatinghardspellinggoti.txt @@ -0,0 +1 @@ +A spelling bee contestant is faced with spelling the word “negus” and is very hesitant to say it aloud. After asking for all available information, he spells the word. The audience applauds and he seems relieved. \ No newline at end of file diff --git a/data/summaries/burgerking.txt b/data/summaries/burgerking.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d90e1f61daf3399fd67691f70a4dee0fcf23a5e --- /dev/null +++ b/data/summaries/burgerking.txt @@ -0,0 +1 @@ +The TikTok video shows a man wearing a red hoodie listening to Kanye's new album on his laptop, and reacting to it with disbelief and confusion. He reads a quote on the screen that says "Burger King" with a picture of Kanye West. The video is captioned, "Critics listening to Kanye's new album for the first time." \ No newline at end of file diff --git a/data/summaries/burritooo.txt b/data/summaries/burritooo.txt new file mode 100644 index 0000000000000000000000000000000000000000..078833cc2d24ba21e2068f69915d8527b26d3f1e --- /dev/null +++ b/data/summaries/burritooo.txt @@ -0,0 +1 @@ +The narrator is preparing two frozen burritos. As he cooks them, he reads the nutrition information on the packaging. The package indicates the burritos contain 12 grams of protein and cost only $1.60. \ No newline at end of file diff --git a/data/summaries/bvsd9zqxmf9xillu.txt b/data/summaries/bvsd9zqxmf9xillu.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad2bbfd4abeb080b692f5fc46d9b3ffd301a3fc1 --- /dev/null +++ b/data/summaries/bvsd9zqxmf9xillu.txt @@ -0,0 +1 @@ +Joe Biden and Donald Trump are playing Overwatch 2. Joe picked Zenyatta and Donald is upset about it. Donald thinks that Joe Biden will ruin his solo que day. \ No newline at end of file diff --git a/data/summaries/byhxpkhkfdrrlmy.txt b/data/summaries/byhxpkhkfdrrlmy.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3bc481b7c6d572af97a2c6347c89ab2e0a7ac7d --- /dev/null +++ b/data/summaries/byhxpkhkfdrrlmy.txt @@ -0,0 +1 @@ +Here is a TikTok video by user @crispinion showing him doing exaggerated laughter to portray what it is like when accidentally typing laughing emojis and the 'wide eyes' emoji on a keyboard or phone. \ No newline at end of file diff --git a/data/summaries/c8lrehkd1pyohsgk.txt b/data/summaries/c8lrehkd1pyohsgk.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b169dc089d944a435f2aa0e6efc63d13f6b7d87 --- /dev/null +++ b/data/summaries/c8lrehkd1pyohsgk.txt @@ -0,0 +1 @@ +A man on a golf course is getting ready to drive the ball as several deer are in the background, seemingly unconcerned with the man. One deer appears to be drinking milk from another deer. The narrator comments on the man's focus. \ No newline at end of file diff --git a/data/summaries/cageymeditatedhairy_457f04_117.txt b/data/summaries/cageymeditatedhairy_457f04_117.txt new file mode 100644 index 0000000000000000000000000000000000000000..c055f30efb0893e683a0b8f39c0c81b9088cc4fd --- /dev/null +++ b/data/summaries/cageymeditatedhairy_457f04_117.txt @@ -0,0 +1 @@ +A player in Elden Ring attempts to jump from a cliff to a platform, but is attacked mid-air by two other players and falls to their death. \ No newline at end of file diff --git a/data/summaries/candlethatmakesyourheadablocko.txt b/data/summaries/candlethatmakesyourheadablocko.txt new file mode 100644 index 0000000000000000000000000000000000000000..c06e8c5daf693454721fe8eea2f130ac306fca66 --- /dev/null +++ b/data/summaries/candlethatmakesyourheadablocko.txt @@ -0,0 +1 @@ +An orange cat appears to hiss at a lit blue candle. The text overlay jokes that the cat's reaction is to a candle that replaces its brain with a block of lead. \ No newline at end of file diff --git a/data/summaries/catjamkiss.txt b/data/summaries/catjamkiss.txt new file mode 100644 index 0000000000000000000000000000000000000000..e35f90f2d4799423a2c2b0f447b958e5cc99e603 --- /dev/null +++ b/data/summaries/catjamkiss.txt @@ -0,0 +1 @@ +The image shows a cropped view of a light-colored cat or kitten, focusing on its ears against a black background. diff --git a/data/summaries/cb2.txt b/data/summaries/cb2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bbe0194d29c973fffc9a9e6eb0728ecffc2b09f --- /dev/null +++ b/data/summaries/cb2.txt @@ -0,0 +1 @@ +The image is a meme featuring Tyler, the Creator, looking down with a suspicious expression. The text overlay reads "something malicious is brewing... 🤨". \ No newline at end of file diff --git a/data/summaries/cd41c35762fc5843fdc8875521e45e.txt b/data/summaries/cd41c35762fc5843fdc8875521e45e.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a4cb21a509270b5cf0f110040677bffd49f6d5c --- /dev/null +++ b/data/summaries/cd41c35762fc5843fdc8875521e45e.txt @@ -0,0 +1 @@ +A black cat stands on a patterned rug and audibly huffs at the filmer, who playfully reprimands the cat for doing so. \ No newline at end of file diff --git a/data/summaries/ck13qbi4kodqdujz.txt b/data/summaries/ck13qbi4kodqdujz.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd92bb46822af4258ab3a574312d905b3a76d54f --- /dev/null +++ b/data/summaries/ck13qbi4kodqdujz.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +In this short video, Andrew Tate discusses the importance of safety and gives a suggestion to his viewers. He says to call their friends and invite them over for a party. When everyone arrives, pour the sparkling wine out and replace it with water. Ask everyone to have a glass of water, and if someone comments on the taste, the viewer knows they have the wrong person in their house. diff --git a/data/summaries/ckpvwmqjsu4gho9y.txt b/data/summaries/ckpvwmqjsu4gho9y.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad77be5dfa9f4f0d2a31fdc14ada52f983c2d162 --- /dev/null +++ b/data/summaries/ckpvwmqjsu4gho9y.txt @@ -0,0 +1 @@ +A dog sits in a bed under a piece of artwork, looking directly at the camera. A watermelon rind has been placed atop its head. The video ends. \ No newline at end of file diff --git a/data/summaries/cmp1tz8yz088poaz.txt b/data/summaries/cmp1tz8yz088poaz.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a7a71b01adc0ab4b3afcacb9bf435ce90948ee --- /dev/null +++ b/data/summaries/cmp1tz8yz088poaz.txt @@ -0,0 +1 @@ +Here's a summary of the file: A streamer shares that, while working for Kojima Productions, she was asked to scan the bottom of her feet for reference purposes. \ No newline at end of file diff --git a/data/summaries/cp5fxsjdcks0bafp.txt b/data/summaries/cp5fxsjdcks0bafp.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd45feb0f9bbd6bc8dbd279a888da71d03319f7e --- /dev/null +++ b/data/summaries/cp5fxsjdcks0bafp.txt @@ -0,0 +1 @@ +A Minion character stands on a stage with a saxophone and red curtains behind them. The character is wearing a blue outfit and has a yellow head with one big eye and blonde hair. Text on the video reads, "He looked so adorable, why did they grab him :(." \ No newline at end of file diff --git a/data/summaries/d05b54c356bbdd9475e39167a10f95.txt b/data/summaries/d05b54c356bbdd9475e39167a10f95.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4a19b6563c43ae125418ed37c65361ac49f1ece --- /dev/null +++ b/data/summaries/d05b54c356bbdd9475e39167a10f95.txt @@ -0,0 +1 @@ +A meme image of a white cat yawning with superimposed hearts and sparkles, conveying a feeling of delight and affection. \ No newline at end of file diff --git a/data/summaries/d0wtghlwsaiu0se.txt b/data/summaries/d0wtghlwsaiu0se.txt new file mode 100644 index 0000000000000000000000000000000000000000..9217f0451cdc97e424882f13d4990c8b1d9d28ac --- /dev/null +++ b/data/summaries/d0wtghlwsaiu0se.txt @@ -0,0 +1 @@ +A portrait of a black cat with wide eyes, surrounded by pink hearts and gold stars. \ No newline at end of file diff --git a/data/summaries/d1ivxtow0aitywfjpglarge.txt b/data/summaries/d1ivxtow0aitywfjpglarge.txt new file mode 100644 index 0000000000000000000000000000000000000000..3422de646fca0efea6ab01859025091a8df9de4c --- /dev/null +++ b/data/summaries/d1ivxtow0aitywfjpglarge.txt @@ -0,0 +1 @@ +A meme of a cat with pink blushing cheeks surrounded by heart emojis, giving off an overwhelmingly cute and affectionate vibe. diff --git a/data/summaries/d3kxq61uwaa9mh1.txt b/data/summaries/d3kxq61uwaa9mh1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe22d6df945a5800c20685d838e0ef42e67021ef --- /dev/null +++ b/data/summaries/d3kxq61uwaa9mh1.txt @@ -0,0 +1 @@ +A cute Scottish Fold kitten with big eyes and pink blush stickers is surrounded by pink heart and flower emojis. It appears to be wearing a pink collar or shirt. \ No newline at end of file diff --git a/data/summaries/d5_sl6ew4ael8js.txt b/data/summaries/d5_sl6ew4ael8js.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fcdd16531117aa189ccdb9f5f7207267912e3ef --- /dev/null +++ b/data/summaries/d5_sl6ew4ael8js.txt @@ -0,0 +1 @@ +An image of a cat with pink hearts floating above its head. The cat is looking upwards with a slightly worried or endearing expression. \ No newline at end of file diff --git a/data/summaries/dallemini_2022618_234934.txt b/data/summaries/dallemini_2022618_234934.txt new file mode 100644 index 0000000000000000000000000000000000000000..85f4bb3ea50601abc8e259044f7da45cfff6a8b6 --- /dev/null +++ b/data/summaries/dallemini_2022618_234934.txt @@ -0,0 +1 @@ +The image shows the DALL-E mini AI model's generated images based on the prompt "walter white is willy wonka." The images display a fusion of Walter White and Willy Wonka's likeness. \ No newline at end of file diff --git a/data/summaries/dimglz1zw5ih35l9.txt b/data/summaries/dimglz1zw5ih35l9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8a11d6d0903a3cb699ebd4147653961f813f73e --- /dev/null +++ b/data/summaries/dimglz1zw5ih35l9.txt @@ -0,0 +1 @@ +A person in a classroom holds their hand towards the camera with an Among Us filter that looks like a bottle of hand sanitizer. The video pans to the left and shows the cell phone being used in the classroom. The person holding the cell phone says that you are verified when the profile is full. Then, they hold their hand towards the camera and say, “Help! Among Us!”. \ No newline at end of file diff --git a/data/summaries/doctor.txt b/data/summaries/doctor.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4755a2c8223610785320c1f9be02aaadb14ed14 --- /dev/null +++ b/data/summaries/doctor.txt @@ -0,0 +1 @@ +The video shows footage of the Ninth Doctor from Doctor Who, played by Christopher Eccleston, saying "Alright then, if you want orders, follow this one," followed by an image of a Dalek. The video then shows various clips of the Ninth Doctor, set to music. The TikTok username of the creator, @badw.lf, is shown throughout the video. \ No newline at end of file diff --git a/data/summaries/doge1.txt b/data/summaries/doge1.txt new file mode 100644 index 0000000000000000000000000000000000000000..559cfff86438ef2af38b4b734e5bffbb4c8a6abb --- /dev/null +++ b/data/summaries/doge1.txt @@ -0,0 +1 @@ +Here's a summary of the file: The video shows gameplay footage from Call of Duty, which is intercut with various comical images and sounds. The person playing Call of Duty seems to be skilled, and they eliminate several other players during the gameplay. \ No newline at end of file diff --git a/data/summaries/doge2.txt b/data/summaries/doge2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2501a791c6f1db3f1e5743985920d2b831b41247 --- /dev/null +++ b/data/summaries/doge2.txt @@ -0,0 +1 @@ +The video shows a montage of gameplay from Call of Duty: Warzone. The player is eliminating enemies with a sniper rifle. The video is edited with comedic cuts. \ No newline at end of file diff --git a/data/summaries/doughslappin.txt b/data/summaries/doughslappin.txt new file mode 100644 index 0000000000000000000000000000000000000000..650100537f653b0580579395c22ce93857693eb7 --- /dev/null +++ b/data/summaries/doughslappin.txt @@ -0,0 +1 @@ +The video shows someone destroying pizza dough on purpose. They throw it around the kitchen, causing buckets to fall, then shove the dough in a bucket, and then thrust their hand inside of it. \ No newline at end of file diff --git a/data/summaries/download.txt b/data/summaries/download.txt new file mode 100644 index 0000000000000000000000000000000000000000..082b668d29d967f506986d72c479c56b8984cc19 --- /dev/null +++ b/data/summaries/download.txt @@ -0,0 +1,3 @@ +Here is a summary of the video file: + +The video shows part nine of a series where the host compares what they believe to be the worst and best songs from particular rappers. In this video, the artist compared is Yuno Miles. According to the host, Yuno Miles’ worst song is “Martin Luther King” and his best song is “Indiana Jones.” \ No newline at end of file diff --git a/data/summaries/download1.txt b/data/summaries/download1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a837add67776d3a5720020d3deaa8fead0aa22bf --- /dev/null +++ b/data/summaries/download1.txt @@ -0,0 +1 @@ +A person in a Springtrap costume dances to music for a TikTok. The video cuts to a person sitting in a gaming chair watching the video and commenting on the dance. A third person in a Freddy Fazbear costume appears from behind a doorway. \ No newline at end of file diff --git a/data/summaries/download2.txt b/data/summaries/download2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5c90e90323597650a4603eab379a2ce24e4869a --- /dev/null +++ b/data/summaries/download2.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +In a TikTok video, a person with glasses and a bucket hat is shown transitioning into Kratos, a video game character from "God of War." A split-screen effect shows half of the person's face transforming into Kratos' appearance, with the character's beard and body paint progressively added. \ No newline at end of file diff --git a/data/summaries/download3.txt b/data/summaries/download3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5013f6c7a0d65782babb0e62021cdc0eba6fec82 --- /dev/null +++ b/data/summaries/download3.txt @@ -0,0 +1 @@ +A woman speaking into a microphone talks about feelings of self-hatred. She says she hated God and hated everyone that made her feel like she wasn't doing things right. She then makes monkey noises and mimics gnawing on iron bars. \ No newline at end of file diff --git a/data/summaries/download5.txt b/data/summaries/download5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0272ee452d36318a628ec93a02c7665f1917fc6c --- /dev/null +++ b/data/summaries/download5.txt @@ -0,0 +1 @@ +A hand opens a bathroom door to reveal a man dressed in a red and blue Spider-Man-like costume, sitting on the toilet and looking annoyed. A baby cries in the background. The door then closes. \ No newline at end of file diff --git a/data/summaries/drqhjjowkaal0wr.txt b/data/summaries/drqhjjowkaal0wr.txt new file mode 100644 index 0000000000000000000000000000000000000000..70e8f463b44c88b71a9223f7c356b5fbee80db0c --- /dev/null +++ b/data/summaries/drqhjjowkaal0wr.txt @@ -0,0 +1 @@ +A grey cat sits in a cardboard box. An overlay of pink hearts surrounds the cat, and text reads "you" and "my love and support". This creates a meme-like image expressing affection and support. \ No newline at end of file diff --git a/data/summaries/dt1gybauuaacxpl.txt b/data/summaries/dt1gybauuaacxpl.txt new file mode 100644 index 0000000000000000000000000000000000000000..894ebc7e96379322996903c8a1229018978833a2 --- /dev/null +++ b/data/summaries/dt1gybauuaacxpl.txt @@ -0,0 +1 @@ +A playful orange and white cat is reaching out its paw with love, shown by a cascade of heart and flower emojis falling around it. The cat sits on what appears to be a light-colored sofa. \ No newline at end of file diff --git a/data/summaries/dvwsbx8xgaao9la.txt b/data/summaries/dvwsbx8xgaao9la.txt new file mode 100644 index 0000000000000000000000000000000000000000..268897a45f326ffa55948bd773b7858d76f3c716 --- /dev/null +++ b/data/summaries/dvwsbx8xgaao9la.txt @@ -0,0 +1 @@ +A black cat with bright yellow eyes looks up at the camera, surrounded by black hearts and golden sparkle graphics. \ No newline at end of file diff --git a/data/summaries/dynamicpurplesore_8ace6a_10258.txt b/data/summaries/dynamicpurplesore_8ace6a_10258.txt new file mode 100644 index 0000000000000000000000000000000000000000..a880eb6859cf78b3f7a4a979bba7060df3b2c6e8 --- /dev/null +++ b/data/summaries/dynamicpurplesore_8ace6a_10258.txt @@ -0,0 +1 @@ +The clip shows a person holding an ice cream cone. They pass the cone in front of a woman and then pan around the inside of a restaurant. The restaurant has a yellow interior with a brick accent wall. There are tables and chairs in the dining area. There is a bar area with wine glasses and bottles of alcohol on display. \ No newline at end of file diff --git a/data/summaries/dyyzulvumqezdmd.txt b/data/summaries/dyyzulvumqezdmd.txt new file mode 100644 index 0000000000000000000000000000000000000000..85334473ef3a78212c36be3904420fa28fcfe680 --- /dev/null +++ b/data/summaries/dyyzulvumqezdmd.txt @@ -0,0 +1 @@ +A segment of the French TV show "C'est Mon Choix" features a woman with a unique, high-pitched laugh reminiscent of a seagull. Her infectious laugh quickly causes others to giggle and ultimately erupt in uncontrollable laughter. The caption translates as "My laugh does not go unnoticed." \ No newline at end of file diff --git a/data/summaries/e10dcb8b535edda1d59de9c6576583.txt b/data/summaries/e10dcb8b535edda1d59de9c6576583.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1b5075ea6159345e7faa7801e110351966c7733 --- /dev/null +++ b/data/summaries/e10dcb8b535edda1d59de9c6576583.txt @@ -0,0 +1 @@ +A white cat with blue eyes looks upwards with a loving expression, pink hearts floating above its head. diff --git a/data/summaries/ebbtg6wwaaeu0i.txt b/data/summaries/ebbtg6wwaaeu0i.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1c64eb9368e11a2a38b6c2d3a3cbd676831083b --- /dev/null +++ b/data/summaries/ebbtg6wwaaeu0i.txt @@ -0,0 +1 @@ +The image showcases a close-up of a charming cat with large, expressive eyes and digitally added pink blushes on its cheeks. The cat has a white and peach coat and a slightly upturned smile, giving it an adorable and endearing appearance. \ No newline at end of file diff --git a/data/summaries/ebqabllxsaaznnq.txt b/data/summaries/ebqabllxsaaznnq.txt new file mode 100644 index 0000000000000000000000000000000000000000..c01f2e3a1025af9473618b37c835c65ef524ed0d --- /dev/null +++ b/data/summaries/ebqabllxsaaznnq.txt @@ -0,0 +1 @@ +The image shows a cute ginger cat with big eyes, looking up. It has a bell around its neck. Around the cat, there are cartoon hearts with little yellow stars. \ No newline at end of file diff --git a/data/summaries/echidna_bathurst_1000.txt b/data/summaries/echidna_bathurst_1000.txt new file mode 100644 index 0000000000000000000000000000000000000000..63504ed6c10a695ef7d5fc4ebc7a6345862611dd --- /dev/null +++ b/data/summaries/echidna_bathurst_1000.txt @@ -0,0 +1 @@ +Here's a summary of the file: This video shows a replay from a Supercars race where a couple of drivers narrowly avoid hitting an echidna that's on the track. \ No newline at end of file diff --git a/data/summaries/edrdpeft6fnvawjm.txt b/data/summaries/edrdpeft6fnvawjm.txt new file mode 100644 index 0000000000000000000000000000000000000000..24cc229636ccebb050137a0edc6fdd063305baba --- /dev/null +++ b/data/summaries/edrdpeft6fnvawjm.txt @@ -0,0 +1 @@ +The video shows a mysterious graveyard, followed by an armored figure, a giant man with an axe, a wizard and his goose, the cast of "Everybody Loves Raymond", and finally an anime figure with the head of a dog. \ No newline at end of file diff --git a/data/summaries/eefxrokxoaimik1.txt b/data/summaries/eefxrokxoaimik1.txt new file mode 100644 index 0000000000000000000000000000000000000000..06d797eef5b89a58b78964a06433034b1dd8823b --- /dev/null +++ b/data/summaries/eefxrokxoaimik1.txt @@ -0,0 +1 @@ +This meme expresses a desire to interfere in someone else's relationship, telling them to "scoot over". The creator claims they love "y'all". \ No newline at end of file diff --git a/data/summaries/eemaaw3xkaevhfb.txt b/data/summaries/eemaaw3xkaevhfb.txt new file mode 100644 index 0000000000000000000000000000000000000000..c28d96c7f3c4f4c700d7029a74ff9a040437efd4 --- /dev/null +++ b/data/summaries/eemaaw3xkaevhfb.txt @@ -0,0 +1 @@ +The image features Merry from Animal Crossing accompanied by a cyan-colored speech bubble that contains text expressing enthusiastic support for gay individuals, using the phrases "My fucking god! These bitches gay! Good for them! Good for them." \ No newline at end of file diff --git a/data/summaries/elpegl8wkaarda4.txt b/data/summaries/elpegl8wkaarda4.txt new file mode 100644 index 0000000000000000000000000000000000000000..29f90ad4634669878c2911092ce65122eba1a4a7 --- /dev/null +++ b/data/summaries/elpegl8wkaarda4.txt @@ -0,0 +1 @@ +The image depicts two panels with rats being held. In the top panel, two white rats are held separately. The bottom panel shows the two rats closer together, held in a way that their heads touch, accompanied by the text "*clink*". It seems to be a humorous depiction of the rats "clinking" heads together like glasses. diff --git a/data/summaries/elpegl8wkaarda4sticker.txt b/data/summaries/elpegl8wkaarda4sticker.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b46d0b9588f3111d1a8c134a1d92b235a343de0 --- /dev/null +++ b/data/summaries/elpegl8wkaarda4sticker.txt @@ -0,0 +1 @@ +Two rats are held up to "clink" together, creating a humorous image. One rat is grey and white, and the other is white. The "*clink*" text overlay suggests the rats are being used to make a toasting gesture. \ No newline at end of file diff --git a/data/summaries/em2dcacvuaanu9c.txt b/data/summaries/em2dcacvuaanu9c.txt new file mode 100644 index 0000000000000000000000000000000000000000..100631a3b5c37912906ca3bd853d6896ba58b27b --- /dev/null +++ b/data/summaries/em2dcacvuaanu9c.txt @@ -0,0 +1 @@ +The image is a meme telling viewers not to drink water after eating fish. The text says that drinking water after eating fish may cause the fish to swim in your stomach, making you feel "gulugulu". The image features a photo of a fish in the center. \ No newline at end of file diff --git a/data/summaries/emma_6872821372339408134.txt b/data/summaries/emma_6872821372339408134.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab2783d405af96e235cc0d817cf18d2804c5d5c5 --- /dev/null +++ b/data/summaries/emma_6872821372339408134.txt @@ -0,0 +1 @@ +A person asks why the cat looks like it got its cast removed. They observe that the cat looks to be walking without a cast on its leg and is seemingly walking fine. diff --git a/data/summaries/eyqjvqeucaapaw.txt b/data/summaries/eyqjvqeucaapaw.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf34d1e2f32ea4fef61f7fb1d62a5d3692e20ce4 --- /dev/null +++ b/data/summaries/eyqjvqeucaapaw.txt @@ -0,0 +1 @@ +A white and grey cat with a surprised expression has exaggerated blushing cheeks, indicated by red markings over the cheeks, giving it a cartoonish and flustered look. diff --git a/data/summaries/ezy427jwkaeejrr.txt b/data/summaries/ezy427jwkaeejrr.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b8ddc52b6abe4d3266b2aa74aa9fcedd4fc4de3 --- /dev/null +++ b/data/summaries/ezy427jwkaeejrr.txt @@ -0,0 +1 @@ +The image features a crude cartoon drawing of a person with the text "I AM SO COOL" repeated twice. The drawing is accompanied by text that describes the person's behavior: they enjoy going online to make people upset because they view others as overly sensitive. It concludes with the statement that this behavior is a coping mechanism for loneliness. \ No newline at end of file diff --git a/data/summaries/f038534e564e43aa05d55b7c01c0b7.txt b/data/summaries/f038534e564e43aa05d55b7c01c0b7.txt new file mode 100644 index 0000000000000000000000000000000000000000..30c80d31d6714dd07b654964d4d61073f4e9f553 --- /dev/null +++ b/data/summaries/f038534e564e43aa05d55b7c01c0b7.txt @@ -0,0 +1 @@ +A meme showing a cat lying on a blanket, holding a phone. The text "Me" is superimposed on the cat, and "Pictures of you" on the phone screen. The image is decorated with heart emojis and a small envelope with a heart, conveying a feeling of affection and being lovestruck. diff --git a/data/summaries/f3avkgppaa9jo6it.txt b/data/summaries/f3avkgppaa9jo6it.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e939f7857fb809038b4063ca630c6a4d41a531d --- /dev/null +++ b/data/summaries/f3avkgppaa9jo6it.txt @@ -0,0 +1 @@ +The video shows a character riding a Miraidon in a grassy field in the game Pokemon Scarlet or Violet. The character is approaching a building and the game prompts an exclamation point indicating an interaction or event nearby. Then the ground rumbles and the scene cuts to a dirt trail being kicked up. \ No newline at end of file diff --git a/data/summaries/f6qsf0krrv9gnro5.txt b/data/summaries/f6qsf0krrv9gnro5.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc4dade073eb842d01c7938ecfad697434e14666 --- /dev/null +++ b/data/summaries/f6qsf0krrv9gnro5.txt @@ -0,0 +1 @@ +A female streamer is playing Kingdom Hearts. She’s in a grassy area, talking to Donald Duck in the game. She giggles uncontrollably at Donald’s voice when he tells her to check Jiminy’s Journal if she forgets what to do. She tries to stop laughing, but she can’t, and hides her face. \ No newline at end of file diff --git a/data/summaries/fave.txt b/data/summaries/fave.txt new file mode 100644 index 0000000000000000000000000000000000000000..5acd6fa4124732a58dd915818890e89798369189 --- /dev/null +++ b/data/summaries/fave.txt @@ -0,0 +1,5 @@ +Here's a summary of the video: + +A young man stands indoors, wearing a black jacket and a white hoodie. He uses TikTok to make a video and asks questions to his mom. At the bottom of the video, it reads "What you say vs what your mum hears." The point of the video is that when he asks his mom if he can go outside with friends to get food, she hears that he is a trusted drug dealer in the area. + +He states that his closet needs an upgrade with shoes and clothes, while his mom hears that he spends every penny on designer clothes, hair, and wigs. Other questions include ear piercings, hair braiding, and spending time with girls at a club. The young man asks his mom if she is okay with him doing these things. \ No newline at end of file diff --git a/data/summaries/fggsy5eqparmcqef.txt b/data/summaries/fggsy5eqparmcqef.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed7b1fdef2352e8e8eaffa685866bafa21c528ce --- /dev/null +++ b/data/summaries/fggsy5eqparmcqef.txt @@ -0,0 +1 @@ +A still image contains a man with long hair and a beard sitting in a chair looking tired. The text at the top reads, "Small children after meeting their favorite minecraft youtuber". A donation banner displays behind the man. \ No newline at end of file diff --git a/data/summaries/fh1qguhx_5xlriga.txt b/data/summaries/fh1qguhx_5xlriga.txt new file mode 100644 index 0000000000000000000000000000000000000000..4462e1fae28e24a4db5324808f9c9a19266bffdc --- /dev/null +++ b/data/summaries/fh1qguhx_5xlriga.txt @@ -0,0 +1 @@ +The clip opens with a man sitting and holding a guitar. He looks up and asks a girl, who's at a table, to promise her that she won't laugh. She says that she won't. The man then appears to strum a guitar with an image of Bob Odenkirk superimposed on it. \ No newline at end of file diff --git a/data/summaries/fish.txt b/data/summaries/fish.txt new file mode 100644 index 0000000000000000000000000000000000000000..eabb6808e84331df3c188fa548200f390b293dff --- /dev/null +++ b/data/summaries/fish.txt @@ -0,0 +1 @@ +A black cat, nicknamed "Mowe Mowe", gets digitally modified to look like a fish, and is seen in digitally edited footage of a coral reef and a fish tank. \ No newline at end of file diff --git a/data/summaries/fjb9glvwuaubrb6.txt b/data/summaries/fjb9glvwuaubrb6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab5cfb6e3dcf20367c1ec4805cfa1cb7f42ad346 --- /dev/null +++ b/data/summaries/fjb9glvwuaubrb6.txt @@ -0,0 +1 @@ +This is a four-panel cartoon about a streamer who is surprised to have two viewers. The final panel reveals his parents are watching his stream, indicating their viewership. \ No newline at end of file diff --git a/data/summaries/fliestony.txt b/data/summaries/fliestony.txt new file mode 100644 index 0000000000000000000000000000000000000000..58a24951d5d92d404b45996df10bdec73b6176d7 --- /dev/null +++ b/data/summaries/fliestony.txt @@ -0,0 +1,2 @@ +Here's a summary of the video: +A TikTok video shows a man wearing a red baseball cap, scratching his hands together, then putting his hands over his face. He is rubbing his hands together to heat them up. The title of the video says, "Flies for no reason." diff --git a/data/summaries/fshgrbywoaio8r88.txt b/data/summaries/fshgrbywoaio8r88.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b3add0758d9063b33c3ec244370e017c2ea38a --- /dev/null +++ b/data/summaries/fshgrbywoaio8r88.txt @@ -0,0 +1 @@ +A person in black stockings dips their leg into a bowl of water and then the split screen shows the person’s leg again and a black dog, which is likely the intended recipient of the water. \ No newline at end of file diff --git a/data/summaries/fvdcf4md7mfdzchx.txt b/data/summaries/fvdcf4md7mfdzchx.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c2021f086f5b67ba44f0cc303fea05860b5d2ff --- /dev/null +++ b/data/summaries/fvdcf4md7mfdzchx.txt @@ -0,0 +1 @@ +A split-screen TikTok video shows a man sitting in a massage chair, while a man in the other half of the split screen sings. The man in the massage chair smiles while he is being massaged by the chair, as the singing man emotionally belts out "My heart, I loved her!". \ No newline at end of file diff --git a/data/summaries/fyng5h5zmbgx_lji.txt b/data/summaries/fyng5h5zmbgx_lji.txt new file mode 100644 index 0000000000000000000000000000000000000000..829e926c03b52c6c6dbb5cf794ef897360a484a8 --- /dev/null +++ b/data/summaries/fyng5h5zmbgx_lji.txt @@ -0,0 +1 @@ +A person in a jacket is holding a glass and appears to be enjoying a night out at a club with strobe lights. They look up as a bright light flashes and react with surprise. \ No newline at end of file diff --git a/data/summaries/fzuv04xwamwec_.txt b/data/summaries/fzuv04xwamwec_.txt new file mode 100644 index 0000000000000000000000000000000000000000..46a5a9bc6bf6ff2bc996449778c14d7871f384ae --- /dev/null +++ b/data/summaries/fzuv04xwamwec_.txt @@ -0,0 +1 @@ +A meme featuring a close-up of a cute cat's face with big eyes. Text overlay says "Italy" at the top and "But without the 'ta'" at the bottom, implying the cat is "ILY". The meme also includes the watermark "@uoanx". \ No newline at end of file diff --git a/data/summaries/generalincomprehensibleinking_.txt b/data/summaries/generalincomprehensibleinking_.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c36e233218d49063f199b05b2716d79739d0228 --- /dev/null +++ b/data/summaries/generalincomprehensibleinking_.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +A young man in a green plaid shirt plays guitar. He is in front of a wall with a cosmic-themed tapestry. A text overlay says he learned half of the Free Bird solo and will learn the other half later. \ No newline at end of file diff --git a/data/summaries/gettingchanged.txt b/data/summaries/gettingchanged.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd4da02f879cfb7482bc4be051c0fc837d733ed6 --- /dev/null +++ b/data/summaries/gettingchanged.txt @@ -0,0 +1 @@ +The image depicts a room with what appears to be figures partially submerged in laundry piles. The room has unusual, distorted perspective and textures, suggesting it's likely an AI-generated or heavily stylized image. The website "NeuralBlender.com" is watermarked on the lower right. diff --git a/data/summaries/ha5cgwzrlbfpagun.txt b/data/summaries/ha5cgwzrlbfpagun.txt new file mode 100644 index 0000000000000000000000000000000000000000..28803693a75c5682ab34baeab46a994d96f27663 --- /dev/null +++ b/data/summaries/ha5cgwzrlbfpagun.txt @@ -0,0 +1 @@ +A man on a split screen reacts to another video. The other video shows a person riding an e-bike on a dirt trail, with a fisheye camera view. The man on the left describes how the video looks like a video game from his childhood, because the perspective of the camera is synced up so well. \ No newline at end of file diff --git a/data/summaries/hbkm4n0dzn0o2ncj.txt b/data/summaries/hbkm4n0dzn0o2ncj.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8c27837d8dc9cbeeda898e6ca04cc0d5862f30c --- /dev/null +++ b/data/summaries/hbkm4n0dzn0o2ncj.txt @@ -0,0 +1 @@ +A TikTok user, @lyricsliife, posts a video of a person in a box costume that looks like the World Trade Center and someone else is holding a plane. Another person in the video says "he's 9/11 bro" and another person says "I'm a gynecologist." \ No newline at end of file diff --git a/data/summaries/hd6is8jqsygkdzi8.txt b/data/summaries/hd6is8jqsygkdzi8.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d2677a2a0e0d66166df129fbe8c62b1cc5621d7 --- /dev/null +++ b/data/summaries/hd6is8jqsygkdzi8.txt @@ -0,0 +1 @@ +The YouTube video titled "George Lucas in the background of some random documentary" shows a man in a striped polo shirt speaking about pyro processing as people walk in the background, including one man who may be George Lucas. \ No newline at end of file diff --git a/data/summaries/hergh.txt b/data/summaries/hergh.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a7a925b819bc337fbc72afd92b5942e0c614ee6 --- /dev/null +++ b/data/summaries/hergh.txt @@ -0,0 +1 @@ +A person in a green-and-black plaid shirt walks through a store holding two bags full of ornaments. The person coughs and asks the cameraman to stop, because there are other people around. \ No newline at end of file diff --git a/data/summaries/horrorgame.txt b/data/summaries/horrorgame.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbde8bfd8c8a64595bf5f080d5fc9a2ed4602a04 --- /dev/null +++ b/data/summaries/horrorgame.txt @@ -0,0 +1 @@ +A man is playing a horror video game. A monster appears from around a corner, making the man scream. \ No newline at end of file diff --git a/data/summaries/howlandnovathecollies_68738638.txt b/data/summaries/howlandnovathecollies_68738638.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cf8f8e77a6c9aa2564d98f7aa4c60535eed3bd6 --- /dev/null +++ b/data/summaries/howlandnovathecollies_68738638.txt @@ -0,0 +1 @@ +A brown and white dog, laying on a rug next to a dog bed, snarls at a person wearing a shark puppet. \ No newline at end of file diff --git a/data/summaries/htdtdxauioztf.txt b/data/summaries/htdtdxauioztf.txt new file mode 100644 index 0000000000000000000000000000000000000000..df31d590e59c2bc321ed009c0ffa7d3565ec5b41 --- /dev/null +++ b/data/summaries/htdtdxauioztf.txt @@ -0,0 +1 @@ +A man with blonde hair is holding a microphone and yelling at another man who has a mustache and blue hair with a blue hat on. The man speaking says “Good morning England” then starts roaring like a lion into the microphone. He is then asked “Can you tell us something your mom doesn’t know?” The man with the microphone then looks at the camera in thought. \ No newline at end of file diff --git a/data/summaries/hzdrbjmjnjmlpuls.txt b/data/summaries/hzdrbjmjnjmlpuls.txt new file mode 100644 index 0000000000000000000000000000000000000000..35af71b72657f636f0bed5ad586436237222e290 --- /dev/null +++ b/data/summaries/hzdrbjmjnjmlpuls.txt @@ -0,0 +1 @@ +The video shows an animal, possibly a dog, crouching low to the ground and moving quickly across a tile floor. The animal is brown and appears to be scurrying. A subsequent close-up shot features a blurry image of the animal's face. diff --git a/data/summaries/i0red7yngpkcrase.txt b/data/summaries/i0red7yngpkcrase.txt new file mode 100644 index 0000000000000000000000000000000000000000..d565798558ce162187f9d80e25ecfaa429a768ce --- /dev/null +++ b/data/summaries/i0red7yngpkcrase.txt @@ -0,0 +1 @@ +The character Kevin from "Ben 10" tells Gwen that she needs to treat a car like she would treat a woman. He quickly realizes the error he has made with that statement. diff --git a/data/summaries/i565oygnmhnpp03u.txt b/data/summaries/i565oygnmhnpp03u.txt new file mode 100644 index 0000000000000000000000000000000000000000..1041fcc5909a4e89dfbb046c58862981d4ec5711 --- /dev/null +++ b/data/summaries/i565oygnmhnpp03u.txt @@ -0,0 +1 @@ +A white and grey cat with a long tail is lying on grey pavement next to a square hole. The cat is lifted, and the hole can be seen. A grey and white cat with green eyes is seen emerging from the hole. \ No newline at end of file diff --git a/data/summaries/ibisv9rsbrlrbvnnwaboplar0hdp3g.txt b/data/summaries/ibisv9rsbrlrbvnnwaboplar0hdp3g.txt new file mode 100644 index 0000000000000000000000000000000000000000..b63a595eed9850dd612a19b1d71fb7879a5d8b9d --- /dev/null +++ b/data/summaries/ibisv9rsbrlrbvnnwaboplar0hdp3g.txt @@ -0,0 +1 @@ +A woman in fitness gear dances to music with large speakers on either side of her. A bulldog in a Mickey Mouse shirt walks directly in front of the camera and stares at the camera as the woman dances in the background. \ No newline at end of file diff --git a/data/summaries/igvideo1_1.txt b/data/summaries/igvideo1_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bc641ab57e66c2e10e12c658db845e220a491c1 --- /dev/null +++ b/data/summaries/igvideo1_1.txt @@ -0,0 +1 @@ +Someone uses a utensil to scrape at what looks like a container of cornstarch. A text overlay reads, "I loooooove eating corn statrch [sad emoji]." \ No newline at end of file diff --git a/data/summaries/images.txt b/data/summaries/images.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dae20e6bbd87dc1d21d1b8bae3b89c4a596bea9 --- /dev/null +++ b/data/summaries/images.txt @@ -0,0 +1 @@ +A black kitten is crying with exaggerated white tears, surrounded by various heart-shaped stickers, some pierced with arrows. The image has an emotionally expressive and somewhat humorous feel, blending sadness with a Valentine's Day or love-themed aesthetic. diff --git a/data/summaries/index.txt b/data/summaries/index.txt new file mode 100644 index 0000000000000000000000000000000000000000..90261a6390e1ac96d5699114f6f46aaca5a26b40 --- /dev/null +++ b/data/summaries/index.txt @@ -0,0 +1 @@ +The image depicts a blurry, close-up of a cat with its mouth open in an expression that could be interpreted as surprise, excitement, or a yell. The image has been embellished with floating hearts and stars, giving it a cute and affectionate feel. It's commonly used as a reaction image expressing love or overwhelming positive emotions. diff --git a/data/summaries/injuriousoperatinghappygolucky.txt b/data/summaries/injuriousoperatinghappygolucky.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a522707a87d9214bda72919217b1fd68e47ab39 --- /dev/null +++ b/data/summaries/injuriousoperatinghappygolucky.txt @@ -0,0 +1 @@ +A woman with long, wavy, auburn hair wearing a pink crop top and baggy grey sweatpants dances for a TikTok video to a Mexican-style horn tune. After she slaps herself on the behind, the video cuts to a different woman, much older, wearing a grey hoodie. She flips the hood up and says: "Got you, b*itch!" \ No newline at end of file diff --git a/data/summaries/insanewellgroomedaccountant_4b.txt b/data/summaries/insanewellgroomedaccountant_4b.txt new file mode 100644 index 0000000000000000000000000000000000000000..46dc816edefc3e8aac79bb140e9339cee9f54b05 --- /dev/null +++ b/data/summaries/insanewellgroomedaccountant_4b.txt @@ -0,0 +1 @@ +A man points into a glass enclosure that appears to be a reptile habitat. The enclosure sits on a black stand with a dog bed underneath it. A laptop sits in the foreground. \ No newline at end of file diff --git a/data/summaries/jad59lwdmidb6di6.txt b/data/summaries/jad59lwdmidb6di6.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa9786e361d462c30fa48843934fe94f37c51996 --- /dev/null +++ b/data/summaries/jad59lwdmidb6di6.txt @@ -0,0 +1 @@ +A person riding a roller coaster has a funny, exaggerated filter on their face. The person is filming themselves and appears to have forgotten the filter was on. As the roller coaster plunges downward, the filter becomes more distorted and exaggerated as well. \ No newline at end of file diff --git a/data/summaries/jaypee_6865092104721304837.txt b/data/summaries/jaypee_6865092104721304837.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b47da72ede677fc3f73b1d299caa64ade7dfba8 --- /dev/null +++ b/data/summaries/jaypee_6865092104721304837.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +This is a low-quality close-up shot of a young man with dark hair and round glasses, bobbing his head to electronic dance music. A woman can be seen off to the side at one point. \ No newline at end of file diff --git a/data/summaries/jc_jmovgi1io0dxl.txt b/data/summaries/jc_jmovgi1io0dxl.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4e5a9cb0fedc888e93b41c7814ca8076c300c49 --- /dev/null +++ b/data/summaries/jc_jmovgi1io0dxl.txt @@ -0,0 +1 @@ +The video shows two people drawing their age on the screen. The girl draws “19” on the screen and the boy draws “20” on the screen. They dance to music in the background while doing this. \ No newline at end of file diff --git a/data/summaries/jkzc7etuubg25vfd.txt b/data/summaries/jkzc7etuubg25vfd.txt new file mode 100644 index 0000000000000000000000000000000000000000..77d0440f2cd5605ba2faaace668f214d13e3207e --- /dev/null +++ b/data/summaries/jkzc7etuubg25vfd.txt @@ -0,0 +1,3 @@ +Here's a brief summary of the file: + +The file shows an animated title sequence for a production called “JFK And his Assassination”. It starts with an animated tan colored dog with blue eyes against a black background, and then transitions to animated cosmos imagery before resolving with the title card. \ No newline at end of file diff --git a/data/summaries/jordanpetersontakesaload.txt b/data/summaries/jordanpetersontakesaload.txt new file mode 100644 index 0000000000000000000000000000000000000000..3852e6c8fcd0df864c47215178ef75dae927f7b2 --- /dev/null +++ b/data/summaries/jordanpetersontakesaload.txt @@ -0,0 +1 @@ +Jordan Peterson, dressed in a suit, discusses finding destiny in your willingness to "take the ultimate load," as a voiceover says. \ No newline at end of file diff --git a/data/summaries/jux8fsykzs7_niu.txt b/data/summaries/jux8fsykzs7_niu.txt new file mode 100644 index 0000000000000000000000000000000000000000..c877b8984b1b4b5976c4f796657c2f6dfb865dc2 --- /dev/null +++ b/data/summaries/jux8fsykzs7_niu.txt @@ -0,0 +1 @@ +A view from the water, the camera bobs up and down, showing mountains in the background and a trumpet playing some music. \ No newline at end of file diff --git a/data/summaries/k1fua2a6zgweix27.txt b/data/summaries/k1fua2a6zgweix27.txt new file mode 100644 index 0000000000000000000000000000000000000000..65cea3ba0358df8677ddad4a3046fc3afc51dffe --- /dev/null +++ b/data/summaries/k1fua2a6zgweix27.txt @@ -0,0 +1 @@ +Two men are on the couch playing the Nintendo Wii. The screen shows the Wii Shop Channel. They comment on how the catalog is updated and suggest that they write a song using Wii game titles. They try to sing the lyrics to the Wii game titles, ending in wails and groans. \ No newline at end of file diff --git a/data/summaries/k2iwgp7o9c8w8a_o.txt b/data/summaries/k2iwgp7o9c8w8a_o.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb2f945d5d086b6bd19fa3c0509fc582cf6fd29d --- /dev/null +++ b/data/summaries/k2iwgp7o9c8w8a_o.txt @@ -0,0 +1 @@ +A person pets a Borzoi dog with a long snout indoors. \ No newline at end of file diff --git a/data/summaries/k6reuef_4oowg9a.txt b/data/summaries/k6reuef_4oowg9a.txt new file mode 100644 index 0000000000000000000000000000000000000000..5045b3a196c720034dd3dc7fa999aa618cbc8ef7 --- /dev/null +++ b/data/summaries/k6reuef_4oowg9a.txt @@ -0,0 +1 @@ +The split-screen video shows a man in bed, then on the other side, a man in a black costume asking viewers to breathe, and then contemplate if they are killing time or appreciating time. \ No newline at end of file diff --git a/data/summaries/kaputformativetaut_03d7f7_1228.txt b/data/summaries/kaputformativetaut_03d7f7_1228.txt new file mode 100644 index 0000000000000000000000000000000000000000..af7afa094e26b6d774649d1382a2319a6c08e279 --- /dev/null +++ b/data/summaries/kaputformativetaut_03d7f7_1228.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +A woman in a brown hooded sweatshirt begins the video by stating that girls do not want flowers for Valentine's Day. A man with brown hair and glasses says that girls want the ugliest and creepiest plush doll they can find. The video ends with a hand placing a plush doll of Walter White, from the TV series Breaking Bad, wearing a pink outfit and a pink bow on its head. \ No newline at end of file diff --git a/data/summaries/khakmqdidbaoy8qc.txt b/data/summaries/khakmqdidbaoy8qc.txt new file mode 100644 index 0000000000000000000000000000000000000000..9be0814b61987218544a1365242ed6efc19d0d94 --- /dev/null +++ b/data/summaries/khakmqdidbaoy8qc.txt @@ -0,0 +1 @@ +On Fox News, Tucker Carlson calls what he's reporting on a grotesque, postmodern psyop and says anyone who's fallen for it is brain damaged. The accompanying images include one of a young woman dressed in dark tactical clothing, wearing cat ear headphones and holding a handgun. Another image shows a young woman wearing a bra and round goggles, aiming a handgun at the viewer. \ No newline at end of file diff --git a/data/summaries/kounterkittyslurper.txt b/data/summaries/kounterkittyslurper.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c7da09f6a49a901c8071e86620648919e54e890 --- /dev/null +++ b/data/summaries/kounterkittyslurper.txt @@ -0,0 +1 @@ +The video features a woman with striking makeup, including what appears to be red tears running down her face. She has black hair with bangs and is wearing a choker. The text overlay suggests the video might be related to ASMR content. \ No newline at end of file diff --git a/data/summaries/kuzlkhnvn9926ibj.txt b/data/summaries/kuzlkhnvn9926ibj.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6cb3b01a9a684295066ba43edf93d105c1d1d26 --- /dev/null +++ b/data/summaries/kuzlkhnvn9926ibj.txt @@ -0,0 +1 @@ +Two shirtless men in swimming trunks defend themselves with pipes against a Jason Voorhees character in a purple tracksuit. They manage to knock him to the ground. \ No newline at end of file diff --git a/data/summaries/l9ja83mkhw13e4o.txt b/data/summaries/l9ja83mkhw13e4o.txt new file mode 100644 index 0000000000000000000000000000000000000000..180bcd73d2a0918cffa9481930b58a7892fb6405 --- /dev/null +++ b/data/summaries/l9ja83mkhw13e4o.txt @@ -0,0 +1 @@ +In a split-screen TikTok video, a man shares his intention to duet with a toilet cleaning video until the woman making it is overcome by toxic gas. He adds green ammonia-based toilet cleaner, followed by Comet bleach, stating, "You've made mustard gas." The woman then responds to his duet, saying, "You're still fucking doing this? I'm trans now! That's how much fucking time has passed since I last ratioed you! Shut the fuck up!" As she speaks, she adds blue toilet cleaner and other toilet cleaning chemicals to the toilet. \ No newline at end of file diff --git a/data/summaries/lbsqpjgudiggdfcg.txt b/data/summaries/lbsqpjgudiggdfcg.txt new file mode 100644 index 0000000000000000000000000000000000000000..5151e44c28627466beb05fcfd030732d0aec53b7 --- /dev/null +++ b/data/summaries/lbsqpjgudiggdfcg.txt @@ -0,0 +1 @@ +Two men are in a car. The man in the passenger seat takes a bottle of cola and pours Mentos into it. The cola explodes and drenches the man in the driver's seat. \ No newline at end of file diff --git a/data/summaries/lch3037ehv6711.txt b/data/summaries/lch3037ehv6711.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e10721f995643fa5a5165dddbe77170092bc77e --- /dev/null +++ b/data/summaries/lch3037ehv6711.txt @@ -0,0 +1 @@ +A shirtless man with blond hair drinks a beer directly from the bottle. \ No newline at end of file diff --git a/data/summaries/leftatlondon_69990546340147397.txt b/data/summaries/leftatlondon_69990546340147397.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b7ba0680ea98a33ab7b132064e0f66cc9d5aa60 --- /dev/null +++ b/data/summaries/leftatlondon_69990546340147397.txt @@ -0,0 +1 @@ +A person is on camera, looking at the camera, and mouthing words. Above the person in black letters, the words "Old Eminem Vs. New Eminem". The person starts by mouthing words that look like "One day I robbed Dr. Dre. Told him to bend over like a slut. Then walked away. I played my tape, and he told me to stay". The person then opens their mouth wide and yells loudly, "Her honkers were bonkers". \ No newline at end of file diff --git a/data/summaries/leonkennedy2.txt b/data/summaries/leonkennedy2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9419ca2faf8a8eb7cbf2af3f28cc53784fb91eca --- /dev/null +++ b/data/summaries/leonkennedy2.txt @@ -0,0 +1 @@ +A close-up shot showcases seawater splashing from a hole within a rocky shore, filmed in slow motion. The surrounding rocks have a weathered and varied appearance. diff --git a/data/summaries/lewdsouls_67020b_11705629.txt b/data/summaries/lewdsouls_67020b_11705629.txt new file mode 100644 index 0000000000000000000000000000000000000000..edf3fc3c140cb7e4c5dc593c1894ca36b925ee49 --- /dev/null +++ b/data/summaries/lewdsouls_67020b_11705629.txt @@ -0,0 +1 @@ +A first-person perspective video shows the bloodstain feature on a Dark Souls-type video game. The player, standing in a dark stone room with stone stairs in the background, activates the bloodstain, and a translucent red figure appears, clumsily falling off the stairs and into the pit below. Text overlay on the video asks, “Who did this to bro?” with a crying face emoji. \ No newline at end of file diff --git a/data/summaries/licfixzflyd3nxlj.txt b/data/summaries/licfixzflyd3nxlj.txt new file mode 100644 index 0000000000000000000000000000000000000000..c884c563c7e8bcb33bb7bdb886322c7d2937867f --- /dev/null +++ b/data/summaries/licfixzflyd3nxlj.txt @@ -0,0 +1 @@ +A person wearing a green fish mask is sitting at a desk drinking from a small bottle. There is a fan on the table and a backpack on a shelf behind them. The word "Haha" is written in blue in the lower right-hand corner of the frame. \ No newline at end of file diff --git a/data/summaries/lightestadversewinningest_4f22.txt b/data/summaries/lightestadversewinningest_4f22.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1759955999521ce2de035353cb61a8bada38756 --- /dev/null +++ b/data/summaries/lightestadversewinningest_4f22.txt @@ -0,0 +1 @@ +A man in a pink T-shirt and sunglasses holds a baby and asks how many babies it takes to hold his weight. He grabs the baby, hangs from a bar, and then uses the baby as weight for a pull up. diff --git a/data/summaries/love_miley_6871985317335796998.txt b/data/summaries/love_miley_6871985317335796998.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cca0d72e97de51b0ad2b944f732386a0c564fb8 --- /dev/null +++ b/data/summaries/love_miley_6871985317335796998.txt @@ -0,0 +1 @@ +Someone sits on a couch, and their camera zooms in on a small, oddly rendered image of a troll-like figure sitting on their carpet. The person says that it scared them. \ No newline at end of file diff --git a/data/summaries/lvzzvbhboqdye16.txt b/data/summaries/lvzzvbhboqdye16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24b4d4e161ac421c59222b35ea85901a89ad7ea8 --- /dev/null +++ b/data/summaries/lvzzvbhboqdye16.txt @@ -0,0 +1 @@ +A person dressed as Spiderman is swinging from the roof of a building on a rope, holding an accordion. As he reaches the edge of the building, the rope breaks and he falls to the ground. He recovers, stands up, and plays the accordion for the spectators. \ No newline at end of file diff --git a/data/summaries/m994nqwqddwg5yw.txt b/data/summaries/m994nqwqddwg5yw.txt new file mode 100644 index 0000000000000000000000000000000000000000..55731eaeaac0151cbd045b6ee37cf1c51cacc918 --- /dev/null +++ b/data/summaries/m994nqwqddwg5yw.txt @@ -0,0 +1,2 @@ +Here's a summary of the video: +The video features an adorable seal pup, speckled with gray and white fur. It's lying on a blue surface and makes a variety of high-pitched squeals. The video concludes with the seal pup receiving and happily consuming a fish, making a purring noise as it eats. \ No newline at end of file diff --git a/data/summaries/mellowwildcat_e38664_9792319.txt b/data/summaries/mellowwildcat_e38664_9792319.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd3cefe0b212b902a9252679c59a5da4ce4d5f77 --- /dev/null +++ b/data/summaries/mellowwildcat_e38664_9792319.txt @@ -0,0 +1 @@ +A man displays a secret drawer in his kitchen. The drawer is blocked by the oven so to open the drawer, one has to open the oven, turn on the oven light, turn the stove top to medium, and then one can open the drawer that contains sponges. \ No newline at end of file diff --git a/data/summaries/mkstq1ipav3jlnq_.txt b/data/summaries/mkstq1ipav3jlnq_.txt new file mode 100644 index 0000000000000000000000000000000000000000..f58d496f5d03dcec3c36cba765237bd0fe8ea08e --- /dev/null +++ b/data/summaries/mkstq1ipav3jlnq_.txt @@ -0,0 +1 @@ +A streamer is playing Street Fighter 6 and reacting to other player’s character customization options. Some examples include a glowing man, an Oni, a muscle bound person in a yellow sweater, and a person dressed as Rugal. The streamer alternates between loving and hating the character customization. \ No newline at end of file diff --git a/data/summaries/mmdpdsslaeudwa.txt b/data/summaries/mmdpdsslaeudwa.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e56601196dfd70557cfa984f7a6b30ed7a79c7 --- /dev/null +++ b/data/summaries/mmdpdsslaeudwa.txt @@ -0,0 +1 @@ +A cat is held while a person tries to give it a treat, but the cat meows and tries to get away. \ No newline at end of file diff --git a/data/summaries/mnsqqeomzyzabguj.txt b/data/summaries/mnsqqeomzyzabguj.txt new file mode 100644 index 0000000000000000000000000000000000000000..be8f104b6bfec7a05613d5c90b6eb5148aef3f0f --- /dev/null +++ b/data/summaries/mnsqqeomzyzabguj.txt @@ -0,0 +1 @@ +The clip shows an animated scene from the show Family Guy, where Peter, Cleveland, and Quagmire are in the desert climbing a rock face. Cleveland is pulling on a rope, and Peter is climbing. Cleveland says he doesn't think it's safe and is worried he might fall. Cleveland then slips and falls. \ No newline at end of file diff --git a/data/summaries/mqba2nqzgai65ru.txt b/data/summaries/mqba2nqzgai65ru.txt new file mode 100644 index 0000000000000000000000000000000000000000..94984919b79aa09a165140bb436860ac6334c142 --- /dev/null +++ b/data/summaries/mqba2nqzgai65ru.txt @@ -0,0 +1 @@ +The pool players Mika Immonen and Chris Melling are playing a game of pool. The current score is 1-2, with Chris Melling in the lead. The next player lines up a shot. \ No newline at end of file diff --git a/data/summaries/mzibzbgvxvzgkdam.txt b/data/summaries/mzibzbgvxvzgkdam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9933eae836d0be00ffc43558324a01aaea1779e3 --- /dev/null +++ b/data/summaries/mzibzbgvxvzgkdam.txt @@ -0,0 +1 @@ +The video shows a woman wearing glasses, a red sweater, a red scarf, and a patterned vest, holding a staff with a cross on top and speaking animatedly while standing outdoors. \ No newline at end of file diff --git a/data/summaries/n0ttet0pspzmmvbz.txt b/data/summaries/n0ttet0pspzmmvbz.txt new file mode 100644 index 0000000000000000000000000000000000000000..af35e53b993dd66a3326a076ec65ad43a4906f1e --- /dev/null +++ b/data/summaries/n0ttet0pspzmmvbz.txt @@ -0,0 +1 @@ +The video shows a comedian recreating the intro skit from the song, "Houdini" by Eminem. The comedian plays two parts. First as a roommate who goes to make some coffee. Then as a spoof Eminem, who pops in and out of the doorway like a ghost to watch the roommate. \ No newline at end of file diff --git a/data/summaries/n3tlyz04fqqstrwv.txt b/data/summaries/n3tlyz04fqqstrwv.txt new file mode 100644 index 0000000000000000000000000000000000000000..86f0432ea1b57d6205fc2ed2aa615b603a942307 --- /dev/null +++ b/data/summaries/n3tlyz04fqqstrwv.txt @@ -0,0 +1 @@ +The video shows a person filming themselves on a cruise ship deck, before a woman suddenly enters the frame with a loud scream, creating a "jumpscare" effect. \ No newline at end of file diff --git a/data/summaries/n93effsaxmxf2kor.txt b/data/summaries/n93effsaxmxf2kor.txt new file mode 100644 index 0000000000000000000000000000000000000000..3716f6c461c9f338aee6732349782a733cf55ff4 --- /dev/null +++ b/data/summaries/n93effsaxmxf2kor.txt @@ -0,0 +1 @@ +A video clip begins with a person dressed in a gothic-inspired outfit with black lace and black cat ears. They have split-colored hair, black lipstick, and a nose ring. The clip quickly shifts, zooming in on their mouth before transitioning to a man with a beard. He comments on the previous person's appearance, suggesting they be "a little less emo" and "a little more negro" because the latter has "a lot more flavor." He laughs and the video concludes. \ No newline at end of file diff --git a/data/summaries/nahfrv0sjg3s56uczw81.txt b/data/summaries/nahfrv0sjg3s56uczw81.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6bdb76b59f294211645677815c27b62fee401b --- /dev/null +++ b/data/summaries/nahfrv0sjg3s56uczw81.txt @@ -0,0 +1 @@ +This is a meme featuring a character from the video game *Skyrim*, with the text "BY THE 9 DEVINE'S" at the top and "I'M ON THAT GOOD KUSH AN ACAHOL" at the bottom, implying that the character is under the influence. \ No newline at end of file diff --git a/data/summaries/neverbackdownneverwhat.txt b/data/summaries/neverbackdownneverwhat.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f63475eef4fadf3ed0c6219c52ea44f8df35378 --- /dev/null +++ b/data/summaries/neverbackdownneverwhat.txt @@ -0,0 +1 @@ +The video shows a TikTok recording of audio obtained through a sleep tracking application on an iPhone. The user recorded themselves uttering the phrase, "never back down, never what?" in their sleep. \ No newline at end of file diff --git a/data/summaries/newcanvas.txt b/data/summaries/newcanvas.txt new file mode 100644 index 0000000000000000000000000000000000000000..55f2c85856b8feba8b83665f792f0cdc83268a0e --- /dev/null +++ b/data/summaries/newcanvas.txt @@ -0,0 +1 @@ +The image features a collage of three adorable cat images, enhanced with a variety of heart and star emojis. The primary subjects are two black cats with striking eyes and an additional image with a white cat surrounded with pink hearts emojis. \ No newline at end of file diff --git a/data/summaries/ngzo_4miejrnd3sk.txt b/data/summaries/ngzo_4miejrnd3sk.txt new file mode 100644 index 0000000000000000000000000000000000000000..2db28298fd997685bb94f614be8980107491dab8 --- /dev/null +++ b/data/summaries/ngzo_4miejrnd3sk.txt @@ -0,0 +1 @@ +A small striped kitten held upright in someone's hands meows several times. \ No newline at end of file diff --git a/data/summaries/nikodavis_6866459592591805702.txt b/data/summaries/nikodavis_6866459592591805702.txt new file mode 100644 index 0000000000000000000000000000000000000000..85b09701dfded79522660864440f5a66e079427b --- /dev/null +++ b/data/summaries/nikodavis_6866459592591805702.txt @@ -0,0 +1 @@ +A man wearing headphones and a blazer with no shirt underneath stands in front of a microphone. He's singing along to Justin Bieber's song "Take Every Single Piece of the Blame." Text at the top says, "Being Justin Beiber's back up singer was my toughest gig!🎤🎶." \ No newline at end of file diff --git a/data/summaries/ninenews.txt b/data/summaries/ninenews.txt new file mode 100644 index 0000000000000000000000000000000000000000..405b51c5d631789b083f2dbe5237b880dd1e8823 --- /dev/null +++ b/data/summaries/ninenews.txt @@ -0,0 +1 @@ +A man recorded a TikTok video of himself “holding” a phone up to his ear, while he lip-synced to music. The video’s text overlay states, “CHANNEL 9 NEWS PLAYING THIS BANGER BEFORE BLAMING THE SUDANESE COMMUNITY FOR NO REASON.” \ No newline at end of file diff --git a/data/summaries/noizxlsakr5gkeo8.txt b/data/summaries/noizxlsakr5gkeo8.txt new file mode 100644 index 0000000000000000000000000000000000000000..443275b006906c0ad2a98d233fdc678e87f98fce --- /dev/null +++ b/data/summaries/noizxlsakr5gkeo8.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +The video shows a woman dancing on a plane, followed by a man getting angry and shouting about TikTokers on the plane. Then there are some images of the man and woman dancing on the plane that is in the air with special effects showing it is on fire and crashing. At the end, the man is shown on the street. \ No newline at end of file diff --git a/data/summaries/o8wkds87xgtozhqa.txt b/data/summaries/o8wkds87xgtozhqa.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff014b2453b81aefa153e55fdc60787b21a9b8ac --- /dev/null +++ b/data/summaries/o8wkds87xgtozhqa.txt @@ -0,0 +1 @@ +The player character runs toward a Pokemon in the rain in Pokemon Scarlet or Violet. The area is the South Province, Area Two. diff --git a/data/summaries/okmcxk9ii4ry7gh.txt b/data/summaries/okmcxk9ii4ry7gh.txt new file mode 100644 index 0000000000000000000000000000000000000000..1149bc34fcdfd3963ce8fd1d7c6f77c28255d254 --- /dev/null +++ b/data/summaries/okmcxk9ii4ry7gh.txt @@ -0,0 +1 @@ +The video starts with a young man looking at the camera while wearing a black Champion shirt. He claims his life is like a YouTube Poop. Then, he walks out of the door and immediately closes it behind him. \ No newline at end of file diff --git a/data/summaries/omg.txt b/data/summaries/omg.txt new file mode 100644 index 0000000000000000000000000000000000000000..237a85477a2929746f6d6772fd85b45e4550c5d6 --- /dev/null +++ b/data/summaries/omg.txt @@ -0,0 +1 @@ +Two t-shirts are pitted against each other. On the left, a gray t-shirt features a crudely drawn figure with text below that reads, "TONIGHT WE FEAST ON WHAT REMAINS". On the right, a black t-shirt displays a drawing of a jester-like face and a cluster of circles, accompanied by the text, "ONLY TWO NIPPLES? AMATEURS". In the center, a stylized "VS" separates the two shirts, while the background shows a dark, abstract pattern, and a logo for "LRPO JACKBOX.TV" encourages viewers to join the audience. \ No newline at end of file diff --git a/data/summaries/oof_dcb340_12285762.txt b/data/summaries/oof_dcb340_12285762.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cbe50e8befced72107f151ed2cdce256c79266d --- /dev/null +++ b/data/summaries/oof_dcb340_12285762.txt @@ -0,0 +1 @@ +A small black dog in a lampshade runs through a living room before leaping from the back of a couch. \ No newline at end of file diff --git a/data/summaries/oppenheimer.txt b/data/summaries/oppenheimer.txt new file mode 100644 index 0000000000000000000000000000000000000000..a772bb764ea14c96989068bf204d16328a7698ab --- /dev/null +++ b/data/summaries/oppenheimer.txt @@ -0,0 +1 @@ +In a meme, a man in a suit says, "We've got one hope, which is..." The scene cuts to a man sitting at a table who raises his eyebrows, waiting to hear what the man in the suit will say. The scene then cuts back to the man in the suit who says, "antisemitism." The text reads, "Explaining to my friend how we're going to win Jackbox Quiplash." \ No newline at end of file diff --git a/data/summaries/orsfp8lahrsggsu.txt b/data/summaries/orsfp8lahrsggsu.txt new file mode 100644 index 0000000000000000000000000000000000000000..da471689641419b1867c69a6dd3edc4e3924f573 --- /dev/null +++ b/data/summaries/orsfp8lahrsggsu.txt @@ -0,0 +1 @@ +A funny clip featuring a man sitting by a pool, then being pranked by an augmented reality panda who pushes him into the pool. Two more men, one of whom is also pushed into the pool, can be seen in the clip as well. \ No newline at end of file diff --git a/data/summaries/osxjarsdh_hmok69.txt b/data/summaries/osxjarsdh_hmok69.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2f0b4ea1588887509222419dcbee52e1349dbe8 --- /dev/null +++ b/data/summaries/osxjarsdh_hmok69.txt @@ -0,0 +1 @@ +A person plays music near a fish tank, and the fish swims up closer and seems to listen, maybe sensing the vibrations. \ No newline at end of file diff --git a/data/summaries/otehze8bd_ixkree.txt b/data/summaries/otehze8bd_ixkree.txt new file mode 100644 index 0000000000000000000000000000000000000000..0660d92d04322add848b5615dcb5895bd64b4ace --- /dev/null +++ b/data/summaries/otehze8bd_ixkree.txt @@ -0,0 +1 @@ +A ferret emerges headfirst from a red storage cube on top of a green cushion, then scurries away. \ No newline at end of file diff --git a/data/summaries/oymxczue0nnv7_fu.txt b/data/summaries/oymxczue0nnv7_fu.txt new file mode 100644 index 0000000000000000000000000000000000000000..167ae650560681d065b621bcfd83965b10936c1d --- /dev/null +++ b/data/summaries/oymxczue0nnv7_fu.txt @@ -0,0 +1 @@ +A cat meows in a high-pitched tone. The camera is blurry and aimed at the cat, whose head takes up most of the frame. The cat is light-colored, possibly cream or tan. The background is indistinct, but appears to be indoors. The cat makes one meow, the camera moves a bit, then it makes a few more meows. \ No newline at end of file diff --git a/data/summaries/parallellinestony.txt b/data/summaries/parallellinestony.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8c500953250ce0c4758f0c2944d193e9dbd253f --- /dev/null +++ b/data/summaries/parallellinestony.txt @@ -0,0 +1 @@ +The creator of this TikTok performs the audio act of two parallel lines beefing with one another, by going back and forth from one side of the room to the other. \ No newline at end of file diff --git a/data/summaries/piastriembarassment.txt b/data/summaries/piastriembarassment.txt new file mode 100644 index 0000000000000000000000000000000000000000..b02b0803bb00ede3eec6bf80d41307d334442486 --- /dev/null +++ b/data/summaries/piastriembarassment.txt @@ -0,0 +1 @@ +A video clip shows a man sitting on a couch for an interview, he knocks over a can of soda, but then picks it back up. \ No newline at end of file diff --git a/data/summaries/pissing_all_by_yourself.txt b/data/summaries/pissing_all_by_yourself.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1f4ecc5a59a7c0722662dd8052de2a9162f1228 --- /dev/null +++ b/data/summaries/pissing_all_by_yourself.txt @@ -0,0 +1 @@ +Here's a summary of the file: The video is a skit of a person interacting with a toilet in the style of the game Fallout. When the toilet is "activated," a woman appears inside it, asking "Pissing all by yourself, handsome?" \ No newline at end of file diff --git a/data/summaries/prescientaberrantbridged_766a7.txt b/data/summaries/prescientaberrantbridged_766a7.txt new file mode 100644 index 0000000000000000000000000000000000000000..99fc824ac50d22e22fa170a4ceae6f857d3a22bd --- /dev/null +++ b/data/summaries/prescientaberrantbridged_766a7.txt @@ -0,0 +1 @@ +A scene from a video game shows a character with a gun aimed at an enemy in a dark, ruined building. The enemy is visible in silhouette. Another character runs past the camera, towards the action. \ No newline at end of file diff --git a/data/summaries/pvltmijei3ktofhm.txt b/data/summaries/pvltmijei3ktofhm.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9aa121fca87c2c2e9d1948aea8aa3719edba80f --- /dev/null +++ b/data/summaries/pvltmijei3ktofhm.txt @@ -0,0 +1 @@ +A person is hanging upside down off the side of a wooden dock trying to retrieve a ball from the water. Other people are holding their feet to prevent them from falling into the water. diff --git a/data/summaries/pxl_20230504_083022355ts3.txt b/data/summaries/pxl_20230504_083022355ts3.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ac72a4920c122838a9fd6b256e64c6e74fdcd6 --- /dev/null +++ b/data/summaries/pxl_20230504_083022355ts3.txt @@ -0,0 +1 @@ +A woman left a carrot for some animals and watches as they scramble to eat it. She initially thinks that she has fed them a couple of carrots, but realizes there are actually two. She expresses shock and excitement at the animals, calling them cute. \ No newline at end of file diff --git a/data/summaries/pxl_20250120_171712912ts1.txt b/data/summaries/pxl_20250120_171712912ts1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d4b82a7431d6f389642caa6915df1ea81b5c940 --- /dev/null +++ b/data/summaries/pxl_20250120_171712912ts1.txt @@ -0,0 +1 @@ +A person is recording the video game Mario Kart being played on an LG TV. They are not happy with the blue shell. \ No newline at end of file diff --git a/data/summaries/pzjasougx0xl7ch.txt b/data/summaries/pzjasougx0xl7ch.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cf39c44eb901aed763cf79f578f40a296218b99 --- /dev/null +++ b/data/summaries/pzjasougx0xl7ch.txt @@ -0,0 +1 @@ +Here's a summary: The video shows an interview with Shaun White, an Olympic gold medalist, on CNN and ABC news. He discusses the positive reception he received from the stewards after winning the gold medal and how they provided him with unlimited service. He then clarifies that he was referring to non-alcoholic drinks when asked about getting drinks as he was 19 years old at the time. \ No newline at end of file diff --git a/data/summaries/qgsqndxwzz45n_43.txt b/data/summaries/qgsqndxwzz45n_43.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f0978de8251b0c478cbb87b32636912127ccaf9 --- /dev/null +++ b/data/summaries/qgsqndxwzz45n_43.txt @@ -0,0 +1 @@ +A gray tabby cat is featured in the video. The text on the screen says "pov: your cat catches you recording them." The cat is cleaning its paws and then pauses, looking at the camera, as if it has been caught in the act. The video is lit with a reddish-purple light. \ No newline at end of file diff --git a/data/summaries/qhqbmp_yfkcxhzxh.txt b/data/summaries/qhqbmp_yfkcxhzxh.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8960e77e71d042b6035c609cbd7bc88efc7cb58 --- /dev/null +++ b/data/summaries/qhqbmp_yfkcxhzxh.txt @@ -0,0 +1 @@ +A Minecraft video shows a player rating a pixel art of a white cat, with the word “MEOW!”, as “good”. The video moves to another player building what looks like a black creature, with two white squares as eyes, and small, thick legs. \ No newline at end of file diff --git a/data/summaries/qmgas8gregc21rta.txt b/data/summaries/qmgas8gregc21rta.txt new file mode 100644 index 0000000000000000000000000000000000000000..f55d59c986a661f5ab01cf79ac6a91a07590a5a7 --- /dev/null +++ b/data/summaries/qmgas8gregc21rta.txt @@ -0,0 +1 @@ +A yellow sheet with stars and moon pattern floats over a white floor, and three puppies run out from under it. The sheet moves over to the side, revealing a playpen. The sheet moves again, and a chow chow follows it. \ No newline at end of file diff --git a/data/summaries/qnqp9kgewqaxmvvw.txt b/data/summaries/qnqp9kgewqaxmvvw.txt new file mode 100644 index 0000000000000000000000000000000000000000..999ae1f7e8ffba60c6a1a3affa8275be36873962 --- /dev/null +++ b/data/summaries/qnqp9kgewqaxmvvw.txt @@ -0,0 +1 @@ +A video of a real-life person with the Spider-Man character superimposed over him. Rio, Spider-Man's mother, asks if her son is okay. Later in the clip, the word, "Heal," appears as the Spider-Man character heals someone on the street. A rat is added to the video at the end of the clip and is subsequently shot. The video then ends. \ No newline at end of file diff --git a/data/summaries/qt9xfqxkkwrohllj.txt b/data/summaries/qt9xfqxkkwrohllj.txt new file mode 100644 index 0000000000000000000000000000000000000000..f578bc3530776f37f183841f6baa3f047b9fa8ba --- /dev/null +++ b/data/summaries/qt9xfqxkkwrohllj.txt @@ -0,0 +1 @@ +Lady Gaga is on stage, speaking into a microphone, she has short blonde hair, red lipstick and dark eye shadow. She's wearing a gold and green jacket. There is smoke in the background. \ No newline at end of file diff --git a/data/summaries/r4gqvsc9ou_sqen.txt b/data/summaries/r4gqvsc9ou_sqen.txt new file mode 100644 index 0000000000000000000000000000000000000000..b62ff6228570661e6807909b041f96b7e853bf8a --- /dev/null +++ b/data/summaries/r4gqvsc9ou_sqen.txt @@ -0,0 +1 @@ +The video shows someone trying to buy a yellow divider at Publix. The person disguises the divider by placing it underneath a bunch of bananas. However, the cashier notices the item and puts it aside. \ No newline at end of file diff --git a/data/summaries/rapidsavecom_i_present_you_the.txt b/data/summaries/rapidsavecom_i_present_you_the.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6db78a51d1211861e579ed0e2ad135b1f573d5f --- /dev/null +++ b/data/summaries/rapidsavecom_i_present_you_the.txt @@ -0,0 +1 @@ +The man sitting at the desk in this video wears a green zip-up jacket with patches. A Ukrainian flag is displayed on the left side of the screen. The man's name tag reads "БУДАНОВ," which is written in Ukrainian. A framed photo of a man in a suit is visible on his desk. \ No newline at end of file diff --git a/data/summaries/ratlove.txt b/data/summaries/ratlove.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5304056eb35715b690b10c7f90582c00f3610c9 --- /dev/null +++ b/data/summaries/ratlove.txt @@ -0,0 +1 @@ +The image is a collage of three separate images, all of which feature rats surrounded by pink heart emojis. One image shows a rat lying on its back while holding food, the second shows another rat in a similar position with its paws up, and the third shows two rats nestled together in a pink blanket. The overall theme is cute and affectionate. \ No newline at end of file diff --git a/data/summaries/rea4xbawqq8thmko.txt b/data/summaries/rea4xbawqq8thmko.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6a4e4ada786a79e43e13b819fa82aa32e2c729 --- /dev/null +++ b/data/summaries/rea4xbawqq8thmko.txt @@ -0,0 +1,3 @@ +Here's a summary of the video: + +The video shows a man standing outside. He starts out looking down at the ground. The man looks into the camera and states that if he hadn't slowed down, "y'all would not have caught me." He says if they let him get in a new "scat pack," he would have took off on them. He concludes by saying, "You two fu**ers just made the biggest mistake of your lousy careers." \ No newline at end of file diff --git a/data/summaries/redditsavecom__2zhvauh3dj691.txt b/data/summaries/redditsavecom__2zhvauh3dj691.txt new file mode 100644 index 0000000000000000000000000000000000000000..ead19171d0116b10d0d83315bab1cd5972bea310 --- /dev/null +++ b/data/summaries/redditsavecom__2zhvauh3dj691.txt @@ -0,0 +1 @@ +An anime character angrily pulls a stone tablet out of the ground, and the scene cuts to a cat lying on its back holding a baguette, which then becomes a French-style image with glasses, a beret, and the word "baguette" below the image. \ No newline at end of file diff --git a/data/summaries/redditsavecom_hes_an_omega_lev.txt b/data/summaries/redditsavecom_hes_an_omega_lev.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d292234e12e2cea827a1f7a6d17d1c58f90dce4 --- /dev/null +++ b/data/summaries/redditsavecom_hes_an_omega_lev.txt @@ -0,0 +1 @@ +A group of shirtless children are playing in a flooded area. One child slips and falls on the wet surface. The screen then displays the text "X-MEN". \ No newline at end of file diff --git a/data/summaries/redditsavecom_i_think_this_bel.txt b/data/summaries/redditsavecom_i_think_this_bel.txt new file mode 100644 index 0000000000000000000000000000000000000000..7782a5e05f94c09a4fe25b00f0c00666c253ec2f --- /dev/null +++ b/data/summaries/redditsavecom_i_think_this_bel.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +The file shows a remote-controlled vehicle with a dish on top, presumably containing raw chicken, being driven towards a dog in an urban outdoor setting. The dog approaches the vehicle and begins eating the chicken, seemingly undisturbed by the remote-controlled vehicle. diff --git a/data/summaries/redditsavecom_theres_no_way_a_.txt b/data/summaries/redditsavecom_theres_no_way_a_.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa25d7ebde5c0fc1ffa4d1f8c96ac7355caa9559 --- /dev/null +++ b/data/summaries/redditsavecom_theres_no_way_a_.txt @@ -0,0 +1 @@ +A person is using a blowtorch to caramelize the sugar on top of a crème brûlée. The person says that the topping gets hard once it cools down, and someone in the background laughs, implying that the statement sounds like a double entendre. \ No newline at end of file diff --git a/data/summaries/redditsavecom_they_did_itk7c5t.txt b/data/summaries/redditsavecom_they_did_itk7c5t.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b94416dfd55add2c366bc0c85df085f108526b8 --- /dev/null +++ b/data/summaries/redditsavecom_they_did_itk7c5t.txt @@ -0,0 +1,3 @@ +Here's a short summary of the file: + +The scene shows the video game character Vergil facing off with someone sitting on a plastic chair in a barren, icy landscape. The character appears unbothered by the challenge of the upcoming fight. He is then asked why he brought the chair to the fight, replying that "Yes, it's plastic. It's comforting to me." \ No newline at end of file diff --git a/data/summaries/redunadvisedodd_a4e39c_1230263.txt b/data/summaries/redunadvisedodd_a4e39c_1230263.txt new file mode 100644 index 0000000000000000000000000000000000000000..b07b0252310cafcfa7dc9a4d14765d038319b895 --- /dev/null +++ b/data/summaries/redunadvisedodd_a4e39c_1230263.txt @@ -0,0 +1 @@ +The video hilariously satirizes dance moves meant to attract men in a club setting. It displays three ridiculous dance moves - "the jumping gremlin", "ogre looking for dinner" and "the upright worm". The creator performs these moves with exaggerated expressions, enhancing the comedic effect. \ No newline at end of file diff --git a/data/summaries/rgtg0uogscxeoxk.txt b/data/summaries/rgtg0uogscxeoxk.txt new file mode 100644 index 0000000000000000000000000000000000000000..1268af8e464ea5a7d11746f015d1da9e33db4760 --- /dev/null +++ b/data/summaries/rgtg0uogscxeoxk.txt @@ -0,0 +1 @@ +A cat is seated on a small, padded stool while a person massages its head and back. The cat appears to be enjoying the attention and purrs loudly. The person massages the cat’s head and back and eventually puts a hand underneath the cat, but the cat is not happy with that. The cat continues to purr and seems content being massaged. \ No newline at end of file diff --git a/data/summaries/rmzmsmswryh2uk2.txt b/data/summaries/rmzmsmswryh2uk2.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa263b32aa022a61126cb263880567ebd2a606e2 --- /dev/null +++ b/data/summaries/rmzmsmswryh2uk2.txt @@ -0,0 +1 @@ +A Minecraft-based meme video shows a sign indicating that the bell is to be rung for sex. When the bell is rung, an Iron Golem appears. \ No newline at end of file diff --git a/data/summaries/rn_image_picker_lib_temp_6d697.txt b/data/summaries/rn_image_picker_lib_temp_6d697.txt new file mode 100644 index 0000000000000000000000000000000000000000..03f8567dc2cdbb28d9dfe954a26f9eede94ced17 --- /dev/null +++ b/data/summaries/rn_image_picker_lib_temp_6d697.txt @@ -0,0 +1 @@ +The image shows two parcels, one in a brown paper bag and the other in a white plastic bag, both addressed to Luma Graham at 2 Myrtle Street, Brunswick East VIC 3057, Australia. The brown paper bag is from eParcel/Australia Post with a weight of 0.50kg, sent from PLP Richmond Traders. The white plastic bag is from Amazon Pharmacy with a weight of 0.08kg and was sent from Omni-Channel Logistics in Alexandria NSW 2015. Both have security and dangerous goods declarations. The parcels are sitting on top of a cardboard box. \ No newline at end of file diff --git a/data/summaries/robobro.txt b/data/summaries/robobro.txt new file mode 100644 index 0000000000000000000000000000000000000000..a95d7ad3a0968e64ced185d4af5a266eb94ade3d --- /dev/null +++ b/data/summaries/robobro.txt @@ -0,0 +1,2 @@ +Here is a summary of the file: +This video is a POV shot of a man in his wheelchair as he is shopping at Sam’s Club with his mom. The man jokingly says that his mom drugs him to keep him a vegetable. The man’s mom does not deny the statement and laughs along with the man. At the end, the mom shuts off the camera and the man says that what she did was criminal. \ No newline at end of file diff --git a/data/summaries/rounddog.txt b/data/summaries/rounddog.txt new file mode 100644 index 0000000000000000000000000000000000000000..9956d9db2f62a2ab67334ddaed9f5c0b4323000f --- /dev/null +++ b/data/summaries/rounddog.txt @@ -0,0 +1 @@ +A small, fluffy dog is getting a bath. It is shown first with a lot of fur on a grooming table. It is then shown in a sink full of water and soap, with a white towel wrapped around its head. It is then seen on the grooming table again with a fresh, round haircut. The dog then walks off the table, and it is apparent that the haircut is an incredibly round one, with only the face and legs being distinct from the round body. \ No newline at end of file diff --git a/data/summaries/rrjfvq7krpivctr9.txt b/data/summaries/rrjfvq7krpivctr9.txt new file mode 100644 index 0000000000000000000000000000000000000000..1746e1cb80916fec60145d3a98587a1403307db9 --- /dev/null +++ b/data/summaries/rrjfvq7krpivctr9.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +A woman with lilac hair and light blue pants chases two men around the sofa with a super soaker water gun. One man falls onto the couch and is comforted by the other as the water gun nears him. He is sprayed and has a tantrum. \ No newline at end of file diff --git a/data/summaries/rsg9eyy6btyveyp_.txt b/data/summaries/rsg9eyy6btyveyp_.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d1c6ffa0c49df490ffdef0f1539b9fee33c06f7 --- /dev/null +++ b/data/summaries/rsg9eyy6btyveyp_.txt @@ -0,0 +1 @@ +Here's a summary of the file: A small kitten in the background watches as a pink bowl of raw meat is placed on a table. A person can be heard laughing. \ No newline at end of file diff --git a/data/summaries/rwt4ffbiegespghf.txt b/data/summaries/rwt4ffbiegespghf.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1b92cdabffbbd953c1f34f7a034c980f741749 --- /dev/null +++ b/data/summaries/rwt4ffbiegespghf.txt @@ -0,0 +1 @@ +The Scooby Doo gang is in a morgue, and Daphne says the patients that disappeared are all dead. \ No newline at end of file diff --git a/data/summaries/rx4rkzheyhyaozdg.txt b/data/summaries/rx4rkzheyhyaozdg.txt new file mode 100644 index 0000000000000000000000000000000000000000..02ae39cbb67854066305dda363b0ff70ab4c41af --- /dev/null +++ b/data/summaries/rx4rkzheyhyaozdg.txt @@ -0,0 +1 @@ +Here's a summary of the video file: A tuxedo cat runs around and eventually jumps up and presses its face against a window. \ No newline at end of file diff --git a/data/summaries/rxq3fgsdc8e4ivjv.txt b/data/summaries/rxq3fgsdc8e4ivjv.txt new file mode 100644 index 0000000000000000000000000000000000000000..9962161be40d98d6e85b454121763f6f6fbf13e7 --- /dev/null +++ b/data/summaries/rxq3fgsdc8e4ivjv.txt @@ -0,0 +1 @@ +The video features a person using a "Female Body Visualizer" application. The person manipulates various parameters such as height, weight, chest, waist, and hips to alter the appearance of the 3D female model. Throughout the process, the individual makes humorous commentary about the changes, eventually crafting a comical and exaggerated body shape. \ No newline at end of file diff --git a/data/summaries/s0azfmmnif3twp20.txt b/data/summaries/s0azfmmnif3twp20.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbbaf6659162e623c57fbeb1347ca0ba79f1682b --- /dev/null +++ b/data/summaries/s0azfmmnif3twp20.txt @@ -0,0 +1 @@ +A man dressed up as the rapper Eminem is seen walking into a room after having caught his girlfriend cheating on him. He proceeds to yell at her. \ No newline at end of file diff --git a/data/summaries/s1wrpvsv_uwvfj6.txt b/data/summaries/s1wrpvsv_uwvfj6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cfb3528eb291551a46e16f5835438f9b4398789 --- /dev/null +++ b/data/summaries/s1wrpvsv_uwvfj6.txt @@ -0,0 +1 @@ +A man uses an eraser on a whiteboard that reads "Days Without Thinking About Her", and the number "60064". He erases the last digit and replaces it with a "5" and says "Fuck!" seemingly displeased that he had to erase the number. \ No newline at end of file diff --git a/data/summaries/salsamachine.txt b/data/summaries/salsamachine.txt new file mode 100644 index 0000000000000000000000000000000000000000..89a45f7ebb337669c601210ef986da8355873215 --- /dev/null +++ b/data/summaries/salsamachine.txt @@ -0,0 +1 @@ +A TikTok video shows a man getting on an elliptical and making salsa dancing motions while using the machine. A comment in the video reads, “The salsa machine is crazy work 😂” diff --git a/data/summaries/screen202208162212513.txt b/data/summaries/screen202208162212513.txt new file mode 100644 index 0000000000000000000000000000000000000000..010633c02a894f4a0d5fc10bf0aa04984d85b938 --- /dev/null +++ b/data/summaries/screen202208162212513.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +This clip shows Jordan Peterson speaking about his perspective on what makes an unstoppable combination. He says “gigantic dick and balls” have proven an unstoppable combination. He then says this is from extensive experience. diff --git a/data/summaries/screen_recording_2022022011352.txt b/data/summaries/screen_recording_2022022011352.txt new file mode 100644 index 0000000000000000000000000000000000000000..529aaaa1094d272959abeeb9c9732526965ef039 --- /dev/null +++ b/data/summaries/screen_recording_2022022011352.txt @@ -0,0 +1 @@ +A woman with a large hat, necklace, and low-cut top angrily yells, "You ungrateful, selfish wretch! You come into MY house..." and then says, "Suck my DICK!" before saying "And call me GAY?" \ No newline at end of file diff --git a/data/summaries/screenshot20240622at1359341one.txt b/data/summaries/screenshot20240622at1359341one.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5bac3344873392cae04fd55a4f8c9d56b6f8578 --- /dev/null +++ b/data/summaries/screenshot20240622at1359341one.txt @@ -0,0 +1 @@ +The image is a YouTube video thumbnail titled "What Your Favorite Band Says About You" by Track Turtle. The thumbnail features a picture of the band Radiohead with the caption "YOU'RE DEPRESSED" across the top. diff --git a/data/summaries/screenshot_2020080200464338.txt b/data/summaries/screenshot_2020080200464338.txt new file mode 100644 index 0000000000000000000000000000000000000000..0313c836e9931f1c40e02d2f712b554283a0a553 --- /dev/null +++ b/data/summaries/screenshot_2020080200464338.txt @@ -0,0 +1 @@ +A blue Pikmin with wide eyes is standing against a blurry background. Text next to it reads "im fag?". \ No newline at end of file diff --git a/data/summaries/sdfgvxcvxcvxcvxcv.txt b/data/summaries/sdfgvxcvxcvxcvxcv.txt new file mode 100644 index 0000000000000000000000000000000000000000..42cf8c393dc725da914c5d3bb76a77846ab931eb --- /dev/null +++ b/data/summaries/sdfgvxcvxcvxcvxcv.txt @@ -0,0 +1 @@ +A video shows two metal carts, one with a basket and the other a seating area, standing in front of a building with the words, "Reduce Reuse Recycle." The person filming the video says, "Reduce Reuse Recycle." \ No newline at end of file diff --git a/data/summaries/sdfsdfsdf1.txt b/data/summaries/sdfsdfsdf1.txt new file mode 100644 index 0000000000000000000000000000000000000000..98dc3fd1c60a5088e50ec764625912053762359a --- /dev/null +++ b/data/summaries/sdfsdfsdf1.txt @@ -0,0 +1 @@ +A man with glasses, a beard, long hair, and a black hat looks up at the sky on a sunny day and speaks in a video. The text overlay reads, "The first birds of a feather to flock together." He starts by saying, "It's a good day to be a bird," and then proceeds to talk as if he's talking to another bird. He asks the other bird where they are going and says, "Wherever the wind takes me." \ No newline at end of file diff --git a/data/summaries/sealbounce.txt b/data/summaries/sealbounce.txt new file mode 100644 index 0000000000000000000000000000000000000000..18895b85ad49fbc11efac059ffff9811c79e4252 --- /dev/null +++ b/data/summaries/sealbounce.txt @@ -0,0 +1 @@ +A seal is crawling on a paved surface with two other seals laying nearby. The scene quickly transitions into a surreal montage of digitally created seals crawling across various landscapes including a highway, a field, a city skyline, and a forest path with a tractor. The seals also appear to be flying at one point, creating a humorous and otherworldly effect. diff --git a/data/summaries/seashanty2_but_somethings_diff.txt b/data/summaries/seashanty2_but_somethings_diff.txt new file mode 100644 index 0000000000000000000000000000000000000000..660588c91cd9695a936e93b94f3f4402f6bea4e5 --- /dev/null +++ b/data/summaries/seashanty2_but_somethings_diff.txt @@ -0,0 +1 @@ +The file contains distorted audio, resembling a musical composition with heavy electronic influence, potentially categorized under the genre of gabber, which is characterized by fast tempos and distorted sounds. The music also incorporates horn-like sounds, along with an element of vocalization, adding an unconventional layer to the distorted sounds. \ No newline at end of file diff --git a/data/summaries/shakenpastelabsent_ae9e42_1101.txt b/data/summaries/shakenpastelabsent_ae9e42_1101.txt new file mode 100644 index 0000000000000000000000000000000000000000..53873b50fb72381fe6373358548f8e5aef1fab47 --- /dev/null +++ b/data/summaries/shakenpastelabsent_ae9e42_1101.txt @@ -0,0 +1 @@ +A player in the game "Dark Souls 3" is making their way up a very long set of stairs in a cold, snowy, and bleak environment. After checking their inventory, they continue their way up, when they are attacked by an opponent. The player then falls from a great height. The words "YOU DIED" appear at the bottom of the screen. The video is captioned with "WHAT 672 HOURS OF DARK SOULS 3 LOOKS LIKE". \ No newline at end of file diff --git a/data/summaries/shrimp.txt b/data/summaries/shrimp.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4347c2e78836af1ef9561ebe032191519ba69aa --- /dev/null +++ b/data/summaries/shrimp.txt @@ -0,0 +1 @@ +A large cooked shrimp is sitting on a black gaming chair. \ No newline at end of file diff --git a/data/summaries/sindl8igbksah9q1.txt b/data/summaries/sindl8igbksah9q1.txt new file mode 100644 index 0000000000000000000000000000000000000000..71da9a1c3d499fc36838142bc20f4ea4ae91d931 --- /dev/null +++ b/data/summaries/sindl8igbksah9q1.txt @@ -0,0 +1 @@ +The Spotify wrapped presentation reveals that the user's top song was "Mice Repel" by Ultrasonic Pest Repeller, which they listened to 292 times, mostly on April 29, 2022. A picture of a mouse with a red prohibition symbol accompanies the text. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_163282601_1.txt b/data/summaries/snapinstaapp_video_163282601_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aa82ce9bd5f81e5b8fea36d04068c8194cea7a6 --- /dev/null +++ b/data/summaries/snapinstaapp_video_163282601_1.txt @@ -0,0 +1 @@ +From a strange perspective that seems to be inside someone's mouth, the video displays a concert or dance party with a crowd of people and a DJ. The unusual angle offers a unique glimpse of the event. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_321193628_7.txt b/data/summaries/snapinstaapp_video_321193628_7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b46c043e97f7891b6208bd3c90f4d4e8239287ed --- /dev/null +++ b/data/summaries/snapinstaapp_video_321193628_7.txt @@ -0,0 +1,3 @@ +Here is a summary of the video file: + +In a video with text on the top reading “The way she hides in the corner after imitating PINGU”, a woman with long gray hair is sitting at a table with a man. The woman says “AH PINGU!” and the man asks “What is PINGU?”. The woman explains that she does a PINGU imitation and does an imitation of PINGU. Afterwards, she gets up and runs into the corner, covering her face with her hair against the wall. The man asks “What the…”. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_332523165_7.txt b/data/summaries/snapinstaapp_video_332523165_7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a314ba1526c32665aab5975961a8985295eef2b --- /dev/null +++ b/data/summaries/snapinstaapp_video_332523165_7.txt @@ -0,0 +1 @@ +A man in a green t-shirt and blue jeans is standing in a barber shop. The man has a fresh haircut with a prominent center part and a short beard. In the beginning of the video, the man is shown in comparison to a gorilla. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_47669493_10.txt b/data/summaries/snapinstaapp_video_47669493_10.txt new file mode 100644 index 0000000000000000000000000000000000000000..da93ec6abc1d711932a6555bca976c425e9db428 --- /dev/null +++ b/data/summaries/snapinstaapp_video_47669493_10.txt @@ -0,0 +1 @@ +A chill white and brown cat lounges on a yellow couch, casually splayed on its back. It's accompanied by a pillow with the same cat's face printed on it, also lounging in a similar position. The whimsical scene is underscored by laid-back, jazzy music. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_54449357_28.txt b/data/summaries/snapinstaapp_video_54449357_28.txt new file mode 100644 index 0000000000000000000000000000000000000000..badfd32b963b94cf79d3821ccf54ef2827e8e535 --- /dev/null +++ b/data/summaries/snapinstaapp_video_54449357_28.txt @@ -0,0 +1 @@ +A young man attempts a candle blowing-out trick using a toilet paper roll, but fails miserably, ending up spraying wax all over himself. The text overlay reads, "I think I did it wrong." \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_894a1754009.txt b/data/summaries/snapinstaapp_video_894a1754009.txt new file mode 100644 index 0000000000000000000000000000000000000000..8021f24766cc8babc207e35bb52bf771c28226fc --- /dev/null +++ b/data/summaries/snapinstaapp_video_894a1754009.txt @@ -0,0 +1,3 @@ +Here's a short summary of the video file: + +The video is a short meme featuring a scene from the game "Elden Ring." The text reads, "The friend without a car when it's time to leave the function." The scene shows an enemy carrying a caged player, humorously illustrating the situation of needing a ride home. diff --git a/data/summaries/snapinstaapp_video_an82j9syhul.txt b/data/summaries/snapinstaapp_video_an82j9syhul.txt new file mode 100644 index 0000000000000000000000000000000000000000..7986a41d09b2aa75df2a97703bb069ba5881b7b5 --- /dev/null +++ b/data/summaries/snapinstaapp_video_an82j9syhul.txt @@ -0,0 +1 @@ +An animation poses a question about what happens to a child who isn't loved, followed by a short, glamorous transition to Max Verstappen, Formula 1 champion. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_an9esvyt4lh.txt b/data/summaries/snapinstaapp_video_an9esvyt4lh.txt new file mode 100644 index 0000000000000000000000000000000000000000..3535fc3980665b8d490731b74313cc8a978cda64 --- /dev/null +++ b/data/summaries/snapinstaapp_video_an9esvyt4lh.txt @@ -0,0 +1 @@ +A woman standing in a bathroom is filmed in the video. She is crying and the text overlay conveys how doing laundry late means the woman must resort to wearing an old lace G-string to work. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_an_m964jpwu.txt b/data/summaries/snapinstaapp_video_an_m964jpwu.txt new file mode 100644 index 0000000000000000000000000000000000000000..075962f4d6da2d837daaf1878f509a4fec8c9855 --- /dev/null +++ b/data/summaries/snapinstaapp_video_an_m964jpwu.txt @@ -0,0 +1 @@ +A tweet from Archive Racing asks what Le Mans mechanics do all night, then shows footage of mechanics sitting in chairs in a room. One mechanic is sitting on another’s lap and giving him a forehead kiss. This is interspersed with video from inside a car racing at night. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_aqodrarbnss.txt b/data/summaries/snapinstaapp_video_aqodrarbnss.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b240d43821190a8bdfd8a3c8b79fc0b2a69ab66 --- /dev/null +++ b/data/summaries/snapinstaapp_video_aqodrarbnss.txt @@ -0,0 +1 @@ +A small, light brown rabbit rests on its back near a person's arm, appearing content as it licks their skin. The person then gently strokes the rabbit's face with their fingers. diff --git a/data/summaries/snapinstaapp_video_aqpsvmxmvr3.txt b/data/summaries/snapinstaapp_video_aqpsvmxmvr3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e66c770fd52228345c1f0530903f0c91b7b126c7 --- /dev/null +++ b/data/summaries/snapinstaapp_video_aqpsvmxmvr3.txt @@ -0,0 +1 @@ +A man in a black suit is seen holding two pizzas and dancing around the room. He then throws the pizzas across the room into the kitchen. Another man, wearing a pink shirt, watches. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_bd4a699a45d.txt b/data/summaries/snapinstaapp_video_bd4a699a45d.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8676c301c9232c909063bda737be6b31a656f8a --- /dev/null +++ b/data/summaries/snapinstaapp_video_bd4a699a45d.txt @@ -0,0 +1 @@ +A man asks an Alexa to stop playing the song that is currently playing, but Alexa does not understand, asking what the song is called. The last scene is of the man lying in bed. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_c840837805b.txt b/data/summaries/snapinstaapp_video_c840837805b.txt new file mode 100644 index 0000000000000000000000000000000000000000..969d4be728812b8adda255af2e8e648a341e9ba8 --- /dev/null +++ b/data/summaries/snapinstaapp_video_c840837805b.txt @@ -0,0 +1 @@ +Two cats are observed near a bowl of cat food with a live mouse between them. Text overlaid on the video suggests that the cats are not fulfilling their intended purpose of hunting mice and are instead sharing their food with one. The music is an acoustic piece, possibly by a stringed instrument. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_fc45fb95595.txt b/data/summaries/snapinstaapp_video_fc45fb95595.txt new file mode 100644 index 0000000000000000000000000000000000000000..40b9b636276350e6e0b5bac402c05fecc693c774 --- /dev/null +++ b/data/summaries/snapinstaapp_video_fc45fb95595.txt @@ -0,0 +1 @@ +A woman happily showcases and takes a big bite out of a Reuben sandwich, remarking about the restaurant having handsome men. \ No newline at end of file diff --git a/data/summaries/snapinstaapp_video_gb7e3ho8evr.txt b/data/summaries/snapinstaapp_video_gb7e3ho8evr.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf428091d748dc5b4473283180467fb3be067e29 --- /dev/null +++ b/data/summaries/snapinstaapp_video_gb7e3ho8evr.txt @@ -0,0 +1 @@ +Here's a summary of the file: The video shows a man playing a drum with mountains in the background. The overlay text questions if waking up at 5 AM is alright, but asks if you've ever heard of "Substance abuse." \ No newline at end of file diff --git a/data/summaries/snaptikapp_7226237414149197099.txt b/data/summaries/snaptikapp_7226237414149197099.txt new file mode 100644 index 0000000000000000000000000000000000000000..c082dec8dd278716ce3938881114bb8234fbf713 --- /dev/null +++ b/data/summaries/snaptikapp_7226237414149197099.txt @@ -0,0 +1 @@ +The video is a meme mocking chess and its perceived lack of excitement. It shows images of the chess pieces, represented by people dressed in period clothing, moving around in a chaotic fashion, accompanied by comical sound effects. The text overlay mocks the claim that chess is interesting. \ No newline at end of file diff --git a/data/summaries/snaptikapp_7235133942335163653.txt b/data/summaries/snaptikapp_7235133942335163653.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b28e3dc8d729556a283d3887ecd16b044630be1 --- /dev/null +++ b/data/summaries/snaptikapp_7235133942335163653.txt @@ -0,0 +1,3 @@ +Here is a summary of the video file: + +The video is split screen. On the right is a man deadlifting 315 lbs. He follows that by an exercise with one end of the barbell placed in a bracket with weights on the other end. On the left is another man, presumably videoing the video on the right. In the top right is a smaller insert of a man laughing. \ No newline at end of file diff --git a/data/summaries/snaptikapp_7235391626737241387.txt b/data/summaries/snaptikapp_7235391626737241387.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0454c7246c5e54923adfee8433d6da8fe2569dc --- /dev/null +++ b/data/summaries/snaptikapp_7235391626737241387.txt @@ -0,0 +1 @@ +The video is a meme. The meme suggests that the sender gets an unpleasant feeling when someone sends “THX” instead of “thx”. The clip is a person yelling "wait wait wait" while an emergency siren blares. \ No newline at end of file diff --git a/data/summaries/snaptikapp_7265553545204698374.txt b/data/summaries/snaptikapp_7265553545204698374.txt new file mode 100644 index 0000000000000000000000000000000000000000..d270f19dc75ac74075c6fb9bad2917d8817ac350 --- /dev/null +++ b/data/summaries/snaptikapp_7265553545204698374.txt @@ -0,0 +1,2 @@ +Here is a summary of the video: +This short clip features a montage of shots from an Arctic Monkeys performance, overlaid with the text, "This is what Arctic Monkeys sound like to normal members of society." The video focuses on the band performing on stage and includes a variety of shots of band members playing their respective instruments. \ No newline at end of file diff --git a/data/summaries/snaptikapp_7349202484293864737.txt b/data/summaries/snaptikapp_7349202484293864737.txt new file mode 100644 index 0000000000000000000000000000000000000000..300d344b0682e31491f414259aa9d6ef7f9e2a81 --- /dev/null +++ b/data/summaries/snaptikapp_7349202484293864737.txt @@ -0,0 +1 @@ +The video begins with a person playing the racing video game Gran Turismo. They are customizing a black Porsche 911 GT3RS. The text on the screen reads “You’ll never get this car IRL lil bro.” The video then cuts to a series of shots of a black Volkswagen Beetle parked on a gravel lot next to some bushes. The camera moves around the car, showing it from various angles. \ No newline at end of file diff --git a/data/summaries/sns52wt7pkh9l_l.txt b/data/summaries/sns52wt7pkh9l_l.txt new file mode 100644 index 0000000000000000000000000000000000000000..53d78d76b58d995c26a47b2ba6f5f54ed3134760 --- /dev/null +++ b/data/summaries/sns52wt7pkh9l_l.txt @@ -0,0 +1,4 @@ +The woman in the video is creating a TikTok titled, "Top 10 reasons I wouldn't be a good waifu." She has so far listed: +1. She is from Southeast London. +2. She is a top lad. +3. She can probably drink a pint faster than you. \ No newline at end of file diff --git a/data/summaries/snsdj_eerta5vhhs.txt b/data/summaries/snsdj_eerta5vhhs.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e70bd12ed8c0718484bb496b87ec3e6d5deb902 --- /dev/null +++ b/data/summaries/snsdj_eerta5vhhs.txt @@ -0,0 +1 @@ +At a 7-Eleven, a man stands in front of the drink machine holding two Big Gulp cups, each with a sparkler sticking out. A customer complains about the sparklers. \ No newline at end of file diff --git a/data/summaries/spincarrot.txt b/data/summaries/spincarrot.txt new file mode 100644 index 0000000000000000000000000000000000000000..01473a08ebee91a919048039bb89f19cd2560b39 --- /dev/null +++ b/data/summaries/spincarrot.txt @@ -0,0 +1 @@ +A person in a snow-covered area is standing near a camera tripod with an orange stick resting on the tripod. The person plays the stick like a flute. \ No newline at end of file diff --git a/data/summaries/streamladdersus.txt b/data/summaries/streamladdersus.txt new file mode 100644 index 0000000000000000000000000000000000000000..fded88246712c15e38c0a9aacc64d5dd203dd624 --- /dev/null +++ b/data/summaries/streamladdersus.txt @@ -0,0 +1 @@ +The video shows a black bar stool with a metal base. The sound of a cow mooing is heard. Next, the image of an Among Us character pops up along with the word "post" and the caption "Horn". \ No newline at end of file diff --git a/data/summaries/streamladderuntitled1.txt b/data/summaries/streamladderuntitled1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd2f87b41875f062de97948084efb3f716ada167 --- /dev/null +++ b/data/summaries/streamladderuntitled1.txt @@ -0,0 +1 @@ +A Minecraft pig floats through a watery maze before flying into the sky. \ No newline at end of file diff --git a/data/summaries/suddenbrawnyenchanted_a93914_1.txt b/data/summaries/suddenbrawnyenchanted_a93914_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c5d71789d4cbe4f2a74afa491f63bfcfdeac33 --- /dev/null +++ b/data/summaries/suddenbrawnyenchanted_a93914_1.txt @@ -0,0 +1 @@ +A collection of vehicles is captured driving down a road in a single file. The video is taken from the perspective of the person driving one of the cars. The cars are mostly white, with the exception of one that is gray and one that is black. The traffic is light and the cars seem to be driving slowly. Upbeat music can be heard playing in the background. \ No newline at end of file diff --git a/data/summaries/t7sz2tgd6xvnuile.txt b/data/summaries/t7sz2tgd6xvnuile.txt new file mode 100644 index 0000000000000000000000000000000000000000..279f2c9d2a044c23c7873154c01bb78da3742fb6 --- /dev/null +++ b/data/summaries/t7sz2tgd6xvnuile.txt @@ -0,0 +1 @@ +A video shows a person walking through a store, seemingly filming with Snapchat, with the hot dog filter visible. The caption reads, "They took my fuckin hot dog." At one point, a child in a shopping cart passes by and the hot dog Snapchat filter appears to be positioned on the child's body. \ No newline at end of file diff --git a/data/summaries/td9tqct7k_pkdjqx.txt b/data/summaries/td9tqct7k_pkdjqx.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7f003863bfafb5d8ea018f4f3388668997df219 --- /dev/null +++ b/data/summaries/td9tqct7k_pkdjqx.txt @@ -0,0 +1 @@ +The video shows two different people making pottery on a pottery wheel. The first person shapes a small bowl, while the second person makes a tall pillar, getting visibly excited as it continues to get taller. \ No newline at end of file diff --git a/data/summaries/th.txt b/data/summaries/th.txt new file mode 100644 index 0000000000000000000000000000000000000000..66dfc11417de96d8a0fb49ff8be36031a8a54170 --- /dev/null +++ b/data/summaries/th.txt @@ -0,0 +1 @@ +A light orange cat is shown in mid-yawn, sitting upright in front of a beige wall and a partially visible doorway. Heart emojis of various pinks and purples are clustered on the left side of the image, near the cat's face, adding a playful and affectionate element. diff --git a/data/summaries/thdmwz6yqocxmmv0.txt b/data/summaries/thdmwz6yqocxmmv0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e46f93092e973493f752aaf40326f1eccd7ceebf --- /dev/null +++ b/data/summaries/thdmwz6yqocxmmv0.txt @@ -0,0 +1 @@ +A woman with short, platinum blonde hair and an orange, one-shoulder dress with gold accents is talking. She raises her hand as she says she's going to call her gay friends. \ No newline at end of file diff --git a/data/summaries/themfstreets.txt b/data/summaries/themfstreets.txt new file mode 100644 index 0000000000000000000000000000000000000000..46adb3f3188f0212a480513ce474242f5414be5c --- /dev/null +++ b/data/summaries/themfstreets.txt @@ -0,0 +1 @@ +A man in a purple durag and black t-shirt asks a man in a blue hat why sidewalks were made. The man in the blue hat replies, "Because the motherf*cking streets ain't for everybody." \ No newline at end of file diff --git a/data/summaries/thisisyourautisticchild.txt b/data/summaries/thisisyourautisticchild.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e1427714ec896505dfa3b7c0d86e053810042eb --- /dev/null +++ b/data/summaries/thisisyourautisticchild.txt @@ -0,0 +1 @@ +A woman shakes a bottle of Coke and says "This is your autistic child." The next shot is of a man whose face is contorted in pain. He says "Stop doing that to him. That hurts him! Put him down!" \ No newline at end of file diff --git a/data/summaries/tiktok_ichristopher_7364474144.txt b/data/summaries/tiktok_ichristopher_7364474144.txt new file mode 100644 index 0000000000000000000000000000000000000000..841977c985540ca36da92c669cbea16a5c7835a9 --- /dev/null +++ b/data/summaries/tiktok_ichristopher_7364474144.txt @@ -0,0 +1 @@ +The speaker in the video has trouble getting a Nintendo 64 game cartridge to work. He’s tired and doesn’t know what’s going on. He’s tried it twice, and the screen’s not coming on.  \ No newline at end of file diff --git a/data/summaries/tiktok_thedailyshow_7459544295.txt b/data/summaries/tiktok_thedailyshow_7459544295.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4eb51c4497723491cbdfa2173d79ceb24f1f9f9 --- /dev/null +++ b/data/summaries/tiktok_thedailyshow_7459544295.txt @@ -0,0 +1 @@ +A clip from the Daily Show poses the question “How would you say your mental focus is?” to President Joe Biden. He responds “Oh, it’s focused,” chuckles, and says “I think it’s, I haven’t. Look. I have trouble even mentioning, even saying to myself my own head the number of years. I no more think of myself as being as old as I am than fly.” It ends with footage of a skydiver soaring through the sky. \ No newline at end of file diff --git a/data/summaries/tiktok_wanderinglittlejay_7421.txt b/data/summaries/tiktok_wanderinglittlejay_7421.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c4fa0815ddc0de08038302ec177563f7a348061 --- /dev/null +++ b/data/summaries/tiktok_wanderinglittlejay_7421.txt @@ -0,0 +1 @@ +An owl is perched on a telephone wire in a short video sent by someone who is out for a run. The runner, presumably startled by the owl, quickens their pace, audibly running away and letting out a scream similar to that of Homer Simpson. \ No newline at end of file diff --git a/data/summaries/tll9nhvfpeft3dib.txt b/data/summaries/tll9nhvfpeft3dib.txt new file mode 100644 index 0000000000000000000000000000000000000000..d994ee79073440c59d0aade1a8390da93adee3ad --- /dev/null +++ b/data/summaries/tll9nhvfpeft3dib.txt @@ -0,0 +1 @@ +A person is shown on a blue tarp, moving around, possibly trying to get comfortable or adjust their position. The background is blurred, making it difficult to see the surroundings clearly. diff --git a/data/summaries/tth_m7txtrys2fge.txt b/data/summaries/tth_m7txtrys2fge.txt new file mode 100644 index 0000000000000000000000000000000000000000..74359ed087f2f1294f40207b77471a4194f616ec --- /dev/null +++ b/data/summaries/tth_m7txtrys2fge.txt @@ -0,0 +1 @@ +A small, dark brown puppy scurries across a green and pink floral patterned bedspread. The text overlay reads, "I bought him Today." diff --git a/data/summaries/tumblr_0213294e57d70cf3bef9f89.txt b/data/summaries/tumblr_0213294e57d70cf3bef9f89.txt new file mode 100644 index 0000000000000000000000000000000000000000..a73df47435c0d8fe786c4b94e3b33a3469db0ab6 --- /dev/null +++ b/data/summaries/tumblr_0213294e57d70cf3bef9f89.txt @@ -0,0 +1 @@ +A man sits at a computer in a dimly lit room, focused on the screen, with food on a plate next to the keyboard. The setting suggests a late night or focused work environment. \ No newline at end of file diff --git a/data/summaries/tumblr_0535012913fb2f3a51a414a.txt b/data/summaries/tumblr_0535012913fb2f3a51a414a.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe56bb36f596f84ae47371fa6a026003e2cfc65a --- /dev/null +++ b/data/summaries/tumblr_0535012913fb2f3a51a414a.txt @@ -0,0 +1 @@ +A meme image featuring a jug with a face wearing headphones, superimposed over a picturesque field with flowers and a blue sky. Text above the jug reads "why should i." The image suggests a dismissive or rebellious attitude, implying a lack of interest or motivation. diff --git a/data/summaries/tumblr_0c74c87cbbf109cd50d6d70.txt b/data/summaries/tumblr_0c74c87cbbf109cd50d6d70.txt new file mode 100644 index 0000000000000000000000000000000000000000..053393cf7ed61a0bbe61c298f9f1247d04fce6c0 --- /dev/null +++ b/data/summaries/tumblr_0c74c87cbbf109cd50d6d70.txt @@ -0,0 +1 @@ +A fluffy white cat is eating a banana, holding it in its paws. The cat has piercing blue eyes and a somewhat serious expression. A hand with red nail polish can be seen holding the bottom of the banana. The background features a patterned surface, possibly a bedspread. diff --git a/data/summaries/tumblr_110d1883d13787b80091b7e.txt b/data/summaries/tumblr_110d1883d13787b80091b7e.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2c3254c0d0cbe874de1004b67fb3aaa2356eaf5 --- /dev/null +++ b/data/summaries/tumblr_110d1883d13787b80091b7e.txt @@ -0,0 +1 @@ +The image contains the text "she cookk me" with chicken emojis on either side of the text. \ No newline at end of file diff --git a/data/summaries/tumblr_1179feb2c0d9e99eff0c31a.txt b/data/summaries/tumblr_1179feb2c0d9e99eff0c31a.txt new file mode 100644 index 0000000000000000000000000000000000000000..67de43f6774ca2b1f9a5f78c6bc6413db9f6dfbc --- /dev/null +++ b/data/summaries/tumblr_1179feb2c0d9e99eff0c31a.txt @@ -0,0 +1 @@ +A meme image showing a dark knight character model from Final Fantasy XIV jumping down, accompanied by the caption "whatever. Go my stab." It conveys a dismissive or nonchalant attitude, followed by an intent to attack. diff --git a/data/summaries/tumblr_12f154799b69e0f7786c6dc.txt b/data/summaries/tumblr_12f154799b69e0f7786c6dc.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bdc436d921756aaa1a49b362e7a4336aef0f721 --- /dev/null +++ b/data/summaries/tumblr_12f154799b69e0f7786c6dc.txt @@ -0,0 +1 @@ +A light brown chihuahua stares directly at the camera with wide, dark eyes. \ No newline at end of file diff --git a/data/summaries/tumblr_181f93488ce76cdb819992d.txt b/data/summaries/tumblr_181f93488ce76cdb819992d.txt new file mode 100644 index 0000000000000000000000000000000000000000..21ecf3858258ee99564cd29aef97502cb713be02 --- /dev/null +++ b/data/summaries/tumblr_181f93488ce76cdb819992d.txt @@ -0,0 +1 @@ +The image features a cartoon baseball character who is taunting someone with a "big cart" to hit him, and to "make it hurt" or even "kill me in one shot." diff --git a/data/summaries/tumblr_24acfb09752258cd5ddc879.txt b/data/summaries/tumblr_24acfb09752258cd5ddc879.txt new file mode 100644 index 0000000000000000000000000000000000000000..163421dc402ae4a1211d3175bcb1d8dc80d9f24a --- /dev/null +++ b/data/summaries/tumblr_24acfb09752258cd5ddc879.txt @@ -0,0 +1 @@ +A man is cutting lemons with a large cleaver, while a golden retriever wearing a red bandana watches him intently. The man is focused on his task, and the dog appears to be interested in what he's doing. diff --git a/data/summaries/tumblr_24fe18fe5f478c10ba01dda.txt b/data/summaries/tumblr_24fe18fe5f478c10ba01dda.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8ec36c6204a3c76f2b32d37c1c387656740ba35 --- /dev/null +++ b/data/summaries/tumblr_24fe18fe5f478c10ba01dda.txt @@ -0,0 +1 @@ +The image is an anime character wearing a hoodie. The text overlay states that the poster hopes they are not just a meme page to viewers, but also a cautionary tale about untreated mental illness. \ No newline at end of file diff --git a/data/summaries/tumblr_2602fb207786b37125f3c3f.txt b/data/summaries/tumblr_2602fb207786b37125f3c3f.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a1cb943c110d2ca23e6a640f1abda8bf25a77f2 --- /dev/null +++ b/data/summaries/tumblr_2602fb207786b37125f3c3f.txt @@ -0,0 +1 @@ +The image features a 3D white cat-like figure with a simple, cartoonish face. The text "i dont know!!!!" is above the figure, and "i dont fucking know!" is below it, conveying a sense of uncertainty or exasperation. \ No newline at end of file diff --git a/data/summaries/tumblr_26657fa47543e5622e9a611.txt b/data/summaries/tumblr_26657fa47543e5622e9a611.txt new file mode 100644 index 0000000000000000000000000000000000000000..91bc261ce45346290b19ab8629ee8eadccdf0353 --- /dev/null +++ b/data/summaries/tumblr_26657fa47543e5622e9a611.txt @@ -0,0 +1 @@ +The image presents a humorous "Ludacris-Proximity Sadness Meter" visualized as a spiral radiating outwards from Ludacris himself. The emotional states of the children are labeled from happy nearest Ludacris, to content, apathetic, and finally suicidal furthest away. \ No newline at end of file diff --git a/data/summaries/tumblr_3748f9c76c6ecf089ea8750.txt b/data/summaries/tumblr_3748f9c76c6ecf089ea8750.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a8fd1df2cc1fecbcd69d56dbaf17ce05a23418b --- /dev/null +++ b/data/summaries/tumblr_3748f9c76c6ecf089ea8750.txt @@ -0,0 +1 @@ +A fluffy kitten wearing a cowboy hat stands next to a saddle, declaring itself "God's silliest little cowboy," with the text "life is my horse and love is my lasso" at the bottom of the image. \ No newline at end of file diff --git a/data/summaries/tumblr_404dc93594cccd3b49b18c1.txt b/data/summaries/tumblr_404dc93594cccd3b49b18c1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f27939a0819b1d41498a2f0ba665d2d15a0b298 --- /dev/null +++ b/data/summaries/tumblr_404dc93594cccd3b49b18c1.txt @@ -0,0 +1 @@ +An underwater view features a fish with an unusual, somewhat comical appearance. It is gray in color and possesses two horn-like protrusions, small dark eyes, and a prominent, round mouth. The fish is positioned prominently in the foreground, facing the viewer. The water is a clear, blue-green hue, and there are some objects, possibly seaweed or plants, situated in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_463df70969c21e0f9ce28f6.txt b/data/summaries/tumblr_463df70969c21e0f9ce28f6.txt new file mode 100644 index 0000000000000000000000000000000000000000..38a7f08425fc96092d08e7234b69019af2aad053 --- /dev/null +++ b/data/summaries/tumblr_463df70969c21e0f9ce28f6.txt @@ -0,0 +1 @@ +A selfie in an ornate building has text added expressing offense at being viewed as a female archetype rather than a nuanced individual. Another person is in the background taking a photo. \ No newline at end of file diff --git a/data/summaries/tumblr_478ea635fcecbe62553797a.txt b/data/summaries/tumblr_478ea635fcecbe62553797a.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdd34c5c39392d2d59d2dc19ef29e7e5b6fd8fc7 --- /dev/null +++ b/data/summaries/tumblr_478ea635fcecbe62553797a.txt @@ -0,0 +1 @@ +The tweet by @darlingful contains a cute flower-covered character made of text and emojis, with the message "all this? ...is for you." The tweet was posted on October 12, 2021, and has garnered 297 Retweets, 42 Quote Tweets, and 1,314 Likes. diff --git a/data/summaries/tumblr_4f29b3bb5fbb08ae6d09f27.txt b/data/summaries/tumblr_4f29b3bb5fbb08ae6d09f27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0516ac62ab4f3d8d314791e0bd7b4efc28eb45eb --- /dev/null +++ b/data/summaries/tumblr_4f29b3bb5fbb08ae6d09f27.txt @@ -0,0 +1 @@ +An orange cat is eating food through a clear plastic barrier. The cat has an unimpressed or slightly annoyed expression. The food is piled at the bottom of the barrier. \ No newline at end of file diff --git a/data/summaries/tumblr_56efd871d63c2a6b24ce8f4.txt b/data/summaries/tumblr_56efd871d63c2a6b24ce8f4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b433a9939a10ecb343c233974f7e9458d880ce4d --- /dev/null +++ b/data/summaries/tumblr_56efd871d63c2a6b24ce8f4.txt @@ -0,0 +1 @@ +The kitchen features a greenhouse-like design with a slanted glass roof, plants growing along the roof and in a planter box, natural wood cabinets and countertops, and a basket of fresh vegetables. The design incorporates natural light and greenery into the interior. \ No newline at end of file diff --git a/data/summaries/tumblr_5d01116b6a72d0fef4cf632.txt b/data/summaries/tumblr_5d01116b6a72d0fef4cf632.txt new file mode 100644 index 0000000000000000000000000000000000000000..286c8995140282e715510b2cc2fe94c992f5c47e --- /dev/null +++ b/data/summaries/tumblr_5d01116b6a72d0fef4cf632.txt @@ -0,0 +1 @@ +The image depicts two cats in banana costumes. One cat expresses the sentiment "time for another week" and the other states, "I am not prepared but I will do it". The image is a humorous and relatable meme. diff --git a/data/summaries/tumblr_5d2140cea40608406c9ff19.txt b/data/summaries/tumblr_5d2140cea40608406c9ff19.txt new file mode 100644 index 0000000000000000000000000000000000000000..92e310b82b094aeb09a5ae2ec49ed51ea67fe0db --- /dev/null +++ b/data/summaries/tumblr_5d2140cea40608406c9ff19.txt @@ -0,0 +1 @@ +The image displays a humorous take on the struggles and recoveries of life, using the years 2016-2019 as metaphors. 2016 is depicted as a year of change, 2017 a year of being broken, 2018 as a particularly bad year, and 2019 as a year of recovery. diff --git a/data/summaries/tumblr_5f6cf03bad545ef00f56dc4.txt b/data/summaries/tumblr_5f6cf03bad545ef00f56dc4.txt new file mode 100644 index 0000000000000000000000000000000000000000..bac34a0f842ea0cbd5d6acaa16f221b7d3b1e94b --- /dev/null +++ b/data/summaries/tumblr_5f6cf03bad545ef00f56dc4.txt @@ -0,0 +1 @@ +The image shows Trisha Paytas sitting cross-legged, likely on a live stream based on the overlay of comments and virtual gifts. The comments include questions about a purple foot and people reacting with "IM SCREA". Virtual gifts, such as an ice cream cone and a tomato, float in the image. diff --git a/data/summaries/tumblr_631431ad8ad753246714978.txt b/data/summaries/tumblr_631431ad8ad753246714978.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c95659018bd86f97a5257401669f80d2580d555 --- /dev/null +++ b/data/summaries/tumblr_631431ad8ad753246714978.txt @@ -0,0 +1 @@ +A white cat, wearing a clown-like hat with a purple ruffle, is pictured alongside the text "will you just let me be silly for a sec. there's this dread so ancient in me". \ No newline at end of file diff --git a/data/summaries/tumblr_63352bafb04e2286ffe0c24.txt b/data/summaries/tumblr_63352bafb04e2286ffe0c24.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e18fbb55d84916398d30a600b1a30a6087e4a17 --- /dev/null +++ b/data/summaries/tumblr_63352bafb04e2286ffe0c24.txt @@ -0,0 +1 @@ +A cute golden doodle puppy wearing a cowboy hat is pictured on a tile, along with the text "I aim to please, but my aim ain't that good!". The tile is bordered by a pattern of bullet holes. \ No newline at end of file diff --git a/data/summaries/tumblr_65d2b20d7d7cbfda32cf94e.txt b/data/summaries/tumblr_65d2b20d7d7cbfda32cf94e.txt new file mode 100644 index 0000000000000000000000000000000000000000..39a8a213cd26714585c7e35384fec0d5765119eb --- /dev/null +++ b/data/summaries/tumblr_65d2b20d7d7cbfda32cf94e.txt @@ -0,0 +1 @@ +A close-up photo of a fish underwater is captioned, "He sings the songs that remind him of the good times. He sings the songs that remind him of the better times." The text is adjacent to the fish in the photo, and a line connects the second part of the caption to another fish that is smaller and further away. \ No newline at end of file diff --git a/data/summaries/tumblr_69365289a8626bf2d4592eb.txt b/data/summaries/tumblr_69365289a8626bf2d4592eb.txt new file mode 100644 index 0000000000000000000000000000000000000000..73e448d21ce1d147d50b7444cf934209b9b2387d --- /dev/null +++ b/data/summaries/tumblr_69365289a8626bf2d4592eb.txt @@ -0,0 +1 @@ +A close-up of a white cat's face with its black eyes and pink blush marks on its cheeks. The cat's expression is soft and gentle. \ No newline at end of file diff --git a/data/summaries/tumblr_6ad8fe08f89e33f8badaff5.txt b/data/summaries/tumblr_6ad8fe08f89e33f8badaff5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d46cd2073e23bba30f36e198b9c5ee38ec17167 --- /dev/null +++ b/data/summaries/tumblr_6ad8fe08f89e33f8badaff5.txt @@ -0,0 +1 @@ +The image features Walter White, portrayed by Bryan Cranston, from the television series "Breaking Bad." He's inside a car, holding a wad of cash, wearing a black shirt, and looking rather concerned. diff --git a/data/summaries/tumblr_797440bf87f093439a0a201.txt b/data/summaries/tumblr_797440bf87f093439a0a201.txt new file mode 100644 index 0000000000000000000000000000000000000000..39c230eb14d6e27698c7abfe2ed90955fb40b83d --- /dev/null +++ b/data/summaries/tumblr_797440bf87f093439a0a201.txt @@ -0,0 +1 @@ +This image features an Among Us-like character labeled "Spreet and sprroot" standing in a room with a rug, fireplace, and a glimpse of what appears to be a window or door in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_79a8f93f7e2bc5cd2599a03.txt b/data/summaries/tumblr_79a8f93f7e2bc5cd2599a03.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0ad8761a205d43d57c7a2c97f060fb14616ffad --- /dev/null +++ b/data/summaries/tumblr_79a8f93f7e2bc5cd2599a03.txt @@ -0,0 +1 @@ +The image is completely black. \ No newline at end of file diff --git a/data/summaries/tumblr_7d44e099aaf29b3de971a3b.txt b/data/summaries/tumblr_7d44e099aaf29b3de971a3b.txt new file mode 100644 index 0000000000000000000000000000000000000000..0984395f652f98ebb0fca8d761b291b25b9dc17f --- /dev/null +++ b/data/summaries/tumblr_7d44e099aaf29b3de971a3b.txt @@ -0,0 +1 @@ +The image displays a meme stating "This post was fact-checked by the sacred boar at the center of the world" with a "TRUE" verification badge, featuring a boar wearing a hat sitting on an ornate platform, surrounded by fire and a landscape in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_7f7a241b304609908dc75f0.txt b/data/summaries/tumblr_7f7a241b304609908dc75f0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f57286f3629ce5e1fcd3a6ed1d6a81e5f4de2dc --- /dev/null +++ b/data/summaries/tumblr_7f7a241b304609908dc75f0.txt @@ -0,0 +1 @@ +This image shows an internet meme. It combines an illustration of the Pokémon Omanyte with text from 4chan, which reads "god DANM here I go" and the post ID ">>4618204 #". \ No newline at end of file diff --git a/data/summaries/tumblr_8531196024878c332ee4c00.txt b/data/summaries/tumblr_8531196024878c332ee4c00.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b9bade9d1e6a9cdbd45f789c5ad29fd9fa1717a --- /dev/null +++ b/data/summaries/tumblr_8531196024878c332ee4c00.txt @@ -0,0 +1 @@ +The image is a tweet from user @fixyourheartsor, describing a potential Gorillaz song with a guest rapper delivering lyrics about being in tough situations, losing their mother to tuberculosis, and slipping into psychosis, followed by Damon Albarn's chorus, "ooooooh flimsy steve, where did you go, what have you seen." The tweet was posted on August 26, 2021, at 7:06 PM. \ No newline at end of file diff --git a/data/summaries/tumblr_880985540ca3cc411f1483f.txt b/data/summaries/tumblr_880985540ca3cc411f1483f.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a9134d69d666eee64783184578a5c2f9c621b5 --- /dev/null +++ b/data/summaries/tumblr_880985540ca3cc411f1483f.txt @@ -0,0 +1 @@ +The image shows a scarab beetle on a pink background, with the text "whatever. Go my scarab" above it. \ No newline at end of file diff --git a/data/summaries/tumblr_89cdcd658bdcd655b8c24b0.txt b/data/summaries/tumblr_89cdcd658bdcd655b8c24b0.txt new file mode 100644 index 0000000000000000000000000000000000000000..199771267982e60f450ae4e8b8bf234fb915acbb --- /dev/null +++ b/data/summaries/tumblr_89cdcd658bdcd655b8c24b0.txt @@ -0,0 +1 @@ +Two seals are featured in the image. One seal is on a blue surface, likely near the edge of a pool, and is larger, taking up the foreground. The other seal is in the water, behind the first, and appears to be watching. Both seals have a calm and curious expression. diff --git a/data/summaries/tumblr_8d9bdcae1e1620ef0da06fe.txt b/data/summaries/tumblr_8d9bdcae1e1620ef0da06fe.txt new file mode 100644 index 0000000000000000000000000000000000000000..500a0974c33f55e933e93c0071dadec6a237d552 --- /dev/null +++ b/data/summaries/tumblr_8d9bdcae1e1620ef0da06fe.txt @@ -0,0 +1 @@ +The image shows a yellow smiley face emoji holding its feet up near its head. The emoji has a broad, happy smile and blushing cheeks. \ No newline at end of file diff --git a/data/summaries/tumblr_929823ab234b0282d8b3868.txt b/data/summaries/tumblr_929823ab234b0282d8b3868.txt new file mode 100644 index 0000000000000000000000000000000000000000..369678804680d246f6644d58559a0575a3a32676 --- /dev/null +++ b/data/summaries/tumblr_929823ab234b0282d8b3868.txt @@ -0,0 +1 @@ +A map of the United States showing the "worst attraction" in each state, according to @mattsurelee's Instagram followers. The worst attraction for each state is listed on the map. \ No newline at end of file diff --git a/data/summaries/tumblr_9ecf4eae8152f05ff68964c.txt b/data/summaries/tumblr_9ecf4eae8152f05ff68964c.txt new file mode 100644 index 0000000000000000000000000000000000000000..255cf22ce4a826bc716ae8a7416e0beb12e12592 --- /dev/null +++ b/data/summaries/tumblr_9ecf4eae8152f05ff68964c.txt @@ -0,0 +1 @@ +A sleepy-looking, light orange and white kitten is snuggled under a white blanket or towel. The cat's eyes are partially closed, and it appears to have digitally added pink blushes on its cheeks. diff --git a/data/summaries/tumblr_a15b8b07b12029e048d0916.txt b/data/summaries/tumblr_a15b8b07b12029e048d0916.txt new file mode 100644 index 0000000000000000000000000000000000000000..a70a87b2a283cf540ec134fbc1dc910144232c8c --- /dev/null +++ b/data/summaries/tumblr_a15b8b07b12029e048d0916.txt @@ -0,0 +1 @@ +The image shows a low-resolution, slightly unsettling scene with a creepy doll facing a pair of boots in an old-looking room. Text overlaying the image reads "can I come over and be weird and do this," suggesting a playful invitation to engage in odd or unconventional behavior. diff --git a/data/summaries/tumblr_a1b08fcacb7aeed6b0274f2.txt b/data/summaries/tumblr_a1b08fcacb7aeed6b0274f2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c1df2ddb7d4b58cf6c9bfabbc7ec472779b3da3 --- /dev/null +++ b/data/summaries/tumblr_a1b08fcacb7aeed6b0274f2.txt @@ -0,0 +1 @@ +The image features Walter White in a moment of distress, covered in what appears to be white pizza topping, seated on a patio with outdoor furniture. diff --git a/data/summaries/tumblr_a6a4822a3fb5938db6e77c4.txt b/data/summaries/tumblr_a6a4822a3fb5938db6e77c4.txt new file mode 100644 index 0000000000000000000000000000000000000000..25f8ee4385bfbfdd6650e46f57f62489a11fe743 --- /dev/null +++ b/data/summaries/tumblr_a6a4822a3fb5938db6e77c4.txt @@ -0,0 +1 @@ +A tabby cat sits on a wood floor, looking up and attentively following the movement of an object being dangled in front of it. The cat remains in a seated position, its gaze fixed on the object. \ No newline at end of file diff --git a/data/summaries/tumblr_a8ef7300bce88758558e2b0.txt b/data/summaries/tumblr_a8ef7300bce88758558e2b0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c909760c323e60c672cf0e0e501091f866c52b7 --- /dev/null +++ b/data/summaries/tumblr_a8ef7300bce88758558e2b0.txt @@ -0,0 +1 @@ +A group of men are at the gym, and the TV is showing a scene from the movie Twilight. \ No newline at end of file diff --git a/data/summaries/tumblr_aea047dc6705d15f4363f0e.txt b/data/summaries/tumblr_aea047dc6705d15f4363f0e.txt new file mode 100644 index 0000000000000000000000000000000000000000..210b3404f9090113c33ad1b4208401e06a21be89 --- /dev/null +++ b/data/summaries/tumblr_aea047dc6705d15f4363f0e.txt @@ -0,0 +1 @@ +A cute white and brown dog is sitting on a brown leather couch, bundled up in a light blue, furry blanket. The dog's face is peeking out of the top of the blanket. diff --git a/data/summaries/tumblr_b05ee6c063687adf6a4cf24.txt b/data/summaries/tumblr_b05ee6c063687adf6a4cf24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a5dcc8c974a304dfbe7f4a765ab4ed21e9f5a4e --- /dev/null +++ b/data/summaries/tumblr_b05ee6c063687adf6a4cf24.txt @@ -0,0 +1 @@ +Anthony Bourdain is shown drinking from a wine glass at a dinner table, with other people in the background. diff --git a/data/summaries/tumblr_b55a190767068bedfe6ce33.txt b/data/summaries/tumblr_b55a190767068bedfe6ce33.txt new file mode 100644 index 0000000000000000000000000000000000000000..18a299e44d2db3057a0efc1fdc93ac0f8307cb6c --- /dev/null +++ b/data/summaries/tumblr_b55a190767068bedfe6ce33.txt @@ -0,0 +1 @@ +A rat on a bed is captioned "Have at thee." \ No newline at end of file diff --git a/data/summaries/tumblr_b5dfea703bdb80d0a9206fe.txt b/data/summaries/tumblr_b5dfea703bdb80d0a9206fe.txt new file mode 100644 index 0000000000000000000000000000000000000000..471cb0d57f70db1e33265b211cfd1182dce9fe9b --- /dev/null +++ b/data/summaries/tumblr_b5dfea703bdb80d0a9206fe.txt @@ -0,0 +1 @@ +The image shows a man with long hair and a beard, possibly a wrestler or celebrity, in a stadium or arena setting. He appears to be looking off to the side with a smirk. There are blurred figures and signs in the background. diff --git a/data/summaries/tumblr_bfa50e636ffb816c917e8bc.txt b/data/summaries/tumblr_bfa50e636ffb816c917e8bc.txt new file mode 100644 index 0000000000000000000000000000000000000000..729968ef2703418569b3dffa0577f092d4ef9221 --- /dev/null +++ b/data/summaries/tumblr_bfa50e636ffb816c917e8bc.txt @@ -0,0 +1 @@ +A seal lies flat on a white, grated surface, looking directly at the camera. The seal is in an enclosure with a chain-link fence in the background. diff --git a/data/summaries/tumblr_c47dfea71d0689c27122560.txt b/data/summaries/tumblr_c47dfea71d0689c27122560.txt new file mode 100644 index 0000000000000000000000000000000000000000..07bc3ccbeb67ba5e45b64a480f701bd14c052003 --- /dev/null +++ b/data/summaries/tumblr_c47dfea71d0689c27122560.txt @@ -0,0 +1 @@ +An image from the show "The Doctors" features a man discussing "Foreskin Fraud?" \ No newline at end of file diff --git a/data/summaries/tumblr_c5274f4befeb9eed213ce35.txt b/data/summaries/tumblr_c5274f4befeb9eed213ce35.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcd1b9e6760b99b567b01055f081ae385aba5ca9 --- /dev/null +++ b/data/summaries/tumblr_c5274f4befeb9eed213ce35.txt @@ -0,0 +1 @@ +A meme of Obi-Wan Kenobi saying, "You were the chosen one!" and "You were my train, I loved you." with Thomas the Tank Engine's face superimposed on Anakin Skywalker. \ No newline at end of file diff --git a/data/summaries/tumblr_c9187a69e66b512ab7724ef.txt b/data/summaries/tumblr_c9187a69e66b512ab7724ef.txt new file mode 100644 index 0000000000000000000000000000000000000000..b07009f0371ea9c9aff4ff1d2f709f00d76f9b5b --- /dev/null +++ b/data/summaries/tumblr_c9187a69e66b512ab7724ef.txt @@ -0,0 +1 @@ +The image features a close-up of a character wearing a distinctive stone mask with an open mouth. The mask appears weathered and has a sculpted figure in its forehead region. A "OK" text box is digitally overlaid at the top of the image. The overall tone is somewhat unsettling and humorous. diff --git a/data/summaries/tumblr_cab670264ae540d2d41f39c.txt b/data/summaries/tumblr_cab670264ae540d2d41f39c.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fa5beec38aee37c927cd6d1694e2e237ec1e469 --- /dev/null +++ b/data/summaries/tumblr_cab670264ae540d2d41f39c.txt @@ -0,0 +1 @@ +The image shows a screen capture from Dark Souls with the words "FORESKIN RESTORED" superimposed on the screen, a humorous and unexpected modification to the game's original text. \ No newline at end of file diff --git a/data/summaries/tumblr_cb90e8ae1ffb6c817e49d4d.txt b/data/summaries/tumblr_cb90e8ae1ffb6c817e49d4d.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cb8186ff61ea3321d3fb5df6a075b4c02d7e3d1 --- /dev/null +++ b/data/summaries/tumblr_cb90e8ae1ffb6c817e49d4d.txt @@ -0,0 +1 @@ +A close-up shot in dark blue lighting showcases an individual's hands in black fingerless gloves, resting on their lap. The person is wearing dark blue pants secured with a black utility belt and a badge is attached. \ No newline at end of file diff --git a/data/summaries/tumblr_d04adfa7b1ebc92b91bd8de.txt b/data/summaries/tumblr_d04adfa7b1ebc92b91bd8de.txt new file mode 100644 index 0000000000000000000000000000000000000000..18352e862cc970379b55cfd31908d6a02c193c5b --- /dev/null +++ b/data/summaries/tumblr_d04adfa7b1ebc92b91bd8de.txt @@ -0,0 +1 @@ +The image shows Walter White (Bryan Cranston) from Breaking Bad with a tense expression, possibly angry or sarcastic. He's wearing glasses and a yellow shirt under a jacket. Another person in a blue jacket is partially visible to the right. The background is light blue with a red and blue stripe pattern. diff --git a/data/summaries/tumblr_d2280e797b43431e57f75b1.txt b/data/summaries/tumblr_d2280e797b43431e57f75b1.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fec576abf4db015efbe57d7e09c081e484b1b8c --- /dev/null +++ b/data/summaries/tumblr_d2280e797b43431e57f75b1.txt @@ -0,0 +1 @@ +A person sitting on the floor pours water from a plastic bottle into a white bowl. Two colorful lorikeet birds look up at the water stream. \ No newline at end of file diff --git a/data/summaries/tumblr_d80b9ea35f72be3f9a5bc89.txt b/data/summaries/tumblr_d80b9ea35f72be3f9a5bc89.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc76ee4ff1e6cc68d4e63ea1c577517a3b680727 --- /dev/null +++ b/data/summaries/tumblr_d80b9ea35f72be3f9a5bc89.txt @@ -0,0 +1 @@ +The image depicts a man wearing a watermelon rind over his face. Text at the bottom reads "Walt Er melo N", making it a meme combining Walter White from Breaking Bad with a watermelon. \ No newline at end of file diff --git a/data/summaries/tumblr_e16bb9b41b14e2e794b1884.txt b/data/summaries/tumblr_e16bb9b41b14e2e794b1884.txt new file mode 100644 index 0000000000000000000000000000000000000000..c239ed02dd135c3af1f84b1750c1301ea060e0bb --- /dev/null +++ b/data/summaries/tumblr_e16bb9b41b14e2e794b1884.txt @@ -0,0 +1 @@ +The image is a meme featuring Kirby sitting on a beach at night, with the text "I MAY BE STUPID" written above him. \ No newline at end of file diff --git a/data/summaries/tumblr_e35760cd2b4f9a354bdf483.txt b/data/summaries/tumblr_e35760cd2b4f9a354bdf483.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc33d4c473ad790e77436f6a2e510e2cf41bfebc --- /dev/null +++ b/data/summaries/tumblr_e35760cd2b4f9a354bdf483.txt @@ -0,0 +1 @@ +The image shows a close-up of the Engineer character from the video game Team Fortress 2. He is wearing his signature yellow hard hat with goggles, and the focus is on his face, particularly his large nose and somewhat goofy expression. The background is blurred, suggesting the image is taken from gameplay or promotional material. diff --git a/data/summaries/tumblr_e6b94bb873f9274a40a8bb9.txt b/data/summaries/tumblr_e6b94bb873f9274a40a8bb9.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c773416db0671a7547eea064728cea0e034ae41 --- /dev/null +++ b/data/summaries/tumblr_e6b94bb873f9274a40a8bb9.txt @@ -0,0 +1 @@ +A tabby cat lays on a striped bed with its head lifted and eyes slightly open, facing a white kitten with black spots on its head and back in the foreground. The kitten is blurry, suggesting it's moving. diff --git a/data/summaries/tumblr_e994d06264884430a8edbb5.txt b/data/summaries/tumblr_e994d06264884430a8edbb5.txt new file mode 100644 index 0000000000000000000000000000000000000000..aca37698e0825625c17137b09b34cbc650f30d5f --- /dev/null +++ b/data/summaries/tumblr_e994d06264884430a8edbb5.txt @@ -0,0 +1 @@ +The image shows a cartoon illustration of a bald man in a black suit and white collar, bending over to take off his hat, presumably as a sign of respect. The image also contains the word "Respect!!!" in large letters. \ No newline at end of file diff --git a/data/summaries/tumblr_f51aa184d45716645f62cab.txt b/data/summaries/tumblr_f51aa184d45716645f62cab.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8c9354dc1b1d3db731bb1f59b170bdc3aca3e38 --- /dev/null +++ b/data/summaries/tumblr_f51aa184d45716645f62cab.txt @@ -0,0 +1 @@ +A cartoon cat wearing a pink bow asks to be picked up, emphasizing its endearing qualities to make up for its "overactive venom sacs." \ No newline at end of file diff --git a/data/summaries/tumblr_fe57469b3d7f1e23edd2d9d.txt b/data/summaries/tumblr_fe57469b3d7f1e23edd2d9d.txt new file mode 100644 index 0000000000000000000000000000000000000000..16109a5e4f930222a66a5260dc0e7f141a896c39 --- /dev/null +++ b/data/summaries/tumblr_fe57469b3d7f1e23edd2d9d.txt @@ -0,0 +1 @@ +A brown and white dog is trying to burrow underneath a white sheet that is draped over a small table. The dog pushes itself under the sheet and moves forward. There is dining room furniture visible in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_no9p3dergp1sit7ww.txt b/data/summaries/tumblr_no9p3dergp1sit7ww.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf561300040611fcb8a490b40f63e04889412b49 --- /dev/null +++ b/data/summaries/tumblr_no9p3dergp1sit7ww.txt @@ -0,0 +1 @@ +A Counter-Strike: Global Offensive player, using a sniper rifle, shoots an enemy lying in front of a gate. The enemy falls back, with blood splattering against a nearby vehicle. Afterwards, the shooter and an ally kill another enemy who approaches the gate. \ No newline at end of file diff --git a/data/summaries/tumblr_nqo3jsflla1tczeo1.txt b/data/summaries/tumblr_nqo3jsflla1tczeo1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a8b27675783b3d319b80b5d3179e8691a1b194 --- /dev/null +++ b/data/summaries/tumblr_nqo3jsflla1tczeo1.txt @@ -0,0 +1 @@ +At night, a vehicle on the road encounters a group of individuals dressed in cartoon character costumes fighting in the middle of the road. They disrupt traffic, and one character's head falls off. \ No newline at end of file diff --git a/data/summaries/tumblr_nvbbz81rn81s7vcw5_720.txt b/data/summaries/tumblr_nvbbz81rn81s7vcw5_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d4bb5b8e551bd7862ef721c806b9a307de913c4 --- /dev/null +++ b/data/summaries/tumblr_nvbbz81rn81s7vcw5_720.txt @@ -0,0 +1 @@ +A purple cat character from Animal Crossing, Bob, is seen playing maracas to music in a room with floral wallpaper. A person in an orange shirt and black hat is also visible. diff --git a/data/summaries/tumblr_nx7rb8bu0j1sj0zai.txt b/data/summaries/tumblr_nx7rb8bu0j1sj0zai.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f4eae0da2a254ba34febbbe763e322ff9dd14ef --- /dev/null +++ b/data/summaries/tumblr_nx7rb8bu0j1sj0zai.txt @@ -0,0 +1 @@ +The player is in the game Assassin's Creed Syndicate and is on a dock. The player is facing a small boy who is standing on a small boat. The player pulls out a gun and aims it at the boy. The boy screams and jumps off the boat onto the dock. The player then walks away from the boat and the boy. The player then walks towards a building and looks up at it. \ No newline at end of file diff --git a/data/summaries/tumblr_o23iv57xku1s9rrcg.txt b/data/summaries/tumblr_o23iv57xku1s9rrcg.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee912c64eb018e7ed668fecf6dda31114560e0f1 --- /dev/null +++ b/data/summaries/tumblr_o23iv57xku1s9rrcg.txt @@ -0,0 +1 @@ +A motorcycle zooms along a track, captured in a MotoGP replay, before the camera pans to a field where an Australian magpie stands. diff --git a/data/summaries/tumblr_o2obqdesvz1qiu7yx.txt b/data/summaries/tumblr_o2obqdesvz1qiu7yx.txt new file mode 100644 index 0000000000000000000000000000000000000000..a95885f90bceceb03142271f523471c3383e7210 --- /dev/null +++ b/data/summaries/tumblr_o2obqdesvz1qiu7yx.txt @@ -0,0 +1 @@ +A 3D animated family gathers in front of a decorated Christmas tree. They are all smiling and looking at the camera. One of the children exclaims that their great grandma always knows just what to say. The great grandma laughs in response. \ No newline at end of file diff --git a/data/summaries/tumblr_o6ixlnhbkc1vpel39.txt b/data/summaries/tumblr_o6ixlnhbkc1vpel39.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1b0bb4dd37b814855bb4031701f6bc11252ce14 --- /dev/null +++ b/data/summaries/tumblr_o6ixlnhbkc1vpel39.txt @@ -0,0 +1 @@ +The player character in Dark Souls is seen descending a staircase, where they encounter a giant, hostile statue that comes to life. The player attacks it. \ No newline at end of file diff --git a/data/summaries/tumblr_o73thfracl1slstjg.txt b/data/summaries/tumblr_o73thfracl1slstjg.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4a24cbe90ea405a5f7ac7067866bde8e8709c79 --- /dev/null +++ b/data/summaries/tumblr_o73thfracl1slstjg.txt @@ -0,0 +1 @@ +A man on a skateboard attempts to jump over a railing into a body of water, but fails and falls in. He emerges from the water holding a large fish over his head. Several people on the shoreline watch. \ No newline at end of file diff --git a/data/summaries/tumblr_o7h9rdhofm1qd4q8ao1_500.txt b/data/summaries/tumblr_o7h9rdhofm1qd4q8ao1_500.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6762fb2355adf479b9a53b4937a236bea92426e --- /dev/null +++ b/data/summaries/tumblr_o7h9rdhofm1qd4q8ao1_500.txt @@ -0,0 +1 @@ +A first-person perspective screenshot from a video game with a 3D polygonal graphical style shows a menacing, tree-like creature with a single, glowing red eye. In the upper-left corner are indicators for "POWER" and "MAGIC," and a compass is in the upper-right, suggesting a game with exploration and combat elements. The overall aesthetic is dark and gritty, reminiscent of early 3D games. diff --git a/data/summaries/tumblr_ofjdsex8xl1r77qhao1_540.txt b/data/summaries/tumblr_ofjdsex8xl1r77qhao1_540.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b24f174d283dbd754e57330c1067787dca91325 --- /dev/null +++ b/data/summaries/tumblr_ofjdsex8xl1r77qhao1_540.txt @@ -0,0 +1 @@ +The image is a distorted meme featuring a person with red eyes and the text "whatever man" at the top and "i gave up years ago" at the bottom. The image is highly pixelated and appears to be an exaggerated expression of giving up. diff --git a/data/summaries/tumblr_oiew2j3oxr1tkxvxv.txt b/data/summaries/tumblr_oiew2j3oxr1tkxvxv.txt new file mode 100644 index 0000000000000000000000000000000000000000..29a7f7057b4d53cda640edcb525ab3dc7fa4db15 --- /dev/null +++ b/data/summaries/tumblr_oiew2j3oxr1tkxvxv.txt @@ -0,0 +1 @@ +A boy holding a white object and a pixelated blue sword walks up to a crafting table in a Minecraft-inspired world. The video then transitions into a title card for a Youtube channel with the name Bobi*211798. \ No newline at end of file diff --git a/data/summaries/tumblr_on4va96ayo1w09rji.txt b/data/summaries/tumblr_on4va96ayo1w09rji.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e0bacfd16fbeebe5ce92a4000f962ea43aacab2 --- /dev/null +++ b/data/summaries/tumblr_on4va96ayo1w09rji.txt @@ -0,0 +1 @@ +A person is trying to get a bearded dragon to stand up using a clicking sound. The lizard is not happy and eventually the person stops. A second larger bearded dragon appears, standing up and bobbing its head. The person tries to get it to stop by pushing a blanket toward it and the video ends. \ No newline at end of file diff --git a/data/summaries/tumblr_oobqvwfqax1v4qe09.txt b/data/summaries/tumblr_oobqvwfqax1v4qe09.txt new file mode 100644 index 0000000000000000000000000000000000000000..413e7dc0e6aad7577c5bcbf672a8ae4a0e439e80 --- /dev/null +++ b/data/summaries/tumblr_oobqvwfqax1v4qe09.txt @@ -0,0 +1 @@ +Two small, dark turtles are seen in a shallow, possibly tiled, container with a small amount of water. They appear to be stacked on top of each other. The image has a slightly blurry, low-resolution quality. diff --git a/data/summaries/tumblr_oqn0af6ma41vbvowz.txt b/data/summaries/tumblr_oqn0af6ma41vbvowz.txt new file mode 100644 index 0000000000000000000000000000000000000000..7911450075155ef688438e371161bb67d07ff585 --- /dev/null +++ b/data/summaries/tumblr_oqn0af6ma41vbvowz.txt @@ -0,0 +1 @@ +The file is a music video for the song "Rub Your Nuts" by "I'm Gonna". The video features colorful abstract designs and images of the lyrics. The overall tone of the video is fun and playful. \ No newline at end of file diff --git a/data/summaries/tumblr_ort14e71ed1rusd51.txt b/data/summaries/tumblr_ort14e71ed1rusd51.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9af858c9231269067ad485ba896f53a9ceff82b --- /dev/null +++ b/data/summaries/tumblr_ort14e71ed1rusd51.txt @@ -0,0 +1 @@ +An audio clip features a brief, humorous song in English, set against a vibrant red background. The song's lyrics are displayed on-screen, mentioning "pizza," "pasta," and explicit requests for cheese and sauce to be placed on specific body parts. \ No newline at end of file diff --git a/data/summaries/tumblr_oyrn3narh41wfxs4p.txt b/data/summaries/tumblr_oyrn3narh41wfxs4p.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c0a795ec6e48fab2087566ecb2b77037b5f634b --- /dev/null +++ b/data/summaries/tumblr_oyrn3narh41wfxs4p.txt @@ -0,0 +1 @@ +The image shows an older white man with a bald head. He is wearing a suit and tie and is positioned inside the seat of a golden toilet. The words "vivaturkey" are visible in the upper right corner of the image. The man is saying "Come here" in a voice that is repeated multiple times. \ No newline at end of file diff --git a/data/summaries/tumblr_p080x68crg1v61b0e.txt b/data/summaries/tumblr_p080x68crg1v61b0e.txt new file mode 100644 index 0000000000000000000000000000000000000000..68e902fee5388883d3faf233306bc8298e3d5b33 --- /dev/null +++ b/data/summaries/tumblr_p080x68crg1v61b0e.txt @@ -0,0 +1 @@ +A man is seen in a lounge room taking a hit from a bong. He then takes a sip of beer and begins choking on the foam. Then he and some friends are seen at an IKEA, running around and being silly. \ No newline at end of file diff --git a/data/summaries/tumblr_p0opytk0me1vnq1cr.txt b/data/summaries/tumblr_p0opytk0me1vnq1cr.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c8d73a7e69872d6893aee5b703ae94745e48631 --- /dev/null +++ b/data/summaries/tumblr_p0opytk0me1vnq1cr.txt @@ -0,0 +1,3 @@ +Here is a short summary of the video: + +The video shows a PUBG gamer playing the game and driving a minibus. He then makes his face appear in the back window, which has been digitally changed to a screen, and starts waving to the other players. \ No newline at end of file diff --git a/data/summaries/tumblr_p22xdaxdyb1wmj5u2_720.txt b/data/summaries/tumblr_p22xdaxdyb1wmj5u2_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1df2c4c105b9505af7830221f6fd482240e999a --- /dev/null +++ b/data/summaries/tumblr_p22xdaxdyb1wmj5u2_720.txt @@ -0,0 +1 @@ +Here's a summary of the video: The speaker shares an anecdote about his manager at Abercrombie. He recounts that she asked him what an apple tasted like, and when he responded, she said that she'd never had one. He also mentions that she was later arrested. \ No newline at end of file diff --git a/data/summaries/tumblr_p4vvpl8m1x1uu22sk.txt b/data/summaries/tumblr_p4vvpl8m1x1uu22sk.txt new file mode 100644 index 0000000000000000000000000000000000000000..3003d7a67e9179be83ba6b9fc8208a4b7bde2089 --- /dev/null +++ b/data/summaries/tumblr_p4vvpl8m1x1uu22sk.txt @@ -0,0 +1 @@ +The video is a first-person perspective that has been overlaid with gaming HUD elements, such as health bars, attack buttons, and inventory. The player character is carrying a weapon, opens a door, and runs up the stairs. \ No newline at end of file diff --git a/data/summaries/tumblr_p5m33bhgd81v61b0e.txt b/data/summaries/tumblr_p5m33bhgd81v61b0e.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8920f1715f3da52247f85a6ff7f6a3b49f85ff7 --- /dev/null +++ b/data/summaries/tumblr_p5m33bhgd81v61b0e.txt @@ -0,0 +1 @@ +A man is shown in the foreground with a mock Dark Souls HUD. He appears to have been given a message that he is poisoned. He reacts with discomfort. \ No newline at end of file diff --git a/data/summaries/tumblr_p62i1lzrsj1ujkkfn_720.txt b/data/summaries/tumblr_p62i1lzrsj1ujkkfn_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca999206e06e83fbce254ad66d238d9f9ccde245 --- /dev/null +++ b/data/summaries/tumblr_p62i1lzrsj1ujkkfn_720.txt @@ -0,0 +1 @@ +An Elf character in Oblivion states that while necromancy is legal in Cyrodiil, few will admit to practicing it, now that the mages' guild has banned it. The Elf then says "Farewell", and after this the player gets the "Quest updated" popup for the quest "Liberation or Apprehension?", which notes that Fithragaer, the only surviving Battlemage is dead and that the player will continue on their own to find Mucianus Alias in the ruins. The player then finds Fithragaer dead and bloodied. \ No newline at end of file diff --git a/data/summaries/tumblr_paiu6vodeg1xt0fn9.txt b/data/summaries/tumblr_paiu6vodeg1xt0fn9.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba57fb6bc6f55f749becd730d85cad52f1c76020 --- /dev/null +++ b/data/summaries/tumblr_paiu6vodeg1xt0fn9.txt @@ -0,0 +1 @@ +The video shows gameplay footage of Lego Star Wars. The player is controlling Yoda, who is riding a green tractor and exploring a swampy area. Luke Skywalker and R2-D2 are also present. At one point, Yoda falls off the tractor into the swamp. \ No newline at end of file diff --git a/data/summaries/tumblr_pcug7ipupp1ucb78j1.txt b/data/summaries/tumblr_pcug7ipupp1ucb78j1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1161025db137436355e35f7d2cae8f0b8ca64bec --- /dev/null +++ b/data/summaries/tumblr_pcug7ipupp1ucb78j1.txt @@ -0,0 +1 @@ +The clip captures gameplay footage from the mobile game Neko Atsume, featuring a fisheye perspective of a backyard setting with a cat. The player interacts with a tablet-like interface, navigating through menus to access the camera function. Through the lens of the virtual camera, the player zooms in on a black and white cat enjoying food from a bowl. Finally, the user saves a photograph of the cat to an album within the game. \ No newline at end of file diff --git a/data/summaries/tumblr_pf9v7h7tle1qicsph.txt b/data/summaries/tumblr_pf9v7h7tle1qicsph.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc6bd00d75575429480e61d767f95ff5baedfdf1 --- /dev/null +++ b/data/summaries/tumblr_pf9v7h7tle1qicsph.txt @@ -0,0 +1 @@ +Keanu Reeves gives a very wholesome answer to the question: "What sort of girls do you like?" He responds that they're all angels, and he confirms that he's currently single. \ No newline at end of file diff --git a/data/summaries/tumblr_pftgtl50dj1xoyw8p.txt b/data/summaries/tumblr_pftgtl50dj1xoyw8p.txt new file mode 100644 index 0000000000000000000000000000000000000000..9db08c98634121cdd8e34b8d3c6cc2572fad297e --- /dev/null +++ b/data/summaries/tumblr_pftgtl50dj1xoyw8p.txt @@ -0,0 +1 @@ +A saxophonist entertains a crowd on the dance floor in a nightclub. As he plays, the DJ is seen dancing to the music as well. \ No newline at end of file diff --git a/data/summaries/tumblr_pg2yezpodj1wkb5q4.txt b/data/summaries/tumblr_pg2yezpodj1wkb5q4.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbc54afab4ffc791218b97620062f9f2f008a6ef --- /dev/null +++ b/data/summaries/tumblr_pg2yezpodj1wkb5q4.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +This video shows Bert from Sesame Street playing the drums. He wears a striped shirt and is seen hitting the drum and the cymbal. The video is of low quality, but it is still possible to see Bert's movements and hear the sound of the drums. \ No newline at end of file diff --git a/data/summaries/tumblr_pggbhshcy91qjpq1o.txt b/data/summaries/tumblr_pggbhshcy91qjpq1o.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dd9b287315e85d20214ee6f70cd67e136551458 --- /dev/null +++ b/data/summaries/tumblr_pggbhshcy91qjpq1o.txt @@ -0,0 +1 @@ +A baby seal waddles forward on a white sandy beach, eventually letting out a ferocious roar that sounds like a dog's bark. \ No newline at end of file diff --git a/data/summaries/tumblr_pgkj141bhe1xseads1.txt b/data/summaries/tumblr_pgkj141bhe1xseads1.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbe1697d09e8b7ab045a14a395bef1dffedfba1b --- /dev/null +++ b/data/summaries/tumblr_pgkj141bhe1xseads1.txt @@ -0,0 +1 @@ +A man is filming a video of himself in his bedroom. He appears to have just woken up from a nap and acts surprised when he notices he was dreaming. He takes a few steps and then checks to make sure his pants are zipped before laughing to himself. \ No newline at end of file diff --git a/data/summaries/tumblr_ph9tstzv0d1wiatbxo1_250.txt b/data/summaries/tumblr_ph9tstzv0d1wiatbxo1_250.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f8f0e1bab0e95a371905fdb649a3d8229f0ec55 --- /dev/null +++ b/data/summaries/tumblr_ph9tstzv0d1wiatbxo1_250.txt @@ -0,0 +1 @@ +The image features a bass with the word "average!" superimposed diagonally above it. The word is green and slightly blurred. The fish itself is detailed with a 3D-rendered look, and the background is black. diff --git a/data/summaries/tumblr_pi3xsduhru1qdz4bw.txt b/data/summaries/tumblr_pi3xsduhru1qdz4bw.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe29da7aebfc37c1e33db03a6e1431ff4074ed7d --- /dev/null +++ b/data/summaries/tumblr_pi3xsduhru1qdz4bw.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +The file begins with a white card that reads "Hi Tyler" and quickly transitions to several images of Tyler with friends in different locations, including one of him in a hospital bed after an accident, followed by a damaged car. The images are alternated with cards saying "Here are your friends," "Well, a few of them," "You've done a lot together," "You've shared these moments," "And remember this?" and "Your friends are pretty awesome." The video concludes with the cards saying "Happy Friends Day" and "From all of us at Facebook." \ No newline at end of file diff --git a/data/summaries/tumblr_pjs86ff7d61xknvha.txt b/data/summaries/tumblr_pjs86ff7d61xknvha.txt new file mode 100644 index 0000000000000000000000000000000000000000..da678cf88d0d9acbe8c27edbeadfeafad4043dda --- /dev/null +++ b/data/summaries/tumblr_pjs86ff7d61xknvha.txt @@ -0,0 +1 @@ +A pair of hands breaks open a square-shaped, brown pastry, revealing a melted chocolate filling inside. The pastry sits on a square white plate on a wooden surface. \ No newline at end of file diff --git a/data/summaries/tumblr_pkrg13minm1ufbwoc.txt b/data/summaries/tumblr_pkrg13minm1ufbwoc.txt new file mode 100644 index 0000000000000000000000000000000000000000..26f2ba2c063fafc3bbda3773f135964d8f9540db --- /dev/null +++ b/data/summaries/tumblr_pkrg13minm1ufbwoc.txt @@ -0,0 +1 @@ +In the video, people in Orlando are getting ready to put 2018 in the rearview mirror and say hello to 2019. There is a festive atmosphere and a dog with a banana. diff --git a/data/summaries/tumblr_ppe0ziwngp1xoyw8p.txt b/data/summaries/tumblr_ppe0ziwngp1xoyw8p.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a9a13ad6b79f5d348a374885dca5bd3056890f0 --- /dev/null +++ b/data/summaries/tumblr_ppe0ziwngp1xoyw8p.txt @@ -0,0 +1 @@ +A person is wearing cat slippers that resemble the cat on the kitchen counter. \ No newline at end of file diff --git a/data/summaries/tumblr_ppmhj77cgz1y5y4d0.txt b/data/summaries/tumblr_ppmhj77cgz1y5y4d0.txt new file mode 100644 index 0000000000000000000000000000000000000000..aac3e6dd55810fc75d018a9edf1210293e443ed1 --- /dev/null +++ b/data/summaries/tumblr_ppmhj77cgz1y5y4d0.txt @@ -0,0 +1 @@ +Two people use the stair railing like a stripper pole while the Anaconda song plays in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_psl4ml2lrb1y9fkxh.txt b/data/summaries/tumblr_psl4ml2lrb1y9fkxh.txt new file mode 100644 index 0000000000000000000000000000000000000000..6024e3b946d65fc64a17a798f4a1ee72937e8279 --- /dev/null +++ b/data/summaries/tumblr_psl4ml2lrb1y9fkxh.txt @@ -0,0 +1 @@ +The man in this video is wearing a white tank top with the word "Reformed" on it. He also wears a headset with a microphone. He pretends to hold a ball in his hand. After the build-up, he reveals a Wendy's BBQ sauce packet in its place. \ No newline at end of file diff --git a/data/summaries/tumblr_psscvt0lnt1yozk4p.txt b/data/summaries/tumblr_psscvt0lnt1yozk4p.txt new file mode 100644 index 0000000000000000000000000000000000000000..527d39ae2b5e69102a3fe2f2460e6220183e190c --- /dev/null +++ b/data/summaries/tumblr_psscvt0lnt1yozk4p.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +The file contains a clip of an interview with Elton John from the early 1980s. A woman calls into the show and suggests that he visit Six Flags in Dallas. John replies that he's already been to Six Flags in Kansas City. He then jokes about the phrase "Six Flags." He tells a story about frozen food and the word "faggot" having a different meaning in England and what happens when American tourists land at London Airport. The other two panelists are amused. \ No newline at end of file diff --git a/data/summaries/tumblr_pswuvejcuq1t1rjsc.txt b/data/summaries/tumblr_pswuvejcuq1t1rjsc.txt new file mode 100644 index 0000000000000000000000000000000000000000..a36d8daf916ccee198f37e7ada834224dd9263bd --- /dev/null +++ b/data/summaries/tumblr_pswuvejcuq1t1rjsc.txt @@ -0,0 +1 @@ +A person is shown in distress with tears streaming down their face, coughing and having difficulty breathing. Cigarettes are sticking out of their nostrils. \ No newline at end of file diff --git a/data/summaries/tumblr_pud1klyjte1vu7869.txt b/data/summaries/tumblr_pud1klyjte1vu7869.txt new file mode 100644 index 0000000000000000000000000000000000000000..3799eacbe50eb23af35fa2fec343f3f83c0e3e0b --- /dev/null +++ b/data/summaries/tumblr_pud1klyjte1vu7869.txt @@ -0,0 +1 @@ +Jake Gyllenhaal is talking about something when a sound effect plays. He is visibly shocked. Tom Holland is also present but is unfazed by the sound effect. \ No newline at end of file diff --git a/data/summaries/tumblr_pvgpmifqs81r1f8n1.txt b/data/summaries/tumblr_pvgpmifqs81r1f8n1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8e18d82c829678e866b700a1d6733799415d6d6 --- /dev/null +++ b/data/summaries/tumblr_pvgpmifqs81r1f8n1.txt @@ -0,0 +1 @@ +Eddie Izzard asks Alan Carr when he came out on an episode of Alan Carr: Chatty Man. Carr jokes that he hasn't come out yet, and yells that his wife is watching. \ No newline at end of file diff --git a/data/summaries/tumblr_pvjsmtqh5t1xy89dz.txt b/data/summaries/tumblr_pvjsmtqh5t1xy89dz.txt new file mode 100644 index 0000000000000000000000000000000000000000..487407f1153c6b19f842750d77313dd4d6f66b90 --- /dev/null +++ b/data/summaries/tumblr_pvjsmtqh5t1xy89dz.txt @@ -0,0 +1 @@ +A man is seen opening a door, dressed casually. He then enters a laundry room, climbs atop a washing machine, and dances while dressed in full wizard attire. diff --git a/data/summaries/tumblr_pw39w8i6xu1tekpe5.txt b/data/summaries/tumblr_pw39w8i6xu1tekpe5.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf54a339f9cd76eac039f048c01c79bdff82affe --- /dev/null +++ b/data/summaries/tumblr_pw39w8i6xu1tekpe5.txt @@ -0,0 +1 @@ +Thanos snaps his fingers, which is immediately followed by the logo for a Mexican restaurant called TakeSaBroSo. This video shows off the restaurant's offerings in a bizarre and lighthearted manner. Thanos is superimposed over the food in various dancing positions. \ No newline at end of file diff --git a/data/summaries/tumblr_pwns4wy8wq1y73t5z.txt b/data/summaries/tumblr_pwns4wy8wq1y73t5z.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b211d20fb22171b081db8542701546eaa1ba0e8 --- /dev/null +++ b/data/summaries/tumblr_pwns4wy8wq1y73t5z.txt @@ -0,0 +1 @@ +A TikTok user is at the beach and finds a crab on their towel. The crab is initially motionless, so the user uses keys to check if it is alive. After touching it, the crab moves, and the user throws the crab back into the ocean. \ No newline at end of file diff --git a/data/summaries/tumblr_pwvcz6epvx1sg5u7k.txt b/data/summaries/tumblr_pwvcz6epvx1sg5u7k.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b3caff4fe9ce1fa78ae519f9b2e9cb10809af7e --- /dev/null +++ b/data/summaries/tumblr_pwvcz6epvx1sg5u7k.txt @@ -0,0 +1 @@ +Here is a summary of the video: A person is holding a cell phone, showing a picture of a man. The man is shirtless in the picture, looking at the camera. The text on the image says, “Nooo don’t kill yourself your so sexy aha.” Then the video switches to the same man who was in the picture, wearing a black shirt with green and yellow flowers. He is touching his hair and smiling at the camera. \ No newline at end of file diff --git a/data/summaries/tumblr_px00euzcme1w6we7f_720.txt b/data/summaries/tumblr_px00euzcme1w6we7f_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad64fcc190996893bd47d3a14da853b3e9808f4d --- /dev/null +++ b/data/summaries/tumblr_px00euzcme1w6we7f_720.txt @@ -0,0 +1 @@ +Here's a summary of the Minecraft clip: jschlatt is looking around a small room for a boat to escape in, but there are none. He chants "boat", and a strange deep sound begins to be heard. It is apparently not unusual, and jschlatt asks if his friends are okay. \ No newline at end of file diff --git a/data/summaries/tumblr_px12cem2y61ww1c21.txt b/data/summaries/tumblr_px12cem2y61ww1c21.txt new file mode 100644 index 0000000000000000000000000000000000000000..0035d843acae14bf2cf324ef40facdf503686921 --- /dev/null +++ b/data/summaries/tumblr_px12cem2y61ww1c21.txt @@ -0,0 +1 @@ +A glassblower creates a glass dolphin. First, he forms the fish, and then he blows air to expand the glass. Using various tools, he shapes and modifies the glass, adding fins and then shaping the tail. A second glassblower takes the dolphin and connects it to another piece of glass, creating a beautiful, finished glass dolphin with a baby dolphin. \ No newline at end of file diff --git a/data/summaries/tumblr_px2oa7xj5j1y3tvij.txt b/data/summaries/tumblr_px2oa7xj5j1y3tvij.txt new file mode 100644 index 0000000000000000000000000000000000000000..861014114ba9a1ff0ae33f282b78b60857eb857a --- /dev/null +++ b/data/summaries/tumblr_px2oa7xj5j1y3tvij.txt @@ -0,0 +1 @@ +The TikTok shows a woman on one side, and a man on the other. The woman is talking about how she doesn’t want to hang out because she’s insecure and shy. The man walks in wearing a jester hat, and the woman says she appreciates the gesture. \ No newline at end of file diff --git a/data/summaries/tumblr_py2cpycmfi1urdjha.txt b/data/summaries/tumblr_py2cpycmfi1urdjha.txt new file mode 100644 index 0000000000000000000000000000000000000000..43d15ac97b0a642cdfb83e1c98198acde1de0c0e --- /dev/null +++ b/data/summaries/tumblr_py2cpycmfi1urdjha.txt @@ -0,0 +1 @@ +A scuba diver encounters a large group of spider crabs walking on the sea floor and reaches down toward them. \ No newline at end of file diff --git a/data/summaries/tumblr_pyqb56qfal1ys1mpp.txt b/data/summaries/tumblr_pyqb56qfal1ys1mpp.txt new file mode 100644 index 0000000000000000000000000000000000000000..10bf14a28d64a1715d12a27672efacb1abb84542 --- /dev/null +++ b/data/summaries/tumblr_pyqb56qfal1ys1mpp.txt @@ -0,0 +1 @@ +The streamer Jerma is confused as to why someone named Joel donated fifteen dollars to his stream. Joel also asks Jerma if he is going to Popping Gamer this year. Jerma is unsure what Popping Gamer is. \ No newline at end of file diff --git a/data/summaries/tumblr_pz6tue0foy1yu9fc3.txt b/data/summaries/tumblr_pz6tue0foy1yu9fc3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9d13f06cab5a1fe0aa647a0790c2a2ba5655f57 --- /dev/null +++ b/data/summaries/tumblr_pz6tue0foy1yu9fc3.txt @@ -0,0 +1 @@ +Here's a summary of the video: The video shows how to make Hawaiian chicken. It cuts a chicken breast in half to create a pocket. Then, dips it in flour, egg, and bread crumbs. The chicken is then placed on a baking sheet. A pineapple slice with the center cut out is placed over the opening of the chicken breast. A rolled ham and cheese slice is placed into the pineapple slice and topped with béchamel sauce and mozzarella. Cubed potatoes are added to the sheet and drizzled with olive oil, salt, and pepper. It is then baked for 40 minutes at 350°F. Finally, it is served with a green salad and garnished with parsley. \ No newline at end of file diff --git a/data/summaries/tumblr_pz8lvr6vkd1wyqvz5.txt b/data/summaries/tumblr_pz8lvr6vkd1wyqvz5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d4df04f2a7a7712da2c1484a14b99052f3d7015 --- /dev/null +++ b/data/summaries/tumblr_pz8lvr6vkd1wyqvz5.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +The file shows a screen capture of a livestream from “christianityhotlineofficial” on Instagram. Two people are on the live, one with fair skin and short, reddish-blond hair and the other with darker skin and long, dark curly hair. The person with darker skin shows his nails to the other, some of which are painted green and some of which are painted black. The other person tells him that he should not paint his nails. The nail-painter then makes cat noises, and the other person yells that he knows the nail-painter knows what he’s doing. The nail painter continues to make cat noises, and the livestream ends. diff --git a/data/summaries/tumblr_pzvx3nmmxq1upr3iz.txt b/data/summaries/tumblr_pzvx3nmmxq1upr3iz.txt new file mode 100644 index 0000000000000000000000000000000000000000..f87d0aed3c592a1cd4e7cf563dfcf4779b0b80d5 --- /dev/null +++ b/data/summaries/tumblr_pzvx3nmmxq1upr3iz.txt @@ -0,0 +1 @@ +The video shows two people, possibly actors, being interviewed. The first person is wearing a yellow striped shirt and a tie. The second person is wearing a grey t-shirt. In the background, there is a poster for "The Lord of the Rings." The interviewer asks each person if they wear, have worn, or will wear wigs. The first person says that they do not wear wigs but might in the future. The second person does not respond to the questions. \ No newline at end of file diff --git a/data/summaries/tumblr_q00lxfxyjl1r518v3.txt b/data/summaries/tumblr_q00lxfxyjl1r518v3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2efdcd730300bdc67be29d221b530e3671ded38 --- /dev/null +++ b/data/summaries/tumblr_q00lxfxyjl1r518v3.txt @@ -0,0 +1 @@ +The video is a meme featuring a scene from the movie Spider-Man (2002), where Peter Parker has just discovered his spider-sense. It's captioned with a sexually suggestive joke. \ No newline at end of file diff --git a/data/summaries/tumblr_q05btbnjkf1wjlseu1.txt b/data/summaries/tumblr_q05btbnjkf1wjlseu1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a97d5590e3d5f25d82771b6101e8149dff9eb51 --- /dev/null +++ b/data/summaries/tumblr_q05btbnjkf1wjlseu1.txt @@ -0,0 +1 @@ +A woman in blue scrubs holds a small dog with big, round, adorable eyes. She smiles and holds it out closer to the camera.  \ No newline at end of file diff --git a/data/summaries/tumblr_q0p3rfacwg1vdn84q.txt b/data/summaries/tumblr_q0p3rfacwg1vdn84q.txt new file mode 100644 index 0000000000000000000000000000000000000000..9343607d7272a772865a3feb7d33bddecbc35539 --- /dev/null +++ b/data/summaries/tumblr_q0p3rfacwg1vdn84q.txt @@ -0,0 +1 @@ +Two people dressed in yellow fruit costumes, one shaped more like a mango and the other like a banana, dance to music at a mall. One of the people in costume falls down. Other people are standing and sitting around the area. diff --git a/data/summaries/tumblr_q0tiiln9tt1xnckdk_720.txt b/data/summaries/tumblr_q0tiiln9tt1xnckdk_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcd7b64722d0cff3db3bf59d43f7ad22f5fbc69c --- /dev/null +++ b/data/summaries/tumblr_q0tiiln9tt1xnckdk_720.txt @@ -0,0 +1 @@ +A close-up image features a brown tabby cat with an annoyed expression, as a hand pets the cat's head. The word "blargle" is superimposed on the image. The cat is lying on a light-colored, textured surface, possibly a blanket or cushion. \ No newline at end of file diff --git a/data/summaries/tumblr_q1fu0o3pwc1yym5l4.txt b/data/summaries/tumblr_q1fu0o3pwc1yym5l4.txt new file mode 100644 index 0000000000000000000000000000000000000000..310c6405476b50da7c9b5a70fe5b5ef63ba741ef --- /dev/null +++ b/data/summaries/tumblr_q1fu0o3pwc1yym5l4.txt @@ -0,0 +1 @@ +Two women emerge from inside a microwave and laugh while another woman reacts in shock from outside the microwave. The microwave is then seen empty with a spinning dish. \ No newline at end of file diff --git a/data/summaries/tumblr_q1x2rgk4di1vmobp0.txt b/data/summaries/tumblr_q1x2rgk4di1vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8bd1462f40047ba4cea440df8316daecee05fb6 --- /dev/null +++ b/data/summaries/tumblr_q1x2rgk4di1vmobp0.txt @@ -0,0 +1 @@ +A puppy is playing with an object on the floor when a dog runs up and seemingly startles the puppy. The dog then leaves the frame. \ No newline at end of file diff --git a/data/summaries/tumblr_q25hbhhmlu1x4pmbc.txt b/data/summaries/tumblr_q25hbhhmlu1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2821888601fcefb318b312d03b3ccc99899d38a --- /dev/null +++ b/data/summaries/tumblr_q25hbhhmlu1x4pmbc.txt @@ -0,0 +1 @@ +A TikTok video by @josh.wheeler shows a man mimicking the beat made by the sound of hitting an office light. The man dances around and slaps his head while making similar sounds to the office light when it’s hit. A younger man films and a woman with the red cap on her head appears at the end. \ No newline at end of file diff --git a/data/summaries/tumblr_q2xxyazp681qb43os.txt b/data/summaries/tumblr_q2xxyazp681qb43os.txt new file mode 100644 index 0000000000000000000000000000000000000000..71f46168949adeae21b254b2027d423c1d1d5ea8 --- /dev/null +++ b/data/summaries/tumblr_q2xxyazp681qb43os.txt @@ -0,0 +1 @@ +The player travels through a ruined stone structure with blood stains on the ground. As they progress, they discover "Bard's Leap Summit" at the peak, where they encounter a bandit. The player jumps off the summit into a waterfall. \ No newline at end of file diff --git a/data/summaries/tumblr_q3k09e6lkm1yym5l4.txt b/data/summaries/tumblr_q3k09e6lkm1yym5l4.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a92dd15858c6af7548f22e79751353c93dba894 --- /dev/null +++ b/data/summaries/tumblr_q3k09e6lkm1yym5l4.txt @@ -0,0 +1 @@ +A black and white cat is presented with a pickle. After smelling it, the cat recoils and gags. The cat's owner asks, "You don't like that?" \ No newline at end of file diff --git a/data/summaries/tumblr_q4e9yngshz1yowoi1.txt b/data/summaries/tumblr_q4e9yngshz1yowoi1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecbb506dfab54a8efba4693f5c307e83add7dff7 --- /dev/null +++ b/data/summaries/tumblr_q4e9yngshz1yowoi1.txt @@ -0,0 +1 @@ +A red-haired man in a pub sets a glass down, and then squats, dances and attempts a limbo under a bar stool. \ No newline at end of file diff --git a/data/summaries/tumblr_q799hw2ti91s1ddrj.txt b/data/summaries/tumblr_q799hw2ti91s1ddrj.txt new file mode 100644 index 0000000000000000000000000000000000000000..af837b0b6df0a4ba32436d94dd8d82fe20e3127f --- /dev/null +++ b/data/summaries/tumblr_q799hw2ti91s1ddrj.txt @@ -0,0 +1 @@ +A person dressed in a white hazmat suit dances in the middle of a mostly empty courtyard at night. The person moves their arms and bounces to music that can be heard, but not clearly identified. There are plants, a few steps, and street lights visible in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_q7xr0ihfny1rmij36.txt b/data/summaries/tumblr_q7xr0ihfny1rmij36.txt new file mode 100644 index 0000000000000000000000000000000000000000..34d7c9f89036e7c3425eeff2c1a287d0e2a12914 --- /dev/null +++ b/data/summaries/tumblr_q7xr0ihfny1rmij36.txt @@ -0,0 +1 @@ +The character in this video game is walking towards a tropical shoreline, where a large turtle is seen. The background includes water, a mountain range, and palm trees. The character is equipped with a weapon and appears to be wearing armor. The weather appears to be overcast. \ No newline at end of file diff --git a/data/summaries/tumblr_q8f813ghj51yttqag.txt b/data/summaries/tumblr_q8f813ghj51yttqag.txt new file mode 100644 index 0000000000000000000000000000000000000000..639fd167bfde9eb37a71a9c5dd58e31c13afea5d --- /dev/null +++ b/data/summaries/tumblr_q8f813ghj51yttqag.txt @@ -0,0 +1 @@ +A chubby African Bullfrog is picked up from a wooden floor and moved to a transparent box. The bullfrog is shown making a series of audible noises. \ No newline at end of file diff --git a/data/summaries/tumblr_q8qbdq7oer1s8ba22.txt b/data/summaries/tumblr_q8qbdq7oer1s8ba22.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecac5e969e841d80acd3db807b275833ce402d25 --- /dev/null +++ b/data/summaries/tumblr_q8qbdq7oer1s8ba22.txt @@ -0,0 +1 @@ +The video shows a scene from the game "The Elder Scrolls IV: Oblivion". The player, armed with a large, silver axe, is walking towards a group of people. The people include guards and a man in a brown robe, who begins to speak, saying, "All of you... I know you all expect me to be Emperor. I'll do my best, but this is all new to me." Then, a roar or scream is heard. \ No newline at end of file diff --git a/data/summaries/tumblr_q90ozzqhty1qjbz3w.txt b/data/summaries/tumblr_q90ozzqhty1qjbz3w.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8449682ac0ae2e3cbcdb1d4fe87bf906785c391 --- /dev/null +++ b/data/summaries/tumblr_q90ozzqhty1qjbz3w.txt @@ -0,0 +1 @@ +A person opens the door to the Flamingo House, and there is a large group of flamingos inside. They quack in response to the person’s greeting. \ No newline at end of file diff --git a/data/summaries/tumblr_q98zp21tkh1y5o966.txt b/data/summaries/tumblr_q98zp21tkh1y5o966.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1f43043cf51ebd940fb752cf1d9d133420b83dd --- /dev/null +++ b/data/summaries/tumblr_q98zp21tkh1y5o966.txt @@ -0,0 +1 @@ +A close up shot of a young man, slightly out of focus, who is talking to the camera. His face fills the frame as he speaks. \ No newline at end of file diff --git a/data/summaries/tumblr_qb2335qsyr1rv8mhv_720.txt b/data/summaries/tumblr_qb2335qsyr1rv8mhv_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7d1e24b85d695b84a19cf4a1bc18be85bebe1b0 --- /dev/null +++ b/data/summaries/tumblr_qb2335qsyr1rv8mhv_720.txt @@ -0,0 +1 @@ +The gamer "Thin Ice" is playing Mortal Kombat against "Blood Drive." Thin Ice is playing as Sub-Zero and Blood Drive is playing as a red-clad ninja. Thin Ice wins, and the finisher animation has Sub-Zero riding an ice cream bicycle. \ No newline at end of file diff --git a/data/summaries/tumblr_qbjgncf2y31qev8ce.txt b/data/summaries/tumblr_qbjgncf2y31qev8ce.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9a9f8a9308c53570c4b1eb318a11e7bb2436200 --- /dev/null +++ b/data/summaries/tumblr_qbjgncf2y31qev8ce.txt @@ -0,0 +1 @@ +The video shows a young person with long, wavy hair and glasses wearing a t-shirt that says “I’m the Boss California” with a cartoon duck on it, and jeans. The person states the phrase written on the t-shirt, and then pulls the shirt over their head. This process is repeated several times. \ No newline at end of file diff --git a/data/summaries/tumblr_qbjjwixbkb1ugrbaa.txt b/data/summaries/tumblr_qbjjwixbkb1ugrbaa.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce61a9f49839658085ef635af8c22e2d6bc5228a --- /dev/null +++ b/data/summaries/tumblr_qbjjwixbkb1ugrbaa.txt @@ -0,0 +1 @@ +A TikTok video depicts two men humorously acting like fish, wearing hooks through their mouths and mimicking the motion of biting. \ No newline at end of file diff --git a/data/summaries/tumblr_qbm1psgnth1xn7gce.txt b/data/summaries/tumblr_qbm1psgnth1xn7gce.txt new file mode 100644 index 0000000000000000000000000000000000000000..b261ab5ed9ea4597b71d1cf4b5cb928a7652f71f --- /dev/null +++ b/data/summaries/tumblr_qbm1psgnth1xn7gce.txt @@ -0,0 +1 @@ +The video shows a seagull floating on the water. A beluga whale approaches the seagull and holds its nose up so that the seagull can climb onto its head. The whale then swims around with the seagull riding on its head. \ No newline at end of file diff --git a/data/summaries/tumblr_qbpwn8hf431uwm4bj.txt b/data/summaries/tumblr_qbpwn8hf431uwm4bj.txt new file mode 100644 index 0000000000000000000000000000000000000000..c881f19a7ebd2724a97f7867a949bd40ba4322d5 --- /dev/null +++ b/data/summaries/tumblr_qbpwn8hf431uwm4bj.txt @@ -0,0 +1 @@ +Baby alligators swim in murky water next to a decomposing carcass. One baby alligator grabs a blade of grass, and another comes to the surface with its head above the water. \ No newline at end of file diff --git a/data/summaries/tumblr_qcixzrehec1rndv4t.txt b/data/summaries/tumblr_qcixzrehec1rndv4t.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3b15b91f525a7c70c5352ba48d26353d7e63be0 --- /dev/null +++ b/data/summaries/tumblr_qcixzrehec1rndv4t.txt @@ -0,0 +1 @@ +A person drops a piece of jam-covered toast and then picks up their Vans shoe. The person then affixes the toast to the shoe using tape and sets the shoe on the floor. \ No newline at end of file diff --git a/data/summaries/tumblr_qcktyo2n6x1wl2mro.txt b/data/summaries/tumblr_qcktyo2n6x1wl2mro.txt new file mode 100644 index 0000000000000000000000000000000000000000..f00b5b6dcc20f2b2181bd7b7445cb45c14c6ebb5 --- /dev/null +++ b/data/summaries/tumblr_qcktyo2n6x1wl2mro.txt @@ -0,0 +1 @@ +Drew Scanlon is a white man, who's being showcased as part of GMA's Big Board of top GIFs and memes of 2017. \ No newline at end of file diff --git a/data/summaries/tumblr_qd14sc1zcz1yg9abg.txt b/data/summaries/tumblr_qd14sc1zcz1yg9abg.txt new file mode 100644 index 0000000000000000000000000000000000000000..777dbdf5a18b8c0078c732bb6f1e5ff147dbdc8f --- /dev/null +++ b/data/summaries/tumblr_qd14sc1zcz1yg9abg.txt @@ -0,0 +1 @@ +Two gray kittens on a blue background are shown in the video. The song "Just the Two of Us" plays in the background, and the kittens get speech bubbles with song lyrics. \ No newline at end of file diff --git a/data/summaries/tumblr_qdgncuguqd1x4pmbc.txt b/data/summaries/tumblr_qdgncuguqd1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..43df0b628936f7db89c85ec2994b105824badaf5 --- /dev/null +++ b/data/summaries/tumblr_qdgncuguqd1x4pmbc.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +The video is a TikTok of a woman with a green tie-dye shirt, red lipstick, teal eye makeup, and blonde braids with a few charms throughout. She says, “And the robot was actually his dad. That is the entire premise of Star Wars.” Then, she looks up and says, “Wow, so cool, you’re smart brain knowledge on Star Wars. So sexy. Speaking of star, do you know star sign, astrology?” She sticks her tongue out. Then, she puts her hands in the air, and says, “Silence, foul woman! Speak no more of your planetary sorcery. Lest I take you down to the gallows and banish you to whence you came. Which.” \ No newline at end of file diff --git a/data/summaries/tumblr_qdsr7m8sog1ya40ij.txt b/data/summaries/tumblr_qdsr7m8sog1ya40ij.txt new file mode 100644 index 0000000000000000000000000000000000000000..99d43c6905c2a592e4c535d52ee6ed11600af393 --- /dev/null +++ b/data/summaries/tumblr_qdsr7m8sog1ya40ij.txt @@ -0,0 +1 @@ +Toad's body is edited to have human legs and he dances while talking about dance. \ No newline at end of file diff --git a/data/summaries/tumblr_qdv6r4j7l51ry1uzo.txt b/data/summaries/tumblr_qdv6r4j7l51ry1uzo.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8d8f1a2875b69645534d45f347ec2d8db4425d8 --- /dev/null +++ b/data/summaries/tumblr_qdv6r4j7l51ry1uzo.txt @@ -0,0 +1 @@ +A TikTok video shows two people in separate frames conversing on a video call. The person on the left is a person with dark hair, wearing a blue collared shirt, a beige baseball cap, and sunglasses. This person has ear buds in, and a white laptop is in the foreground. The person on the right is a younger-appearing person wearing a red t-shirt. This person reaches into a light-colored canvas bag and pulls out lip balm. The content of their conversation is about a job interview, and the younger person says that they went to prison for a few months because their gun was not on safety. The person on the left exclaims to shut up. \ No newline at end of file diff --git a/data/summaries/tumblr_qehf84j1vf1xoyw8p.txt b/data/summaries/tumblr_qehf84j1vf1xoyw8p.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d33457e886d659d72af4b116dce975c4337d63b --- /dev/null +++ b/data/summaries/tumblr_qehf84j1vf1xoyw8p.txt @@ -0,0 +1,3 @@ +Here's a summary of the video: + +The video shows a comedic meme about girls wanting to start a band, but their mom insists their brother join. The video then shows a vintage music performance by a group of women and a man who is clearly not in sync with the rest of the band, in an ironic and comical way. \ No newline at end of file diff --git a/data/summaries/tumblr_qfc3fgiqrb1wmhpzh_720.txt b/data/summaries/tumblr_qfc3fgiqrb1wmhpzh_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbd78ae8d3964df6e537be4646217c29398b322b --- /dev/null +++ b/data/summaries/tumblr_qfc3fgiqrb1wmhpzh_720.txt @@ -0,0 +1 @@ +The meme features a NY Daily News headline "Arrested Arizona 'Penis Man' claims there are more Penis Men". The video then shows characters from Team Fortress 2 in reaction to the news. \ No newline at end of file diff --git a/data/summaries/tumblr_qfgbyyvddj1yri6y0.txt b/data/summaries/tumblr_qfgbyyvddj1yri6y0.txt new file mode 100644 index 0000000000000000000000000000000000000000..64382ec3eca31c22b8017a6a982fe341816f6792 --- /dev/null +++ b/data/summaries/tumblr_qfgbyyvddj1yri6y0.txt @@ -0,0 +1 @@ +A chef pigeon puts together a tiny pizza with a white base, red sauce, and white cheese on top, and a person picks up the pizza and takes a bite. \ No newline at end of file diff --git a/data/summaries/tumblr_qfll0cvr4l1yvwbim.txt b/data/summaries/tumblr_qfll0cvr4l1yvwbim.txt new file mode 100644 index 0000000000000000000000000000000000000000..5080d9cf2abbcc03221fc06824f4d8a51bc916ec --- /dev/null +++ b/data/summaries/tumblr_qfll0cvr4l1yvwbim.txt @@ -0,0 +1 @@ +The news report shows the exterior of the Summit County Medical Examiner’s Office. It states that the heroin epidemic has overwhelmed the coroner's office, forcing them to bring in a mobile morgue. A man is interviewed; he mentions that his brother used to steal the TV from their house, but now his brother is dead. \ No newline at end of file diff --git a/data/summaries/tumblr_qfxxev71zt1y54s2v.txt b/data/summaries/tumblr_qfxxev71zt1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f4f9dd2dae8c3a50d8b46aeee859c5782f42e29 --- /dev/null +++ b/data/summaries/tumblr_qfxxev71zt1y54s2v.txt @@ -0,0 +1 @@ +The video consists of a TikTok showing a man with dreadlocks and a beard mimicking how his friends would talk about him at his funeral. The video transitions to another segment of the man walking into a room with red lighting, causing him to ask, "what the f*** is Ronald Reagan in?", while insinuating the lighting makes him think he’s arrived in hell. \ No newline at end of file diff --git a/data/summaries/tumblr_qgfg7uurh41wsqdel_720.txt b/data/summaries/tumblr_qgfg7uurh41wsqdel_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..52a048a31a25abd5e362e52a100002ad07befff6 --- /dev/null +++ b/data/summaries/tumblr_qgfg7uurh41wsqdel_720.txt @@ -0,0 +1 @@ +The video shows a cartoon man sitting on a couch with the text "MY DAY BE SO FINE". Then, the man is shown slumped over, with the text "THEN BOOM MENTAL ILLNESS". Finally, the screen goes blank except for the couch and the text "THEN BOOM". \ No newline at end of file diff --git a/data/summaries/tumblr_qhejmpjvzs1tkir8g.txt b/data/summaries/tumblr_qhejmpjvzs1tkir8g.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cbbec5968689eda9058eb8516f4a6b0a85d8cc7 --- /dev/null +++ b/data/summaries/tumblr_qhejmpjvzs1tkir8g.txt @@ -0,0 +1 @@ +A news report reveals that a giant rat has been awarded a gold medal. \ No newline at end of file diff --git a/data/summaries/tumblr_qhhed200971r7eexa.txt b/data/summaries/tumblr_qhhed200971r7eexa.txt new file mode 100644 index 0000000000000000000000000000000000000000..9167975ab2848ad78b0a7da1547c76371417d0f7 --- /dev/null +++ b/data/summaries/tumblr_qhhed200971r7eexa.txt @@ -0,0 +1 @@ +Here is a summary of the video. The reviewer tries a Wigan kebab, which turns out to be a pie on a roll. He goes on to try a smack barm pey wet, which is batter, potato, salt and vinegar all on a roll with the water off the peas added. He compares them and likes the smack barm pey wet better due to the crunch. The reviewer then completes the local eating experience with steak pudding, chips and gravy. \ No newline at end of file diff --git a/data/summaries/tumblr_qhpiexdp451si01xj.txt b/data/summaries/tumblr_qhpiexdp451si01xj.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac13a46c2d79df7b288f7437e0bf047aa16f20ef --- /dev/null +++ b/data/summaries/tumblr_qhpiexdp451si01xj.txt @@ -0,0 +1 @@ +A split-screen video shows a teacher addressing her students during a virtual lesson. On the left, the teacher is holding up a sunshine symbol, and the right shows an adult acting as a child during the virtual lesson. The child has a distorted, exaggerated face and is eating foods while on screen. The teacher is holding up a sign explaining to mute the microphone when eating and the child actor continues eating on the screen and reacting comically. The video ends with the child actor coughing while eating. The video text reads “His Kindergarten teacher.” Beneath the child actor is the text, “Nobody: 6 year olds during virtual learning.” \ No newline at end of file diff --git a/data/summaries/tumblr_qja6r95k4b1qk3d2x.txt b/data/summaries/tumblr_qja6r95k4b1qk3d2x.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6594d94e2c3ede4d9637e97cc84694998111b7e --- /dev/null +++ b/data/summaries/tumblr_qja6r95k4b1qk3d2x.txt @@ -0,0 +1 @@ +Joe Biden is speaking at a Human Rights Campaign event. He states, "I'm gay." diff --git a/data/summaries/tumblr_qjkyxeikcy1seiyci.txt b/data/summaries/tumblr_qjkyxeikcy1seiyci.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e7eea511eb69c94c92f92ab73136ca7fa6757f --- /dev/null +++ b/data/summaries/tumblr_qjkyxeikcy1seiyci.txt @@ -0,0 +1 @@ +A pixelated video shows a white cat loafing on a shiny floor. The cat looks to the right, then to the left, and finally moves off-screen. \ No newline at end of file diff --git a/data/summaries/tumblr_qkbqlem9s91v7xdh6.txt b/data/summaries/tumblr_qkbqlem9s91v7xdh6.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fc622793d639f9ac5e420528654baba9ab47262 --- /dev/null +++ b/data/summaries/tumblr_qkbqlem9s91v7xdh6.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +A cartoon character is sitting at a desk looking angry. A window appears and Minecraft Steve appears in the window. The narrator says that Steve has turned the character's world into his and now he wants to kill him. \ No newline at end of file diff --git a/data/summaries/tumblr_qkbyhdlyji1ufotlr_720.txt b/data/summaries/tumblr_qkbyhdlyji1ufotlr_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6ec6795d23e4e0b5d44d7e198e35ac90b74b6f9 --- /dev/null +++ b/data/summaries/tumblr_qkbyhdlyji1ufotlr_720.txt @@ -0,0 +1 @@ +Here's a summary of the file: This video starts with a clip of Kamala Harris saying, "Mr. Vice President, I'm speaking." Then it cuts to a clip of her wearing a mask in an elevator and the audio changes to music with the lyrics "Stop being good, I'm a bad b-tch," and ends with a rooster that appears to be wearing pants and sneakers walking on the ground. \ No newline at end of file diff --git a/data/summaries/tumblr_qkh09zwfrf1ye9vv1.txt b/data/summaries/tumblr_qkh09zwfrf1ye9vv1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7d74ed0700c64ecd1c7142d80e9d4f05851b74c --- /dev/null +++ b/data/summaries/tumblr_qkh09zwfrf1ye9vv1.txt @@ -0,0 +1 @@ +In a TikTok video, a person dressed as the Monkey King from Chinese folklore makes a colorful flower-shaped cotton candy on a cotton candy machine. The person starts with a green center and then adds different colors around it to form the shape of a flower. Finally, the finished candy is shown and placed on a skewer for sale. \ No newline at end of file diff --git a/data/summaries/tumblr_ql6pf5bmme1qfgq3v.txt b/data/summaries/tumblr_ql6pf5bmme1qfgq3v.txt new file mode 100644 index 0000000000000000000000000000000000000000..5532e515808b05b226baa2091cc123263e74bb9a --- /dev/null +++ b/data/summaries/tumblr_ql6pf5bmme1qfgq3v.txt @@ -0,0 +1 @@ +A person wearing a baseball cap and a light purple sweatshirt attempts a windmill breakdancing move, but the momentum is not maintained, and they struggle through a few spins and then stop to stand up again. \ No newline at end of file diff --git a/data/summaries/tumblr_ql74jko7ug1vlete3.txt b/data/summaries/tumblr_ql74jko7ug1vlete3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e10013cbf2e84c2d90630f85cce8a6889c5026b --- /dev/null +++ b/data/summaries/tumblr_ql74jko7ug1vlete3.txt @@ -0,0 +1 @@ +A black cat, wearing an orange collar, is sitting on a dark colored stool in a kitchen. In front of the cat on the kitchen counter is a menorah with two blue candles burning. As the cat sits and watches the candle, it moves its paw to the side and licks it. The cat then sneezes before leaping off the stool. The video is titled "gizmo's first chanukah". \ No newline at end of file diff --git a/data/summaries/tumblr_qlpq08e0ek1yh1kk0.txt b/data/summaries/tumblr_qlpq08e0ek1yh1kk0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f28c6887dcb90559de0842dbb88ed21c6b94b037 --- /dev/null +++ b/data/summaries/tumblr_qlpq08e0ek1yh1kk0.txt @@ -0,0 +1 @@ +The TikTok video shows a young boy and a young man portraying soldiers facing a difficult situation. The boy is using a Nerf gun, while the man is in a wooded area, dressed in military gear, and with what appears to be fake blood on his face. They both sing along to a song, expressing a sense of urgency and solidarity. The caption "singing with my own voice" appears on the right side of the video. \ No newline at end of file diff --git a/data/summaries/tumblr_qlwrbnuzlp1xy51ep.txt b/data/summaries/tumblr_qlwrbnuzlp1xy51ep.txt new file mode 100644 index 0000000000000000000000000000000000000000..4140784b3742dc0b03542519d924e751aae92178 --- /dev/null +++ b/data/summaries/tumblr_qlwrbnuzlp1xy51ep.txt @@ -0,0 +1 @@ +A bee is seen on top of a yellow, squishy substance, presumably food. The bee is actively consuming the food and occasionally moves around. diff --git a/data/summaries/tumblr_qmn6ak2ujd1yih4m9.txt b/data/summaries/tumblr_qmn6ak2ujd1yih4m9.txt new file mode 100644 index 0000000000000000000000000000000000000000..5150efcb1d819eddd1e308f9d563deeece8e846c --- /dev/null +++ b/data/summaries/tumblr_qmn6ak2ujd1yih4m9.txt @@ -0,0 +1 @@ +Two people in kayaks are fishing in the ocean. One person hooks something on the line, and the rod bends. They are paddling in the water, and the speaker thinks it might be something big on the line. The other person says it is pulling them. diff --git a/data/summaries/tumblr_qnzo48p8ph1y54s2v.txt b/data/summaries/tumblr_qnzo48p8ph1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c7c5edaac6f028ade092659b1fa3220a6550e03 --- /dev/null +++ b/data/summaries/tumblr_qnzo48p8ph1y54s2v.txt @@ -0,0 +1,2 @@ +Here is a summary of the file: +This TikTok video created by @hannahjohnson927 features a young woman speaking as if she is Collette and speaking to Linguini from the Pixar movie “Ratatouille.” She is laying down in her bed and asks Linguini to be honest with her. Then she asks if the rat, Rémy, has been cooking during their sexual encounters and says it feels as though Rémy is using Linguini’s hair to “f*ck me.” \ No newline at end of file diff --git a/data/summaries/tumblr_qoj6tzy7a41vy91o2.txt b/data/summaries/tumblr_qoj6tzy7a41vy91o2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c3544ca515f51306f2bd428dd7f645fb8e90cbb --- /dev/null +++ b/data/summaries/tumblr_qoj6tzy7a41vy91o2.txt @@ -0,0 +1 @@ +A person sets toy cars off on a winding Hot Wheels track that runs throughout their house. The first toy car to start is blue, but when the camera switches to the end, the blue car is not present and there is only a hole in the wall. A voice in the background says "Barbara Streisand." \ No newline at end of file diff --git a/data/summaries/tumblr_qonn8rdhau1sxr884.txt b/data/summaries/tumblr_qonn8rdhau1sxr884.txt new file mode 100644 index 0000000000000000000000000000000000000000..88dd3e85276342dc93aa125f9f420d48a3339eea --- /dev/null +++ b/data/summaries/tumblr_qonn8rdhau1sxr884.txt @@ -0,0 +1 @@ +The TikTok video shows a person walking in deep snow. They take a step and sink into the snow, losing a shoe. They exclaim “Oh my shoe! No!” They proceed to pick up the shoe and put it back on. \ No newline at end of file diff --git a/data/summaries/tumblr_qosv2zcpws1v7xdh6.txt b/data/summaries/tumblr_qosv2zcpws1v7xdh6.txt new file mode 100644 index 0000000000000000000000000000000000000000..04b16a49da8e2400ec1c51e7af69630f18bb7338 --- /dev/null +++ b/data/summaries/tumblr_qosv2zcpws1v7xdh6.txt @@ -0,0 +1 @@ +A video shows a Spongebob balloon walking across the floor via a motorized wheel base. It walks from the center of a living room, passing a green balloon, then down a long hallway before the video ends. \ No newline at end of file diff --git a/data/summaries/tumblr_qp1bsjzuzh1yefkvd.txt b/data/summaries/tumblr_qp1bsjzuzh1yefkvd.txt new file mode 100644 index 0000000000000000000000000000000000000000..70b8467245fc9cecdbddc272561f23a96c87d6ce --- /dev/null +++ b/data/summaries/tumblr_qp1bsjzuzh1yefkvd.txt @@ -0,0 +1 @@ +The video shows a person in a car speaking as they are driven. The speaker describes the sensation of a male friend's hand on their thigh. The driver has a tattoo on their arm and is looking at their phone while the speaker talks. A paper label with the word "FORD" written on it is seen on the steering wheel. diff --git a/data/summaries/tumblr_qp4d3h43ul1txvytp.txt b/data/summaries/tumblr_qp4d3h43ul1txvytp.txt new file mode 100644 index 0000000000000000000000000000000000000000..33c14cf4a728cf3195880493eb0583cbfd123f71 --- /dev/null +++ b/data/summaries/tumblr_qp4d3h43ul1txvytp.txt @@ -0,0 +1 @@ +The clip shows an anime-style video titled "(HENTAI ASMR) Rough Yandere Boyfriend Sex Makes You Feel Good!" The video's audio features the repeated phrase "Come on," followed by sounds of a fight or attack. The uploader seems to be listening on their phone, which has a 9% battery charge and is connected to the T-Mobile network. \ No newline at end of file diff --git a/data/summaries/tumblr_qp6b0phqdw1qjnhqg.txt b/data/summaries/tumblr_qp6b0phqdw1qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..c499e722fa71ce0e589fc7ff8455158fec86aabb --- /dev/null +++ b/data/summaries/tumblr_qp6b0phqdw1qjnhqg.txt @@ -0,0 +1 @@ +A man is filming a pig that is laying on its back on a patch of grass. He jokes that it must have eaten too much corn, then walks to the pig to inspect. He asks if she is messed up and touches her belly, causing her to squeal and run away. She falls again a few moments later, which the man didn't intend to do. \ No newline at end of file diff --git a/data/summaries/tumblr_qp9z10frbx1xdvjtm.txt b/data/summaries/tumblr_qp9z10frbx1xdvjtm.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd6829a13c7875a22b779ffc4040a74f4aa260fd --- /dev/null +++ b/data/summaries/tumblr_qp9z10frbx1xdvjtm.txt @@ -0,0 +1 @@ +A red "Among Us" character with wings is flying around a playground that's been digitally rendered in shades of purple. The character is shot at with arrows, circled by a ring of fire, and is joined by another "Among Us" character with wings. \ No newline at end of file diff --git a/data/summaries/tumblr_qpaz42aljv1z6jfls.txt b/data/summaries/tumblr_qpaz42aljv1z6jfls.txt new file mode 100644 index 0000000000000000000000000000000000000000..75c8027ed4ef01c35039cdea1ced913c0a7dbab1 --- /dev/null +++ b/data/summaries/tumblr_qpaz42aljv1z6jfls.txt @@ -0,0 +1 @@ +The streamer Jerma plays a crafting-based video game. In the game, he is tasked with constructing a head-mounted display, presumably a VR headset, out of cardboard. He asks the audience what animal they think he would be if he were an animal, and reads out their answers, which include a rooster, and rat. The player responds that if he were an animal, he would be a "wolf, lion hybrid mix," and that this animal would be "king of the jungle, but still social and with it and ferocious." \ No newline at end of file diff --git a/data/summaries/tumblr_qpknh3uu3g1vtts30_720.txt b/data/summaries/tumblr_qpknh3uu3g1vtts30_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..01a9331145c59ef438cb95dec2d4512847d0f4a4 --- /dev/null +++ b/data/summaries/tumblr_qpknh3uu3g1vtts30_720.txt @@ -0,0 +1 @@ +A guard in the game "The Elder Scrolls IV: Oblivion" asks the player if they know where Armand Cristophe is hiding. The player falls over dead. Armand Cristophe then tells the player that he is hiding from the Imperial Watch. \ No newline at end of file diff --git a/data/summaries/tumblr_qplyg4lj6v1y686sz.txt b/data/summaries/tumblr_qplyg4lj6v1y686sz.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3144df8202b362eb952f0d623db3e46e75daf15 --- /dev/null +++ b/data/summaries/tumblr_qplyg4lj6v1y686sz.txt @@ -0,0 +1 @@ +A kangaroo strolls through the bar area of what appears to be a restaurant, while a person off-screen admonishes it for coming behind the bar. \ No newline at end of file diff --git a/data/summaries/tumblr_qpvqjgjcwk1y4p0x6.txt b/data/summaries/tumblr_qpvqjgjcwk1y4p0x6.txt new file mode 100644 index 0000000000000000000000000000000000000000..7765b2cc93197483bad38e785dccc21f2f256105 --- /dev/null +++ b/data/summaries/tumblr_qpvqjgjcwk1y4p0x6.txt @@ -0,0 +1 @@ +Here is a summary of the file: The video is a TikTok skit by annaredhair_, a woman standing under scaffolding, talking to the camera as though she were a piece of furniture left out for trash day. She suggests that she is a tresure and says ‘take me home’. \ No newline at end of file diff --git a/data/summaries/tumblr_qqagoslwdg1w8lequ.txt b/data/summaries/tumblr_qqagoslwdg1w8lequ.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b3c065d26d0a22361fe9e73939f7cf77ab0ea41 --- /dev/null +++ b/data/summaries/tumblr_qqagoslwdg1w8lequ.txt @@ -0,0 +1 @@ +Here's a summary of the TikTok video: A young man is shown speaking directly to the camera. He is wearing a black hoodie and has wavy, dark hair. He says that he is going to do his impression of the inventor of Gogurt when he has completed his prototype. The background is a wall covered with art. The man puts his hands together and chuckles. He then does an impression of the inventor of Gogurt, using a serious tone. Next, he takes a tube of Gogurt and squeezes it. He hears a cracking sound and calls it the sound of victory. \ No newline at end of file diff --git a/data/summaries/tumblr_qqcajl6u251y98erd_720.txt b/data/summaries/tumblr_qqcajl6u251y98erd_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..84a1cc6f377403441cd74c2413d8ec62edbdd2b7 --- /dev/null +++ b/data/summaries/tumblr_qqcajl6u251y98erd_720.txt @@ -0,0 +1 @@ +The video shows an aerial gymnast performing on a bar. The text overlayed says "Great Britain Be Like" and "Here Comes Prince Philip". The gymnastics seems to be a dark joke referencing his death. \ No newline at end of file diff --git a/data/summaries/tumblr_qqhn8gxsie1uvv5gh.txt b/data/summaries/tumblr_qqhn8gxsie1uvv5gh.txt new file mode 100644 index 0000000000000000000000000000000000000000..5813fb4c93f1a510d795dd380515271df46a4596 --- /dev/null +++ b/data/summaries/tumblr_qqhn8gxsie1uvv5gh.txt @@ -0,0 +1 @@ +A small black and white dog walks along a paved path near a park bench and light post. diff --git a/data/summaries/tumblr_qqindkfonu1z7ukda.txt b/data/summaries/tumblr_qqindkfonu1z7ukda.txt new file mode 100644 index 0000000000000000000000000000000000000000..152effecc43bbeda8bff058276fcab029c864cab --- /dev/null +++ b/data/summaries/tumblr_qqindkfonu1z7ukda.txt @@ -0,0 +1 @@ +A TikTok trend where users place the phone on a surface so the camera points up and the phone records the person moving in front of it. The text on the video says, "Lay your phone down and see what you look like on top," implying a sexual context. \ No newline at end of file diff --git a/data/summaries/tumblr_qqjd54wun41y4j5aa.txt b/data/summaries/tumblr_qqjd54wun41y4j5aa.txt new file mode 100644 index 0000000000000000000000000000000000000000..51bd6ed175815653b7df7e3d83e8df3622c8b7c2 --- /dev/null +++ b/data/summaries/tumblr_qqjd54wun41y4j5aa.txt @@ -0,0 +1,2 @@ +Here is a summary of the file: +In a car, a man offers to do a magic trick, promising that the other man can’t tell anyone about it. He says he’s going to snap his fingers and make him forget he was ever gay. The other man replies that he was never gay. \ No newline at end of file diff --git a/data/summaries/tumblr_qqrmdeymoe1szwlr0.txt b/data/summaries/tumblr_qqrmdeymoe1szwlr0.txt new file mode 100644 index 0000000000000000000000000000000000000000..61ff15e61f606ab7c4b5c4e7cf6e8882b8992009 --- /dev/null +++ b/data/summaries/tumblr_qqrmdeymoe1szwlr0.txt @@ -0,0 +1 @@ +A person in a blue athletic shirt is lifting weights in a gym, while the overlaying text conveys how listening to gym music without headphones is not preferable. There is a person using a stationary bike and several treadmills in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_qqv8e4v2p81uncty6.txt b/data/summaries/tumblr_qqv8e4v2p81uncty6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0e41ebc94ef95e61fcacd7176592968e5654796 --- /dev/null +++ b/data/summaries/tumblr_qqv8e4v2p81uncty6.txt @@ -0,0 +1 @@ +A man presents the steak meal he is having on Monday brunch. On a whiteboard, he tallies the frequency of the words "fuck", "baby", "steak" and "yeah". \ No newline at end of file diff --git a/data/summaries/tumblr_qrcocvqoew1z67npc.txt b/data/summaries/tumblr_qrcocvqoew1z67npc.txt new file mode 100644 index 0000000000000000000000000000000000000000..72bf194ea6559330b3717505279e4a8205341820 --- /dev/null +++ b/data/summaries/tumblr_qrcocvqoew1z67npc.txt @@ -0,0 +1 @@ +A person in the back seat of a car seems amused by a conversation taking place between the people in the front seats. The driver asks whether the character SpongeBob is sometimes called "Bob," and is corrected that the character's full name is "SpongeBob SquarePants." \ No newline at end of file diff --git a/data/summaries/tumblr_qrg3v2rkuw1xgom7z.txt b/data/summaries/tumblr_qrg3v2rkuw1xgom7z.txt new file mode 100644 index 0000000000000000000000000000000000000000..1aff5d923d5f18c6278870837be91288542be952 --- /dev/null +++ b/data/summaries/tumblr_qrg3v2rkuw1xgom7z.txt @@ -0,0 +1 @@ +A seal bites someone's hand and then goes into the water. It then lays on a white surface with another seal. The seals nuzzle noses. \ No newline at end of file diff --git a/data/summaries/tumblr_qro23kandl1y8aven.txt b/data/summaries/tumblr_qro23kandl1y8aven.txt new file mode 100644 index 0000000000000000000000000000000000000000..a27b2f9243ece34cd1a316fb0b30fe775e6382a8 --- /dev/null +++ b/data/summaries/tumblr_qro23kandl1y8aven.txt @@ -0,0 +1 @@ +A man walking with his phone trips on a tennis ball. The ball flies up and bounces around the room, knocking some things over. At the end of the video, the man is lying on the floor and gets doused with a lot of water. The last scene of the video is an Islamic leader being asked, “What happens if you accidentally break your fast?” The speaker answers, “Today I accidentally fell and a shawarma fell in my mouth with some extra Tahini. Also a piece of apple and around 3 liters of water. Should I keep fasting? Or was it Allah Who has fed me?” \ No newline at end of file diff --git a/data/summaries/tumblr_qrzs8alir01ylx4u7.txt b/data/summaries/tumblr_qrzs8alir01ylx4u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b42eb32b15b727301caf34343df7db7d839dd525 --- /dev/null +++ b/data/summaries/tumblr_qrzs8alir01ylx4u7.txt @@ -0,0 +1 @@ +The video shows an advertisement that wouldn't be acceptable today. The advertisement is for Walmart, and it features a boy who throws a tennis ball against the wall. The text on the screen says, "Helps me forget about my cancer." The video ends with the Walmart logo and the slogan "Always low prices. Always." \ No newline at end of file diff --git a/data/summaries/tumblr_qscntczstr1rgaeps.txt b/data/summaries/tumblr_qscntczstr1rgaeps.txt new file mode 100644 index 0000000000000000000000000000000000000000..881ce7f7d036d10135cbd3ccc55ad1eb8f853835 --- /dev/null +++ b/data/summaries/tumblr_qscntczstr1rgaeps.txt @@ -0,0 +1 @@ +A man in a yellow suit, hat, and glasses, with a painted-on goatee and wearing dollar sign jewelry dances in various locations and eventually greets another man. \ No newline at end of file diff --git a/data/summaries/tumblr_qsi9yjrvyv1unz71b.txt b/data/summaries/tumblr_qsi9yjrvyv1unz71b.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb7c8e5bbec288d6c3009ef91ecb12c0824028dd --- /dev/null +++ b/data/summaries/tumblr_qsi9yjrvyv1unz71b.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +This is a short, comic video clip that shows a man sitting in a car enthusiastically introducing milk tea as his new favorite thing. He then orders more, and proceeds to put a straw through the lid, but when he takes a sip, a lot of the tea flies out of the cup and onto his face and the inside of the car. He is visibly frustrated by the mess. diff --git a/data/summaries/tumblr_qsxd9ta7mx1z9rw1w_720.txt b/data/summaries/tumblr_qsxd9ta7mx1z9rw1w_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f93d56eebc6116dd55d3afd8bebc58024aa38e9 --- /dev/null +++ b/data/summaries/tumblr_qsxd9ta7mx1z9rw1w_720.txt @@ -0,0 +1 @@ +The video shows a man looking directly at the camera with a mischievous grin. His eyes are wide and he is smiling broadly. He is wearing a white shirt and has an earbud in his ear. There is a plant in the background. He then says the word "sex" in a silly voice. \ No newline at end of file diff --git a/data/summaries/tumblr_qszbamec4n1u9ealm.txt b/data/summaries/tumblr_qszbamec4n1u9ealm.txt new file mode 100644 index 0000000000000000000000000000000000000000..f00dd71f0b8a6249f35dd5513c3402aa8500e0ff --- /dev/null +++ b/data/summaries/tumblr_qszbamec4n1u9ealm.txt @@ -0,0 +1 @@ +This TikTok video shows a woman explaining that if she texts the letters "h e h e," it's not "hehe," but rather the singular, contagious laugh of Paulie Walnuts (Tony Sirico) from the television show, The Sopranos. The rest of the video then features a montage of clips from the show, each highlighting Paulie's distinctive laugh. \ No newline at end of file diff --git a/data/summaries/tumblr_qszhjhtzmz1xlxjza.txt b/data/summaries/tumblr_qszhjhtzmz1xlxjza.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a7bd50898fbe97372e4ac487380f159402b8fba --- /dev/null +++ b/data/summaries/tumblr_qszhjhtzmz1xlxjza.txt @@ -0,0 +1 @@ +Here's a summary of the file: This TikTok post shows a split-screen duet featuring two men rapping vulgar lyrics. The creator of the post is challenging others to bring their best bars and questioning why the content gets taken down. \ No newline at end of file diff --git a/data/summaries/tumblr_qt0izosczf1wsdsxa.txt b/data/summaries/tumblr_qt0izosczf1wsdsxa.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf89af57c809a51d784f4882bd0b186d087a6056 --- /dev/null +++ b/data/summaries/tumblr_qt0izosczf1wsdsxa.txt @@ -0,0 +1 @@ +A grey tabby cat, sitting on a white surface near chopsticks and a container, suddenly jumps, startled by a sound. diff --git a/data/summaries/tumblr_qtdpbopcpq1yjz13y.txt b/data/summaries/tumblr_qtdpbopcpq1yjz13y.txt new file mode 100644 index 0000000000000000000000000000000000000000..01af9d7ed486e920c55beff976ffe8e558218f52 --- /dev/null +++ b/data/summaries/tumblr_qtdpbopcpq1yjz13y.txt @@ -0,0 +1 @@ +The video shows a "Battle of Tomato Town", with artillery loading and firing, and planes engaged in aerial combat. One is shot down and exploding in mid-air. The pilots are shown in the cockpit, and the planes are shown crashing into the sky. \ No newline at end of file diff --git a/data/summaries/tumblr_qtl3jqnool1z3d1y0.txt b/data/summaries/tumblr_qtl3jqnool1z3d1y0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ba9c4e2335583bfa65d2ae6815e607a96acba0b --- /dev/null +++ b/data/summaries/tumblr_qtl3jqnool1z3d1y0.txt @@ -0,0 +1 @@ +The file appears to be a screenshot of an application or website that synthesizes speech. It contains a text box with potentially offensive content, a button labeled "Synthesize", and a media player with the synthesized audio. The audio contains sexually explicit and inappropriate content. \ No newline at end of file diff --git a/data/summaries/tumblr_qtsjfgfsw01z4xvoq.txt b/data/summaries/tumblr_qtsjfgfsw01z4xvoq.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bd76ef15e3096bfbdfbd488d89e6b8148aca575 --- /dev/null +++ b/data/summaries/tumblr_qtsjfgfsw01z4xvoq.txt @@ -0,0 +1 @@ +Two young men act out the various stages and thoughts associated with being awake at 2am with your best friend. \ No newline at end of file diff --git a/data/summaries/tumblr_qtvlvhqh0v1y4l641.txt b/data/summaries/tumblr_qtvlvhqh0v1y4l641.txt new file mode 100644 index 0000000000000000000000000000000000000000..dac0af603bc1916c5368c6da3abeb02c811067e7 --- /dev/null +++ b/data/summaries/tumblr_qtvlvhqh0v1y4l641.txt @@ -0,0 +1 @@ +Leon from Resident Evil is shown holding a giant Gatling Gun. He appears to be holding a man who wears sunglasses, a cap, and a jacket and who drinks a bottle of soda. The video includes music. diff --git a/data/summaries/tumblr_qu1hnd3wjw1ym1g8h1.txt b/data/summaries/tumblr_qu1hnd3wjw1ym1g8h1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bccbf9df0470ee6924905aa045bd3ca59969a3ad --- /dev/null +++ b/data/summaries/tumblr_qu1hnd3wjw1ym1g8h1.txt @@ -0,0 +1 @@ +The video opens with a close-up of a horse's stirrup secured to a wooden beam. The video moves to show the horse standing in a dirt field near some bushes. The person who is filming is yelling at the horse, who has been eating the dog food and chick feed. The video ends with the horse standing still in the field with another horse. The TikTok username is @blkgcowgirl88. \ No newline at end of file diff --git a/data/summaries/tumblr_qu706smvbx1x4pmbc.txt b/data/summaries/tumblr_qu706smvbx1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ced8a8c7613380ed5a260e8e668d4e1218914bf --- /dev/null +++ b/data/summaries/tumblr_qu706smvbx1x4pmbc.txt @@ -0,0 +1 @@ +The Tiktok video captures a man standing on a dirt road in dense fog. The man humorously expresses his fear of something coming out of the fog and messing with him. He says this just as a group of people starts emerging from the fog in the distance. \ No newline at end of file diff --git a/data/summaries/tumblr_queragdb3u1xlgs6y.txt b/data/summaries/tumblr_queragdb3u1xlgs6y.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc20311d32ea41b5513c59d14dfc13e03e0b250e --- /dev/null +++ b/data/summaries/tumblr_queragdb3u1xlgs6y.txt @@ -0,0 +1 @@ +The video opens on a foggy window, then someone opens the door to reveal a group of seals lounging on the grass. One of the seals, close to the camera, stands up and barks. \ No newline at end of file diff --git a/data/summaries/tumblr_quinyhcict1x2sb3u.txt b/data/summaries/tumblr_quinyhcict1x2sb3u.txt new file mode 100644 index 0000000000000000000000000000000000000000..159aaeaa51d9c9a89b6feede5d9c600f0adb63a0 --- /dev/null +++ b/data/summaries/tumblr_quinyhcict1x2sb3u.txt @@ -0,0 +1 @@ +A 3D animation shows a digital hedgehog moving to music on a wooden floor against a night sky backdrop. The hedgehog performs dance moves and displays a variety of objects, including a potato cake in a McDonald's bag, an item resembling a knife or spatula, and a lit cigarette. The word "McEogyu" is visible on the McDonald's bag. A chat window with usernames and messages is also visible in the top left of the frame. \ No newline at end of file diff --git a/data/summaries/tumblr_quwhk8yifs1qaekxx.txt b/data/summaries/tumblr_quwhk8yifs1qaekxx.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a8f6bd478e5407ced78deb8df96bfa57c0227b --- /dev/null +++ b/data/summaries/tumblr_quwhk8yifs1qaekxx.txt @@ -0,0 +1 @@ +The man in the video does an impersonation of Joe Biden telling a story about his childhood. He claims he was a little boy in 1901, and rode a snail to deliver newspapers. He adds that he had a friend that was an ant.  \ No newline at end of file diff --git a/data/summaries/tumblr_quy0yyojr41sglkei_720.txt b/data/summaries/tumblr_quy0yyojr41sglkei_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..a381e5db4e960e8efea74654d27a0abac4953a88 --- /dev/null +++ b/data/summaries/tumblr_quy0yyojr41sglkei_720.txt @@ -0,0 +1 @@ +This is a video of a gray and white spotted seal with big eyes. The seal is lying on a blue surface, and a person is speaking to it in Japanese, saying it is "cute". The seal yawns and then does a "high five". \ No newline at end of file diff --git a/data/summaries/tumblr_qvq1bbmhsl1qep3h6.txt b/data/summaries/tumblr_qvq1bbmhsl1qep3h6.txt new file mode 100644 index 0000000000000000000000000000000000000000..43c649faf4c81bae5cae20d06a0ec540f74bd360 --- /dev/null +++ b/data/summaries/tumblr_qvq1bbmhsl1qep3h6.txt @@ -0,0 +1 @@ +The Minecraft player jumps from a tree onto the roof of a building and immediately catches on fire. They repeatedly yell while engulfed in flames. \ No newline at end of file diff --git a/data/summaries/tumblr_qwgrvao5nf1z69592.txt b/data/summaries/tumblr_qwgrvao5nf1z69592.txt new file mode 100644 index 0000000000000000000000000000000000000000..635a2fa4c4d5b7895752ab6348b9222cb9c31c52 --- /dev/null +++ b/data/summaries/tumblr_qwgrvao5nf1z69592.txt @@ -0,0 +1 @@ +A group of people are sitting at a table, playing a party game where the prompt is to use a random object to either demonstrate how to give a blow job, or finish their drink. One of the players decides to put on a white face mask. \ No newline at end of file diff --git a/data/summaries/tumblr_qwnimc0kmq1v43hvg.txt b/data/summaries/tumblr_qwnimc0kmq1v43hvg.txt new file mode 100644 index 0000000000000000000000000000000000000000..167f6109e9f3978740ab5a7e7da33722e0e3d4fb --- /dev/null +++ b/data/summaries/tumblr_qwnimc0kmq1v43hvg.txt @@ -0,0 +1 @@ +A young child presses his face and hands onto a large metal pin screen. A visible face impression remains on the screen. diff --git a/data/summaries/tumblr_qwrawtnod91ye9vv1.txt b/data/summaries/tumblr_qwrawtnod91ye9vv1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a6c71755ca50a0299c71719630dc27aaef903ca --- /dev/null +++ b/data/summaries/tumblr_qwrawtnod91ye9vv1.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +This TikTok video by @frobat shows a shower head being repeatedly dropped into a bathtub and hitting items on the shelf. The speaker says "1000 paps" and "niam, niam, niam." \ No newline at end of file diff --git a/data/summaries/tumblr_qx0uqjbzlk1z5lzrl.txt b/data/summaries/tumblr_qx0uqjbzlk1z5lzrl.txt new file mode 100644 index 0000000000000000000000000000000000000000..9858518257c1547fc0f7d4b7876d94b72272724b --- /dev/null +++ b/data/summaries/tumblr_qx0uqjbzlk1z5lzrl.txt @@ -0,0 +1 @@ +The video shows a bald security guard with a face mask sitting in front of self-checkout stations in what appears to be a supermarket. A superimposed image of 2B from the video game NieR: Automata is later added on top of the guard's face. \ No newline at end of file diff --git a/data/summaries/tumblr_qx6ws0dqmg1rq84xg.txt b/data/summaries/tumblr_qx6ws0dqmg1rq84xg.txt new file mode 100644 index 0000000000000000000000000000000000000000..54c8a7fde6e3da923fc97670e47ea95d1fc5c60f --- /dev/null +++ b/data/summaries/tumblr_qx6ws0dqmg1rq84xg.txt @@ -0,0 +1 @@ +A TikTok video titled "Green Goblin" shows four men singing together in a multi-split screen. One man is in the bottom left square, one man is in the middle top square and two men are in the top right square. The man in the bottom left square says, “You’re too late Spiderman, weed has already been legalized." \ No newline at end of file diff --git a/data/summaries/tumblr_qxec9uc20w1qjnhqg1.txt b/data/summaries/tumblr_qxec9uc20w1qjnhqg1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bafdfe2b348d0031e71e8cd590d13949cea25b9e --- /dev/null +++ b/data/summaries/tumblr_qxec9uc20w1qjnhqg1.txt @@ -0,0 +1 @@ +The video shows a man sneezing and coughing after presumably putting a ghost pepper in his lunch to figure out which colleague has been stealing it. He looks up after each fit of sneezing, presumably to see who reacts to the hot pepper.  \ No newline at end of file diff --git a/data/summaries/tumblr_qxtolnq9ow1x6rok9.txt b/data/summaries/tumblr_qxtolnq9ow1x6rok9.txt new file mode 100644 index 0000000000000000000000000000000000000000..5822e78924d9a385fc6fc6c0e556854eb0492d13 --- /dev/null +++ b/data/summaries/tumblr_qxtolnq9ow1x6rok9.txt @@ -0,0 +1 @@ +At a train station called Broadway Junction, one man points out another to his friend and declares that that man is with his girlfriend. The friend is then seen running across the tracks toward the couple, before the film cuts to a kid in a Chucky costume holding a knife. \ No newline at end of file diff --git a/data/summaries/tumblr_qxws4eigy11ylx4u7.txt b/data/summaries/tumblr_qxws4eigy11ylx4u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0f7b8044503c052ed50b08418dc000c5d7f0c00 --- /dev/null +++ b/data/summaries/tumblr_qxws4eigy11ylx4u7.txt @@ -0,0 +1 @@ +A man performs a dance routine where he pretends he is being ridden like a horse. He wears a leash around his neck and the person riding him is also the same man, but in a kimono. The video ends with a still image of a painting showing a headless humanoid being ridden by a girl, holding a leash connected to the humanoid. The video is a TikTok by chrissunk. \ No newline at end of file diff --git a/data/summaries/tumblr_qxx02cvthu1rnx060.txt b/data/summaries/tumblr_qxx02cvthu1rnx060.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dd81ee0f54d14cf7686723086344818fd340458 --- /dev/null +++ b/data/summaries/tumblr_qxx02cvthu1rnx060.txt @@ -0,0 +1 @@ +A person films a cat, who is playing on a curtain rod. The cat does acrobatics, hanging by its paws and writhing around. The person filming says that they don’t think the cat has a brain and exclaims as the cat appears to be about to fall, saying “Oh God, No!”, then asks another person to “get her down”, explaining that they can’t take it anymore. \ No newline at end of file diff --git a/data/summaries/tumblr_qy9emglwqv1x4pmbc.txt b/data/summaries/tumblr_qy9emglwqv1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca2b7f89272b6389d947c3074c591bb8348ab296 --- /dev/null +++ b/data/summaries/tumblr_qy9emglwqv1x4pmbc.txt @@ -0,0 +1 @@ +A woman holds a small, bearded dog that repeatedly growls. A Tik Tok logo is visible in the lower left and right-hand corners. \ No newline at end of file diff --git a/data/summaries/tumblr_qyhb34fmnb1qzeo2z.txt b/data/summaries/tumblr_qyhb34fmnb1qzeo2z.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaa00e0d1e7854d0f8bd2ef34b246a054c95d484 --- /dev/null +++ b/data/summaries/tumblr_qyhb34fmnb1qzeo2z.txt @@ -0,0 +1 @@ +President Biden appears to be deeply moved, possibly crying, while at a podium in front of an American flag. There is mournful harmonica music playing. \ No newline at end of file diff --git a/data/summaries/tumblr_qymo64d5p01vym9pt.txt b/data/summaries/tumblr_qymo64d5p01vym9pt.txt new file mode 100644 index 0000000000000000000000000000000000000000..71403ecc99cb1cc9b117c130e0b2795a37f1c658 --- /dev/null +++ b/data/summaries/tumblr_qymo64d5p01vym9pt.txt @@ -0,0 +1 @@ +The man in the video is standing in a ruined warehouse. He is wearing a robe or long coat. He says, "We could rebuild, enlarge the containment field, make it with." \ No newline at end of file diff --git a/data/summaries/tumblr_qyrichecbc1vij12m.txt b/data/summaries/tumblr_qyrichecbc1vij12m.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd88187131ed7289ebbabae4269187af4a515b5f --- /dev/null +++ b/data/summaries/tumblr_qyrichecbc1vij12m.txt @@ -0,0 +1 @@ +A person stands on a tiled floor and a cat jumps onto their leg and holds on, as a dramatic, suspenseful musical sting plays. \ No newline at end of file diff --git a/data/summaries/tumblr_qyrkryjovb1x4pmbc.txt b/data/summaries/tumblr_qyrkryjovb1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cc3f1c4031c5140bc7af8bc4ce3383b8a6466de --- /dev/null +++ b/data/summaries/tumblr_qyrkryjovb1x4pmbc.txt @@ -0,0 +1 @@ +A person with blonde hair is crying while holding their face and looks up and sees a white plastic skeleton hand and makes sounds like “eh eh eh”. The video is a TikTok video and has text on top that reads “POV: your crying but your boyfriend sans comforts you”. \ No newline at end of file diff --git a/data/summaries/tumblr_qysc55isxe1z7ukda.txt b/data/summaries/tumblr_qysc55isxe1z7ukda.txt new file mode 100644 index 0000000000000000000000000000000000000000..22fcc1e49b10cb4be1e4186d6ce624ece4f15b27 --- /dev/null +++ b/data/summaries/tumblr_qysc55isxe1z7ukda.txt @@ -0,0 +1 @@ +Dice with clear resin are made by a crafter. The first step is to add colored glitter resin, and then small pinecones, to the dice molds. After that dries, a second layer of resin is added, along with gold leaf pieces and blank number inserts for the faces of the dice. The dice molds used in the video are teal colored. \ No newline at end of file diff --git a/data/summaries/tumblr_qytlknq5wk1r0uzl6.txt b/data/summaries/tumblr_qytlknq5wk1r0uzl6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9088d9c5b36910c9ab9110fb1520a110639d19e3 --- /dev/null +++ b/data/summaries/tumblr_qytlknq5wk1r0uzl6.txt @@ -0,0 +1 @@ +A large wind turbine blade is transported through a narrow mountainous road causing a traffic jam. Horns are heard blaring as the blade is angled to avoid hitting the passing cars. \ No newline at end of file diff --git a/data/summaries/tumblr_qyvyikvzve1xpm6vs.txt b/data/summaries/tumblr_qyvyikvzve1xpm6vs.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e7026b55110545fa7a892ec4849cc827e569066 --- /dev/null +++ b/data/summaries/tumblr_qyvyikvzve1xpm6vs.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +In a TikTok video by @haley.gobeaux, a person sits on a chair and shows a pair of ripped jeans. In another scene, a group of young men are in a kitchen. One of the young men is shirtless and is wearing a Nike lanyard. In a challenge, one of the men eats spaghetti from a pot and tries to eat half of it. \ No newline at end of file diff --git a/data/summaries/tumblr_qz7mzrb5zz1y54s2v.txt b/data/summaries/tumblr_qz7mzrb5zz1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a985ed28f459b2d6d3e761a515978c10a0cd1e --- /dev/null +++ b/data/summaries/tumblr_qz7mzrb5zz1y54s2v.txt @@ -0,0 +1 @@ +A man gives an Airbnb review. He shows the bed, the bathroom, and the head space in the bathroom. The final rating is given in the caption of the video, after he sticks his head out of the window on the roof. \ No newline at end of file diff --git a/data/summaries/tumblr_r02uimoygh1r79r4w.txt b/data/summaries/tumblr_r02uimoygh1r79r4w.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0fa9d9497c7f0e8e37352da99c48a2a153deae2 --- /dev/null +++ b/data/summaries/tumblr_r02uimoygh1r79r4w.txt @@ -0,0 +1 @@ +A gorilla in a zoo enclosure is seen splashing around in a pool of water. The gorilla is playing with the water, making splashing motions with its hands. \ No newline at end of file diff --git a/data/summaries/tumblr_r03ke82nhh1xdi286.txt b/data/summaries/tumblr_r03ke82nhh1xdi286.txt new file mode 100644 index 0000000000000000000000000000000000000000..8745e31898d8cdcae3281a8344b2fa27f3f3fc24 --- /dev/null +++ b/data/summaries/tumblr_r03ke82nhh1xdi286.txt @@ -0,0 +1 @@ +On a beach, a gray seal looks at the camera as a woman and man discuss the animal and whether it would bite. As the seal stays still, the man gently pets the animal. \ No newline at end of file diff --git a/data/summaries/tumblr_r08gwi4m881z4dj7t.txt b/data/summaries/tumblr_r08gwi4m881z4dj7t.txt new file mode 100644 index 0000000000000000000000000000000000000000..64e6de8468fc0f57ed82383044bafea99beb20f2 --- /dev/null +++ b/data/summaries/tumblr_r08gwi4m881z4dj7t.txt @@ -0,0 +1 @@ +Wendy Williams is sitting on a pink tufted chair discussing the state of her life. She asks, "Life could be worse?" And then says, "No, not really. This is the worst." A man wearing a headset and microphone, off set, agrees, saying, "This is the worst." Wendy replies, "This is the worst." \ No newline at end of file diff --git a/data/summaries/tumblr_r0bl35fudy1vjakdo.txt b/data/summaries/tumblr_r0bl35fudy1vjakdo.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7a47d6d46906a56104a2ad22944874d79037d17 --- /dev/null +++ b/data/summaries/tumblr_r0bl35fudy1vjakdo.txt @@ -0,0 +1 @@ +Driving in a car next to a tow truck carrying the Batmobile, the filmer points out the vehicle. They then see that the truck driver is wearing a Joker costume and laughing. \ No newline at end of file diff --git a/data/summaries/tumblr_r0s19qdfls1ujkkfn.txt b/data/summaries/tumblr_r0s19qdfls1ujkkfn.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4b8c1931467de81c5794e3ef861198d287f3086 --- /dev/null +++ b/data/summaries/tumblr_r0s19qdfls1ujkkfn.txt @@ -0,0 +1 @@ +The video starts with a close-up of a computer screen displaying the user-defined tags for a product, which are "Casual," "Dating Sim," "Cute," "Relaxing," and "Education." The camera zooms out to reveal the full screen, which is a Steam page for the video game "Dark Souls™: Remastered". The page shows the game's title, cover art, description, reviews, and other information. The user-defined tags are listed at the bottom of the page. \ No newline at end of file diff --git a/data/summaries/tumblr_r0syz8uvwb1y54s2v.txt b/data/summaries/tumblr_r0syz8uvwb1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..46457fdac6329146c251ac7aebefc92efee9562f --- /dev/null +++ b/data/summaries/tumblr_r0syz8uvwb1y54s2v.txt @@ -0,0 +1 @@ +A person opens a fortune cookie. It reads “Only your expectations can slow you down.” Then the person zooms in on their dog’s face, including its eye and nose. \ No newline at end of file diff --git a/data/summaries/tumblr_r0zdlts1ga1vmobp0.txt b/data/summaries/tumblr_r0zdlts1ga1vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3f139ca9ca55544856f893864c33ede2a55dd11 --- /dev/null +++ b/data/summaries/tumblr_r0zdlts1ga1vmobp0.txt @@ -0,0 +1 @@ +Kiki the cat is seen looking derpy, then is shown in multiple clips sitting among packing peanuts of various colors. \ No newline at end of file diff --git a/data/summaries/tumblr_r11xbhdvuy1ywzg15.txt b/data/summaries/tumblr_r11xbhdvuy1ywzg15.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0797a24a6061377fe711fa62f257febaf002df6 --- /dev/null +++ b/data/summaries/tumblr_r11xbhdvuy1ywzg15.txt @@ -0,0 +1 @@ +A woman lies back in a salon sink. She says, "I'm thirsty" and her stylist turns the faucet on above her mouth. Water pours into the woman's face and she laughs and screams as it splashes over her face. The video has a TikTok watermark. \ No newline at end of file diff --git a/data/summaries/tumblr_r13hdlly961z8fjg1.txt b/data/summaries/tumblr_r13hdlly961z8fjg1.txt new file mode 100644 index 0000000000000000000000000000000000000000..211402790137c905bd947bf8588f53fee75339df --- /dev/null +++ b/data/summaries/tumblr_r13hdlly961z8fjg1.txt @@ -0,0 +1 @@ +A young man wearing a Metallica shirt performs a satirical skit on a TikTok video, mocking the portrayal of mental illness and insane asylums in media. He emphasizes stereotypical behaviors and threats, using exaggerated gestures and expressions. \ No newline at end of file diff --git a/data/summaries/tumblr_r16fx4bvm51t4f51m1.txt b/data/summaries/tumblr_r16fx4bvm51t4f51m1.txt new file mode 100644 index 0000000000000000000000000000000000000000..71d62ab1d5cf783a0f1fb1f8ff8dc02d67b4d8d3 --- /dev/null +++ b/data/summaries/tumblr_r16fx4bvm51t4f51m1.txt @@ -0,0 +1 @@ +Someone shoots at a chandelier, causing it to explode. The shot cuts to a man lying on a bed while wearing a night cap. A graphic overlay then appears showing a sheep and a white picket fence. The words, “A MIMIR,” appear below. \ No newline at end of file diff --git a/data/summaries/tumblr_r17uu7xcjk1uy8v6v.txt b/data/summaries/tumblr_r17uu7xcjk1uy8v6v.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3eed4003ee297d55babcc2049c0157407973035 --- /dev/null +++ b/data/summaries/tumblr_r17uu7xcjk1uy8v6v.txt @@ -0,0 +1 @@ +A still image shows an animated woman lying in a hospital bed, crying. A buff, cartoon man is standing behind her, wearing a red tank top, sunglasses, and smoking a cigar. Text above the woman reads, "WHAT DO YOU MEAN YOU LOST THE BABY?" Below the man and woman, the text reads, "GO FIND IT." \ No newline at end of file diff --git a/data/summaries/tumblr_r18u24ndcu1vmobp0_720.txt b/data/summaries/tumblr_r18u24ndcu1vmobp0_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dcc66b6fdebd6e3c50162dc2b16992baea9eb8d --- /dev/null +++ b/data/summaries/tumblr_r18u24ndcu1vmobp0_720.txt @@ -0,0 +1 @@ +A playful black cat is inside a colorful geometric dome structure made of sticks and connectors. The cat bats at the sticks, then is seen running around the room with the entire dome structure stuck on its body like a colorful, spiky ball. Another cat watches nearby. diff --git a/data/summaries/tumblr_r1iit3moox1u0fuse.txt b/data/summaries/tumblr_r1iit3moox1u0fuse.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1f6738e3063bca95ee551cf3b1f1ac581fda763 --- /dev/null +++ b/data/summaries/tumblr_r1iit3moox1u0fuse.txt @@ -0,0 +1 @@ +The content creator, @francis.bourgeois, is staying up late in Brighton to watch a test train come into the station. He gets excited seeing GB Railfreight’s 73962 “Dick Mabbutt,” and GB Railfreight's 73965. He is excited and proclaims that it has been a treat to have stayed up late and seen the train. \ No newline at end of file diff --git a/data/summaries/tumblr_r1lizwpi7y1vij12m.txt b/data/summaries/tumblr_r1lizwpi7y1vij12m.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8bd47b49a50e7ca842272412d3ec3f322d34cec --- /dev/null +++ b/data/summaries/tumblr_r1lizwpi7y1vij12m.txt @@ -0,0 +1 @@ +The video shows a man with long, wavy hair and a mustache wearing a red and white baseball cap. Behind him is a shelf with a black cat on it. The man makes a clicking noise and the cat begins to crawl on the shelf. \ No newline at end of file diff --git a/data/summaries/tumblr_r1uozsdz981z5lzrl.txt b/data/summaries/tumblr_r1uozsdz981z5lzrl.txt new file mode 100644 index 0000000000000000000000000000000000000000..572927f242f4bf33849deca1f447791608763389 --- /dev/null +++ b/data/summaries/tumblr_r1uozsdz981z5lzrl.txt @@ -0,0 +1 @@ +A man is holding a small mouse or similar rodent. An animated man with a mustache looks alarmed. \ No newline at end of file diff --git a/data/summaries/tumblr_r25y6pxxck1xddfa0.txt b/data/summaries/tumblr_r25y6pxxck1xddfa0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3621b6ee1fc67b509ee486c056b05ebf40b6f47 --- /dev/null +++ b/data/summaries/tumblr_r25y6pxxck1xddfa0.txt @@ -0,0 +1 @@ +A white dog appears to react fearfully after hearing someone scream from the television. The dog appears to run away from the scream. \ No newline at end of file diff --git a/data/summaries/tumblr_r28lad2qzj1v43hvg.txt b/data/summaries/tumblr_r28lad2qzj1v43hvg.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff2d075a002da73eedf6e8f8779c55d1eab5aa24 --- /dev/null +++ b/data/summaries/tumblr_r28lad2qzj1v43hvg.txt @@ -0,0 +1 @@ +A crowd dances at a club, illuminated by strobe lights. Someone in the crowd holds up their phone, displaying the flag of the United Kingdom and then a rainbow flag. \ No newline at end of file diff --git a/data/summaries/tumblr_r29qa1zylk1y4klfl.txt b/data/summaries/tumblr_r29qa1zylk1y4klfl.txt new file mode 100644 index 0000000000000000000000000000000000000000..53b2bfa2261593dd73ff795e95d09c2605224e5f --- /dev/null +++ b/data/summaries/tumblr_r29qa1zylk1y4klfl.txt @@ -0,0 +1 @@ +The player in Animal Crossing is ordering two coffees from Brewster. The character is asked if they are ordering together, and the player says "Yes". \ No newline at end of file diff --git a/data/summaries/tumblr_r2bh6neakf1s52b0v.txt b/data/summaries/tumblr_r2bh6neakf1s52b0v.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c538e2089af1c5eceb2173f17b547e514d8d525 --- /dev/null +++ b/data/summaries/tumblr_r2bh6neakf1s52b0v.txt @@ -0,0 +1 @@ +A woman on a train addresses a livestream while an automated voice announces “Attention bald white man in the back this is for you. Bald white man. Bald white man. Bald white man.”, and the woman remarks that it's rude. At 0:23 she starts playing animal noises over her speaker. \ No newline at end of file diff --git a/data/summaries/tumblr_r2dbccnznq1r0uzl6.txt b/data/summaries/tumblr_r2dbccnznq1r0uzl6.txt new file mode 100644 index 0000000000000000000000000000000000000000..96c92c2a0e429fa2443481606656d856e5b260a5 --- /dev/null +++ b/data/summaries/tumblr_r2dbccnznq1r0uzl6.txt @@ -0,0 +1 @@ +The video shows a 3D-printed HDMI to hose adapter being used to connect a laptop to a water hose. Water then sprays out of the laptop screen when the water hose is turned on. \ No newline at end of file diff --git a/data/summaries/tumblr_r2fdmzn4ns1ye1yab.txt b/data/summaries/tumblr_r2fdmzn4ns1ye1yab.txt new file mode 100644 index 0000000000000000000000000000000000000000..50364d6f50e2146a8cd0b7ffd94de6c3bac6f21e --- /dev/null +++ b/data/summaries/tumblr_r2fdmzn4ns1ye1yab.txt @@ -0,0 +1 @@ +A man in a red shirt does a flip in a backyard, then kicks a person on the ground who is asleep on a pillow. diff --git a/data/summaries/tumblr_r2l0vsqbxm1s9rurb.txt b/data/summaries/tumblr_r2l0vsqbxm1s9rurb.txt new file mode 100644 index 0000000000000000000000000000000000000000..929ee2dc7ee10ddcd22ee3a7ee40c806ef3c154f --- /dev/null +++ b/data/summaries/tumblr_r2l0vsqbxm1s9rurb.txt @@ -0,0 +1 @@ +A man in a military uniform and helmet holds up a Communist badge in front of several people. The people look frightened and begin to scream. One person is wearing green makeup. \ No newline at end of file diff --git a/data/summaries/tumblr_r2rtbly1l91yefkvd.txt b/data/summaries/tumblr_r2rtbly1l91yefkvd.txt new file mode 100644 index 0000000000000000000000000000000000000000..21285691f8d9afb6f43e77474c85465bf7922966 --- /dev/null +++ b/data/summaries/tumblr_r2rtbly1l91yefkvd.txt @@ -0,0 +1 @@ +A crab scurries along the floor in a TikTok video. The video shows a room with the US flag and another flag. Text on the video reads "When people ask me if there are crabs walking around in my shop..." The TikTok user is @justin.e.waters. \ No newline at end of file diff --git a/data/summaries/tumblr_r35f80px9z1vij12m.txt b/data/summaries/tumblr_r35f80px9z1vij12m.txt new file mode 100644 index 0000000000000000000000000000000000000000..317ba02b9d1f6cce2de8a734c994a2eb9da62f56 --- /dev/null +++ b/data/summaries/tumblr_r35f80px9z1vij12m.txt @@ -0,0 +1 @@ +Four frogs sit on a purple shag rug. One frog jumps at a phone on the rug as the other frogs make noises. There is a plant in the upper-right corner of the video. \ No newline at end of file diff --git a/data/summaries/tumblr_r3fjy4g0wl1y54s2v.txt b/data/summaries/tumblr_r3fjy4g0wl1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c71f9d9f493dc05669dc4f367856fc34e61113b --- /dev/null +++ b/data/summaries/tumblr_r3fjy4g0wl1y54s2v.txt @@ -0,0 +1 @@ +A person holds a piece of food in their hand, and a kitten eats it. The kitten has striped fur. The video is from TikTok, posted by @official.leia. \ No newline at end of file diff --git a/data/summaries/tumblr_r3njg6nkup1w5pr9j.txt b/data/summaries/tumblr_r3njg6nkup1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5827a195e5d2ca1832e8477ed309303732c5275 --- /dev/null +++ b/data/summaries/tumblr_r3njg6nkup1w5pr9j.txt @@ -0,0 +1 @@ +A white cat wearing a rabbit costume with pink ears sits on a tiled floor and cleans itself. \ No newline at end of file diff --git a/data/summaries/tumblr_r3u4a1ezky1vnes7l.txt b/data/summaries/tumblr_r3u4a1ezky1vnes7l.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e94da13620379e24b628190f3627111a071a3fa --- /dev/null +++ b/data/summaries/tumblr_r3u4a1ezky1vnes7l.txt @@ -0,0 +1 @@ +A man sitting on a couch with his dog demonstrates that a dog will mirror his activity. When he starts dancing, the dog stands on its hind legs and begins to dance with him. \ No newline at end of file diff --git a/data/summaries/tumblr_r433cmyzam1zubnwn_720.txt b/data/summaries/tumblr_r433cmyzam1zubnwn_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbca64b1eb544ebc6330c42544f18489674eb1c1 --- /dev/null +++ b/data/summaries/tumblr_r433cmyzam1zubnwn_720.txt @@ -0,0 +1 @@ +Bernie Sanders speaks into a microphone at a rally with a crowd of supporters. The crowd is waving signs and cheering. \ No newline at end of file diff --git a/data/summaries/tumblr_r4b1uuttcr1wmu9gj.txt b/data/summaries/tumblr_r4b1uuttcr1wmu9gj.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ec804821f34261a82220287f0ba1cfa9237af86 --- /dev/null +++ b/data/summaries/tumblr_r4b1uuttcr1wmu9gj.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +The video is a slide show with the title "Top 10 Happiest Moments in My Life," followed by a slide that says "Thanks for watching!" The slide show is displayed over a blue background with music playing. \ No newline at end of file diff --git a/data/summaries/tumblr_r4dmzalrwg1vmobp01.txt b/data/summaries/tumblr_r4dmzalrwg1vmobp01.txt new file mode 100644 index 0000000000000000000000000000000000000000..8853c6300ef745de240d71d194d481a71facfc2d --- /dev/null +++ b/data/summaries/tumblr_r4dmzalrwg1vmobp01.txt @@ -0,0 +1 @@ +The video showcases a close-up of a cute tabby kitten, seemingly grooming itself by licking its paws. The cat playfully covers its face with its paws while looking directly at the camera with wide eyes, creating an adorable and captivating scene. \ No newline at end of file diff --git a/data/summaries/tumblr_r4i59lkpae1yb94xp_720.txt b/data/summaries/tumblr_r4i59lkpae1yb94xp_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..3686df8f539e156bee757fa3f13d8b874ed575c2 --- /dev/null +++ b/data/summaries/tumblr_r4i59lkpae1yb94xp_720.txt @@ -0,0 +1 @@ +Jesse and Walter are having a tense exchange while Jesse is sitting in his car. Walter leans down and tells Jesse that he'll 'eat' him. Jesse seems to like the idea, but Walter implies that he'll only attack when Jesse is most vulnerable. Jesse counters that he always wants to be 'eaten'. \ No newline at end of file diff --git a/data/summaries/tumblr_r4mvmlkewc1r2dbtp.txt b/data/summaries/tumblr_r4mvmlkewc1r2dbtp.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ef9e7755b738180cf9fe8287da6ff61b6190e24 --- /dev/null +++ b/data/summaries/tumblr_r4mvmlkewc1r2dbtp.txt @@ -0,0 +1 @@ +A 5-year-old celebrates their birthday with a door decorated with balloons and tape. The door is pushed open and the balloons spill out, eliciting the child to jokingly exclaim “For the love of God!” \ No newline at end of file diff --git a/data/summaries/tumblr_r4qsvrks1d1ylx4u7.txt b/data/summaries/tumblr_r4qsvrks1d1ylx4u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b4f5aae5900fe2e07ac3f4cd0fecfb9501808a7 --- /dev/null +++ b/data/summaries/tumblr_r4qsvrks1d1ylx4u7.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +The TikTok video shows a man who appears to be drunk trying to dance on a snowy sidewalk at night. He exits the passenger side of a red Acura sedan, says "Oh my God, that party was so..." and then proceeds to lose his balance multiple times while attempting to dance. He ultimately falls flat on his back on the sidewalk at the end of the video. \ No newline at end of file diff --git a/data/summaries/tumblr_r4w1grxwwa1yc3lzu.txt b/data/summaries/tumblr_r4w1grxwwa1yc3lzu.txt new file mode 100644 index 0000000000000000000000000000000000000000..7980800c9b8478a5e0d43b3896a3a2012aafe7be --- /dev/null +++ b/data/summaries/tumblr_r4w1grxwwa1yc3lzu.txt @@ -0,0 +1 @@ +The clip shows gameplay of Red Dead Redemption 2. The player is chasing several people on foot through a field. He shoots one of them and they fly backwards, before a black screen appears that reads "Dead". \ No newline at end of file diff --git a/data/summaries/tumblr_r4y3tqh0ts1qev8ce.txt b/data/summaries/tumblr_r4y3tqh0ts1qev8ce.txt new file mode 100644 index 0000000000000000000000000000000000000000..67fc0d81699807d48a2a29c10e289b0a553f6962 --- /dev/null +++ b/data/summaries/tumblr_r4y3tqh0ts1qev8ce.txt @@ -0,0 +1 @@ +A young woman cries to the camera, then the frame switches to a wide shot of a herd of cows standing in a dark field. \ No newline at end of file diff --git a/data/summaries/tumblr_r57l37ivdi1x4pmbc.txt b/data/summaries/tumblr_r57l37ivdi1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d320a2047cc39a8a6215b706f7f0e2807ae275e --- /dev/null +++ b/data/summaries/tumblr_r57l37ivdi1x4pmbc.txt @@ -0,0 +1 @@ +This TikTok video shows a person inside a car, initially displaying a picture of Jeff Bezos. They then say a blind person cheated on them, and finally make a joke to a drive through worker at McDonald’s, ending with “go pull forward.” \ No newline at end of file diff --git a/data/summaries/tumblr_r59e2vx3pe1umyhub.txt b/data/summaries/tumblr_r59e2vx3pe1umyhub.txt new file mode 100644 index 0000000000000000000000000000000000000000..f04481556514e84e11f3c532adb1d6dc5d20d098 --- /dev/null +++ b/data/summaries/tumblr_r59e2vx3pe1umyhub.txt @@ -0,0 +1 @@ +A German Shepherd dog is seen from behind and runs across a concrete patio, stopping near a patch of artificial turf. It barks loudly and appears to be playful or excited. diff --git a/data/summaries/tumblr_r5ebvzrey31z3d5j0.txt b/data/summaries/tumblr_r5ebvzrey31z3d5j0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ae6aa34dd46b402a6a473cb1f1e077027960945 --- /dev/null +++ b/data/summaries/tumblr_r5ebvzrey31z3d5j0.txt @@ -0,0 +1 @@ +The clip shows former President Trump making a statement about an unnamed hurricane. He describes it as tough and one of the wettest ever from the standpoint of water. Aerial footage shows a flooded area with a pickup truck partially submerged. Additional shots depict a helicopter rescue and a Coast Guard boat being transported, highlighting the emergency response to the storm. \ No newline at end of file diff --git a/data/summaries/tumblr_r5glgnkuuj1yjz13y.txt b/data/summaries/tumblr_r5glgnkuuj1yjz13y.txt new file mode 100644 index 0000000000000000000000000000000000000000..c958410daf7effb31bc291939cd542f8723989bd --- /dev/null +++ b/data/summaries/tumblr_r5glgnkuuj1yjz13y.txt @@ -0,0 +1 @@ +A meme video shows Sesame Street characters dancing behind a DJ's mixing board with the caption "EDM fans when the worst song you've ever heard in your f***ing life comes on". \ No newline at end of file diff --git a/data/summaries/tumblr_r5kg3ywmzp1v7xdh6.txt b/data/summaries/tumblr_r5kg3ywmzp1v7xdh6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d35e3a717eef72d6c9f2206b6f3b75f0014e29b --- /dev/null +++ b/data/summaries/tumblr_r5kg3ywmzp1v7xdh6.txt @@ -0,0 +1 @@ +A blonde-haired person playing a red bass guitar has a white and gray rat placed on their head. As the person begins to play the guitar, the rat remains perched atop their head. \ No newline at end of file diff --git a/data/summaries/tumblr_r5r98tuik21z7d7sr.txt b/data/summaries/tumblr_r5r98tuik21z7d7sr.txt new file mode 100644 index 0000000000000000000000000000000000000000..60753d93fec036d6639c723c638422f0a5df0ff5 --- /dev/null +++ b/data/summaries/tumblr_r5r98tuik21z7d7sr.txt @@ -0,0 +1 @@ +A tan and white frog sits in a hunched position on a dark-colored cloth surface. The frog's skin has mottled brown and white patterns. It remains still, occasionally shifting its position slightly. The TikTok logo with the handle "@frogsandanxiety" is visible in the top left corner of the frame. \ No newline at end of file diff --git a/data/summaries/tumblr_r5zdsglqep1ybplg0.txt b/data/summaries/tumblr_r5zdsglqep1ybplg0.txt new file mode 100644 index 0000000000000000000000000000000000000000..162ffee7285fad67010b127d171d5a770dc55720 --- /dev/null +++ b/data/summaries/tumblr_r5zdsglqep1ybplg0.txt @@ -0,0 +1,4 @@ +Here's a summary of the file: +This is a TikTok clip of a skit called "Everywhere in Australia."  It opens with one man leaning against a telephone pole, while a second approaches asking for help.  The first man pulls open his jacket to display several COVID-19 Saliva Test Kits, saying he has tests from all over the country with 95% accuracy.  The second man agrees to take "whatever," when a third man in sunglasses and a police hat stops his car and leans out the window to ask "What's going on here?"  The first man explains he is "selling drugs" and "selling him drugs" while the second states he has "fire weapons." The policeman eyes the pair carefully.  + +Next, we see the second man now running down the sidewalk with the COVID test.  The policeman opens the car door and falls out on his head, and the second man sets about using the test.  The policeman chases him, when the test results show the man is positive.  "I'm positive" the man yells as he runs off, with the policeman telling him to "Stay back 1.5 meters!"  They continue to run along the sidewalk. \ No newline at end of file diff --git a/data/summaries/tumblr_r66hoepkfc1udzxps1.txt b/data/summaries/tumblr_r66hoepkfc1udzxps1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c0d508911689433aa4451f1eaef9d9b1d742501 --- /dev/null +++ b/data/summaries/tumblr_r66hoepkfc1udzxps1.txt @@ -0,0 +1 @@ +Underwater, someone replaces missing blue tiles in a swimming pool, carefully positioning each tile in place. A high-pitched, distorted vocal track plays throughout the video. \ No newline at end of file diff --git a/data/summaries/tumblr_r6awwkoyhr1z8ckep.txt b/data/summaries/tumblr_r6awwkoyhr1z8ckep.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c5df571ee1e1efa745df3dce326c4ca7764cebe --- /dev/null +++ b/data/summaries/tumblr_r6awwkoyhr1z8ckep.txt @@ -0,0 +1 @@ +A person walking through a park asks why the ice is white. His friend explains that it snowed the night before, which makes the ice less slippery, increasing the ice's frictional force. They decide to walk on the ice, but the speaker falls down immediately. \ No newline at end of file diff --git a/data/summaries/tumblr_r6aywmkocd1r1zw9e.txt b/data/summaries/tumblr_r6aywmkocd1r1zw9e.txt new file mode 100644 index 0000000000000000000000000000000000000000..b89eed2e9db3df94bb856f15114d36bc19638888 --- /dev/null +++ b/data/summaries/tumblr_r6aywmkocd1r1zw9e.txt @@ -0,0 +1 @@ +The following video is a satirical sketch called, “Every British TV Show in the 2000s.” Two young British men take turns commenting on British society. One man is shown squatting near a drain, and says the scum of society actually live in mansions. The other man asks, “How many kids is too many?” and then introduces a woman with four. Then the first man says a man may think he is a woman, but they just think he is weird. He knocks on the door. The first man again talks about rappers with large gold watches. The second says they’re paid for with benefits, which is what Derek eats in one week. The first man is “pretending to be poor for science.” Then the second says he’s deep undercover as a homeless man, and the first says he’s giving asbos to the ugliest teenagers he can find. The second man stands in front of the British Communist Party’s headquarters, and the first man says they’re all gay. The first man says he doesn’t live there, and the second says they’ve trapped the fat man’s family inside a block of butter. The first man then says there’s a family that has none of the elements head, shoulders, knees and toes. \ No newline at end of file diff --git a/data/summaries/tumblr_r6jk1pukce1zurqo3.txt b/data/summaries/tumblr_r6jk1pukce1zurqo3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b090580e9996f6986b0cc0e9099ac90c9229b4f --- /dev/null +++ b/data/summaries/tumblr_r6jk1pukce1zurqo3.txt @@ -0,0 +1 @@ +A person attached a toy dragon head to their car's exhaust pipe. When the car is turned on, the toy spins erratically due to the air pressure. The toy soon flies off and lands in the snow, with a person calling out, "not fresh." \ No newline at end of file diff --git a/data/summaries/tumblr_r6s058rpiu1yp75af_720.txt b/data/summaries/tumblr_r6s058rpiu1yp75af_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..62560af84c6a8dd4f9057c443d15e2681e988192 --- /dev/null +++ b/data/summaries/tumblr_r6s058rpiu1yp75af_720.txt @@ -0,0 +1 @@ +The streamer is visibly frustrated when he notices that someone on his server has placed multiple images of Mario smoking on buildings that resemble the Twin Towers. He threatens to ban whoever is doing it, but the culprit's identity remains unknown. Later, the streamer is killed in the game by Bart Simpson using a Gravity Gun, which launches a naked man in a chair at him. The naked man, who is quickly recognized as George W. Bush, is labeled as "ascended" by the streamer. \ No newline at end of file diff --git a/data/summaries/tumblr_r6ufreychq1vmobp0_720.txt b/data/summaries/tumblr_r6ufreychq1vmobp0_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..170a66b65889c1b4314d6c18d27916492d4f80e3 --- /dev/null +++ b/data/summaries/tumblr_r6ufreychq1vmobp0_720.txt @@ -0,0 +1 @@ +Here's a summary of the file: A cute orange and white cat is sitting and looking up at the camera. It then opens its mouth wide in a big yawn, showing its teeth and tongue. The cat then closes its mouth and returns to looking up at the camera. diff --git a/data/summaries/tumblr_r75idmwmxq1s3s35z.txt b/data/summaries/tumblr_r75idmwmxq1s3s35z.txt new file mode 100644 index 0000000000000000000000000000000000000000..557dd1931f0b16492493b8a38522f211334e05bc --- /dev/null +++ b/data/summaries/tumblr_r75idmwmxq1s3s35z.txt @@ -0,0 +1 @@ +The Mystic Aquarium’s TikTok account posted a video showing how they build trust with the seals in their care so that they are able to administer medical treatments. This particular seal, named Clara, appears to enjoy tactile stimulation and will allow the aquarium’s workers to touch the seals. The video shows an aquarium worker touching Clara’s mouth and teeth, caressing the seal on her side and head, and, finally, hugging her to demonstrate how Clara enjoys receiving tactile stimulation. \ No newline at end of file diff --git a/data/summaries/tumblr_r7f519ubsz1qjnhqg.txt b/data/summaries/tumblr_r7f519ubsz1qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5c3475bc47420b72404bad904108102a97015a8 --- /dev/null +++ b/data/summaries/tumblr_r7f519ubsz1qjnhqg.txt @@ -0,0 +1 @@ +A person moving a large white crate on a blue dolly falls spectacularly while attempting to ride the dolly. The crate tips and the person lands on the floor. Another person walks over to them, presumably to check on their well-being. \ No newline at end of file diff --git a/data/summaries/tumblr_r7hr0tv4sk1unz71b_720.txt b/data/summaries/tumblr_r7hr0tv4sk1unz71b_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..19b22d9e4d986bd3819c20fec3650810066bb81b --- /dev/null +++ b/data/summaries/tumblr_r7hr0tv4sk1unz71b_720.txt @@ -0,0 +1 @@ +A small yellow crab is resting on a person's leg at the beach. The crab has white claws and black eyes, and it is covered in sand. In the background, there is sand and the ocean with small waves. \ No newline at end of file diff --git a/data/summaries/tumblr_r7mlrcuzwn1vij12m.txt b/data/summaries/tumblr_r7mlrcuzwn1vij12m.txt new file mode 100644 index 0000000000000000000000000000000000000000..d87b1fc72dba4209a6677a87977551e510f3147b --- /dev/null +++ b/data/summaries/tumblr_r7mlrcuzwn1vij12m.txt @@ -0,0 +1 @@ +The video opens with a quick view of a room's wall and ceiling, then switches to a view of an office space. People are seen relaxing on a couch and standing around. A person holding the camera walks quickly through the room, creating blurry images. As they walk, a loud "Bang Bang!" sound is made. \ No newline at end of file diff --git a/data/summaries/tumblr_r7patxrbch1y54s2v.txt b/data/summaries/tumblr_r7patxrbch1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..43bad58c686a62b9ce84e03d57f36bd3c9fe6fa5 --- /dev/null +++ b/data/summaries/tumblr_r7patxrbch1y54s2v.txt @@ -0,0 +1 @@ +A brown tabby cat with big eyes meows at the camera as the camera moves closer. The cat is sitting on a pile of clothes. The video is from TikTok, the account is @katelyndeakin. \ No newline at end of file diff --git a/data/summaries/tumblr_r7q2q9mxlh1zs633i.txt b/data/summaries/tumblr_r7q2q9mxlh1zs633i.txt new file mode 100644 index 0000000000000000000000000000000000000000..73f7bc1b21f0f15a9554336c710ea833ebd62b7a --- /dev/null +++ b/data/summaries/tumblr_r7q2q9mxlh1zs633i.txt @@ -0,0 +1 @@ +A tabby cat is sitting on a wooden deck when a person opens a small bottle of wine, startling the cat with the pop. \ No newline at end of file diff --git a/data/summaries/tumblr_r7u5ovtigh1y879bt.txt b/data/summaries/tumblr_r7u5ovtigh1y879bt.txt new file mode 100644 index 0000000000000000000000000000000000000000..526333a9747b10cf45f2e7649a6682086c449e81 --- /dev/null +++ b/data/summaries/tumblr_r7u5ovtigh1y879bt.txt @@ -0,0 +1 @@ +A streamer plays Elden Ring and jumps off a cliff. The streamer finds a turtle on the beach and approaches it. The streamer then reads the messages from other players near the turtle. One message reads "First off, don't you dare!" and another reads "dog". The streamer finds the messages amusing and starts laughing. \ No newline at end of file diff --git a/data/summaries/tumblr_r7w47spsx21vij12m.txt b/data/summaries/tumblr_r7w47spsx21vij12m.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d548ec4325d4d912d82f950f8447389077ed5ad --- /dev/null +++ b/data/summaries/tumblr_r7w47spsx21vij12m.txt @@ -0,0 +1 @@ +A tan dog is sitting in a kitchen. The dog looks at the camera while the person recording says something. The dog then approaches a white ball by the oven and smashes it. \ No newline at end of file diff --git a/data/summaries/tumblr_r81aiodk711s2xa1q.txt b/data/summaries/tumblr_r81aiodk711s2xa1q.txt new file mode 100644 index 0000000000000000000000000000000000000000..427481feff3586ec35bec7eef019535845292353 --- /dev/null +++ b/data/summaries/tumblr_r81aiodk711s2xa1q.txt @@ -0,0 +1,3 @@ +Here's a brief summary of the file: + +The video is a compilation of clips featuring President Joe Biden, edited to emphasize his age, purported fatigue, and perceived lack of awareness. It includes a voice-over urging him to "wake up" and references to the 9/11 attacks. The video uses visual effects to create a sense of confusion and disorientation, possibly as a critique or commentary. \ No newline at end of file diff --git a/data/summaries/tumblr_r86nqhn5e71zurqo3_720.txt b/data/summaries/tumblr_r86nqhn5e71zurqo3_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..f056712b7aa94ba26b250eaa3918479383f9f0f9 --- /dev/null +++ b/data/summaries/tumblr_r86nqhn5e71zurqo3_720.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +The file is a close-up of a woman's nose, on which a cartoon face has been drawn. The cartoon face has big eyes, a small nose, and an open mouth, as if it were singing along to a folk song that begins in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_r89ig3r3y81yn587p_720.txt b/data/summaries/tumblr_r89ig3r3y81yn587p_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f3cf652fc3618be5e48cbb67a9562f39d929e34 --- /dev/null +++ b/data/summaries/tumblr_r89ig3r3y81yn587p_720.txt @@ -0,0 +1 @@ +A square mold shaped like Hello Kitty is filled with black, red, and blue liquid resin to color and create a Hello Kitty design. \ No newline at end of file diff --git a/data/summaries/tumblr_r8euq8h9r11sjcnrz.txt b/data/summaries/tumblr_r8euq8h9r11sjcnrz.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7047b78b0b12d514deaed571f270185575bde6f --- /dev/null +++ b/data/summaries/tumblr_r8euq8h9r11sjcnrz.txt @@ -0,0 +1 @@ +A news reporter is standing in front of a building reporting on a heat wave in Michigan. Two men in suits and one man in a short-sleeved shirt and white pants are walking behind him. As the white-pants man walks by, he is showing off his large butt. \ No newline at end of file diff --git a/data/summaries/tumblr_r8i1u16elk1yksmbx.txt b/data/summaries/tumblr_r8i1u16elk1yksmbx.txt new file mode 100644 index 0000000000000000000000000000000000000000..62351ce9e7eb8e9737ffd8bf81f41d5e065347aa --- /dev/null +++ b/data/summaries/tumblr_r8i1u16elk1yksmbx.txt @@ -0,0 +1 @@ +The twins Vorösti shared a clip on TikTok demonstrating the sound their oven makes while breaking. The sound is a clicking sound, and the interior lights up before exploding. \ No newline at end of file diff --git a/data/summaries/tumblr_r8mejifymz1zxblu6.txt b/data/summaries/tumblr_r8mejifymz1zxblu6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cc89d846d3a96dbc74bde5933460b9019529e1d --- /dev/null +++ b/data/summaries/tumblr_r8mejifymz1zxblu6.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +The video is a meme with a game on top of Mr. Incredible's face. The game begins with a ball and a collection of round shapes, and as the game progresses, Mr. Incredible's face shifts to different emotions such as the Mr. Incredible Becoming Canny meme. At 00:16, the ball drops to the bottom of the screen to win the game. \ No newline at end of file diff --git a/data/summaries/tumblr_r8mymjqpkk1w5pr9j.txt b/data/summaries/tumblr_r8mymjqpkk1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..eebc9bbbc9237851d7eac1300850c2fdf53d40cb --- /dev/null +++ b/data/summaries/tumblr_r8mymjqpkk1w5pr9j.txt @@ -0,0 +1 @@ +A refrigerator covered in stickers is seen. There are two cereal boxes, a paper towel roll, a bowl, and a purse on top of the fridge. The video is taken in someone's house. \ No newline at end of file diff --git a/data/summaries/tumblr_r8n6gpmyo71sxxjp9_720.txt b/data/summaries/tumblr_r8n6gpmyo71sxxjp9_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..06b22bbf15d401a80877cc6915f9b4b4007e2226 --- /dev/null +++ b/data/summaries/tumblr_r8n6gpmyo71sxxjp9_720.txt @@ -0,0 +1 @@ +A storefront with a red awning has a neon ATM sign and a door with a sign that reads "2.99 SEVEN". A digital sign displays verses from the Bible, including John 14:6. The sign then switches to advertising "$6 SHRIMP SPECIAL". \ No newline at end of file diff --git a/data/summaries/tumblr_r94p3rf9v21vb46le_720.txt b/data/summaries/tumblr_r94p3rf9v21vb46le_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..deefaf73ce635afbd886b9a1f0c923a51d330d77 --- /dev/null +++ b/data/summaries/tumblr_r94p3rf9v21vb46le_720.txt @@ -0,0 +1 @@ +A beige kitten sits on its hind legs and is licked on the head by an adult beige cat. \ No newline at end of file diff --git a/data/summaries/tumblr_r966i8tz3h1x4pmbc.txt b/data/summaries/tumblr_r966i8tz3h1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..335b57723e1368350d9c40f7f28234dfbe740839 --- /dev/null +++ b/data/summaries/tumblr_r966i8tz3h1x4pmbc.txt @@ -0,0 +1 @@ +A person wearing purple pants and a black shirt jogs on the grass in this TikTok video. The point-of-view is set to a "fisheye" effect. \ No newline at end of file diff --git a/data/summaries/tumblr_r9wni0j1dc1yjz13y.txt b/data/summaries/tumblr_r9wni0j1dc1yjz13y.txt new file mode 100644 index 0000000000000000000000000000000000000000..289a8c765d95130ed0510a159e157ac57dd723bc --- /dev/null +++ b/data/summaries/tumblr_r9wni0j1dc1yjz13y.txt @@ -0,0 +1 @@ +A can of Coca-Cola is seen sitting on the dashboard of an airplane during flight. The aircraft engine is running. The sky is blue. \ No newline at end of file diff --git a/data/summaries/tumblr_raaxuxmb4q1uv2d0a.txt b/data/summaries/tumblr_raaxuxmb4q1uv2d0a.txt new file mode 100644 index 0000000000000000000000000000000000000000..f40c5b840a31f0c066441a46305265a186ae1bbb --- /dev/null +++ b/data/summaries/tumblr_raaxuxmb4q1uv2d0a.txt @@ -0,0 +1 @@ +In an Elden Ring video, a streamer stands in place and watches as the player character is circled by three women enemies and a superimposed image of the streamer himself, who seems to be dancing along to the music. \ No newline at end of file diff --git a/data/summaries/tumblr_rabhlzkzqq1xji3o7.txt b/data/summaries/tumblr_rabhlzkzqq1xji3o7.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcb9351cbc2b7144203512b9b84baad9187cc7b4 --- /dev/null +++ b/data/summaries/tumblr_rabhlzkzqq1xji3o7.txt @@ -0,0 +1 @@ +A person with pink hair and a nose piercing states that "polyamorous Tony" is "the mole," and they then add a hat before they repeatedly say that they want Tony and "his wife" dead.  \ No newline at end of file diff --git a/data/summaries/tumblr_raczwng2il1qejbir.txt b/data/summaries/tumblr_raczwng2il1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..e564b4666ce5946d2e08237eb7cfb9b24a39a1f5 --- /dev/null +++ b/data/summaries/tumblr_raczwng2il1qejbir.txt @@ -0,0 +1 @@ +A rat and toad emerge from a burrow entrance on a patch of dirt next to a concrete structure. The rat exits first, followed by the toad, who pauses as if perplexed. Question marks appear over the toad's head. \ No newline at end of file diff --git a/data/summaries/tumblr_ragrv2rxo91ylx4u7.txt b/data/summaries/tumblr_ragrv2rxo91ylx4u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..566bf09a5838d00a39caef98a0a269adc17b2192 --- /dev/null +++ b/data/summaries/tumblr_ragrv2rxo91ylx4u7.txt @@ -0,0 +1 @@ +A TikTok video, posted by "friendly.noodles", contains several images of a fluffly, long-haired cat named Noodle, staring with its large, round eyes into the camera. The cat is seen sitting on top of a fridge, sitting on the floor, inside a fridge, wearing a chicken hat, playing, and being held. \ No newline at end of file diff --git a/data/summaries/tumblr_rajujvfpt71x4pmbc1.txt b/data/summaries/tumblr_rajujvfpt71x4pmbc1.txt new file mode 100644 index 0000000000000000000000000000000000000000..695acc3103b77247e5cc449d194d7344f4c2711e --- /dev/null +++ b/data/summaries/tumblr_rajujvfpt71x4pmbc1.txt @@ -0,0 +1 @@ +Milly the cat is meowing and purring while facing the camera. The caption says "Milly meowing at the door lol (don't mind her snort)." She is standing on the tile floor. \ No newline at end of file diff --git a/data/summaries/tumblr_raw6t3ukry1z58l44.txt b/data/summaries/tumblr_raw6t3ukry1z58l44.txt new file mode 100644 index 0000000000000000000000000000000000000000..48215e684c002e96d02b44cf314eda7d0faa4981 --- /dev/null +++ b/data/summaries/tumblr_raw6t3ukry1z58l44.txt @@ -0,0 +1 @@ +A small brown bird moves around on the ground, near a white wall. diff --git a/data/summaries/tumblr_rawvjpdbye1x4pmbc.txt b/data/summaries/tumblr_rawvjpdbye1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a3d16cf91158fc8000c0274b89bce09d4fa090c --- /dev/null +++ b/data/summaries/tumblr_rawvjpdbye1x4pmbc.txt @@ -0,0 +1 @@ +Here is a summary of the file: A white cat with grey markings on its head opens its mouth and vocalizes a sound. It appears to be yawning or perhaps making a small "Ahh" sound. The video captures the cat's facial expressions and shows a paw tickled at one point. The video is a TikTok post. \ No newline at end of file diff --git a/data/summaries/tumblr_rb0lpzthzn1yvdogn.txt b/data/summaries/tumblr_rb0lpzthzn1yvdogn.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59e99446c966eddd7b43e6b2792a34c0e36b412 --- /dev/null +++ b/data/summaries/tumblr_rb0lpzthzn1yvdogn.txt @@ -0,0 +1 @@ +A man riding a horse gets bucked off repeatedly while riding through the forest. Eventually, he is attacked and killed by a bear. \ No newline at end of file diff --git a/data/summaries/tumblr_rb297af9l01yafjb5.txt b/data/summaries/tumblr_rb297af9l01yafjb5.txt new file mode 100644 index 0000000000000000000000000000000000000000..10932f511849e0b99892902e242f6bc2a417ec20 --- /dev/null +++ b/data/summaries/tumblr_rb297af9l01yafjb5.txt @@ -0,0 +1 @@ +A woman with brown hair and dark red lipstick is standing next to a bear puppet wearing a colorful patterned shirt. The puppet and woman appear to be having a conversation on a television set. The woman finds something funny that the puppet says and covers her mouth while laughing uncontrollably. \ No newline at end of file diff --git a/data/summaries/tumblr_rb4ue4xbmn1tkir8g.txt b/data/summaries/tumblr_rb4ue4xbmn1tkir8g.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a56c8c9130d8f11119558e2dc55f0eed310954b --- /dev/null +++ b/data/summaries/tumblr_rb4ue4xbmn1tkir8g.txt @@ -0,0 +1 @@ +A golden Labrador sits on a drum while playing the keyboard and a cymbal with its front paws. \ No newline at end of file diff --git a/data/summaries/tumblr_rb5fj7mzsu1qjnhqg.txt b/data/summaries/tumblr_rb5fj7mzsu1qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..99f08304f4c2f0aa2520d74a84165f3dd1747531 --- /dev/null +++ b/data/summaries/tumblr_rb5fj7mzsu1qjnhqg.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +This video shows a paraglider landing on a hill. He warns the group standing there that the police are coming up the hill. \ No newline at end of file diff --git a/data/summaries/tumblr_rb6jmpmrac1z03uzm.txt b/data/summaries/tumblr_rb6jmpmrac1z03uzm.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c3c7afc81d24d924449ac86b52486a92b50be7a --- /dev/null +++ b/data/summaries/tumblr_rb6jmpmrac1z03uzm.txt @@ -0,0 +1 @@ +A gray fish rotates in a circle against a white background. Text over the fish says, "Dont cry, I am just a FISH". The fish's rotation is synced to a song. \ No newline at end of file diff --git a/data/summaries/tumblr_rb85boasbk1qejbir.txt b/data/summaries/tumblr_rb85boasbk1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..924f82c101a88e196c0bb488b7825898f7d69620 --- /dev/null +++ b/data/summaries/tumblr_rb85boasbk1qejbir.txt @@ -0,0 +1 @@ +A woman dangles a Pepsi box above her head as her cat jumps to reach it, then she moves the box lower to let the cat play with it. The cat grabs the box and runs off to play with it alone. \ No newline at end of file diff --git a/data/summaries/tumblr_rb8vs2nj2w1unz71b.txt b/data/summaries/tumblr_rb8vs2nj2w1unz71b.txt new file mode 100644 index 0000000000000000000000000000000000000000..a45ab9b653538570950f5d6c5ff1c8ea87f37044 --- /dev/null +++ b/data/summaries/tumblr_rb8vs2nj2w1unz71b.txt @@ -0,0 +1 @@ +A group of five black coatis with long snouts, bodies, and tails move around near the edge of a body of water that meets the sandy shore. They jump, run, and wade into the water before moving along the shore. \ No newline at end of file diff --git a/data/summaries/tumblr_rbpy8dxo4d1ylx4u7.txt b/data/summaries/tumblr_rbpy8dxo4d1ylx4u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..901a3e37c8fb9c6a2244836cc21716af5e910b82 --- /dev/null +++ b/data/summaries/tumblr_rbpy8dxo4d1ylx4u7.txt @@ -0,0 +1 @@ +Two turtles swim in somewhat murky water. One turtle is above the other and touches its head a couple of times. The person who shared the video on TikTok says that it is the funniest thing they have seen all year. \ No newline at end of file diff --git a/data/summaries/tumblr_rbsswm2qyw1sputqp.txt b/data/summaries/tumblr_rbsswm2qyw1sputqp.txt new file mode 100644 index 0000000000000000000000000000000000000000..aff32da55ae242cbe2d822338c580a4494760e91 --- /dev/null +++ b/data/summaries/tumblr_rbsswm2qyw1sputqp.txt @@ -0,0 +1 @@ +The video shows a man recording himself in a car, stating that he is going to use $20,000 of his recent OnlyFans paycheck to pay off his sister’s student loans. Next, he shows himself walking up to a house with a duck trailing him. He kicks the door in, startling his sister. He then dumps the bag of money on her bed, telling her that it is her student loans that have been “paid in full by [his] p*nis”. His sister seems confused but thanks him. Finally, a woman, presumably his mother, yells at him, saying that he should have bought his own house.  \ No newline at end of file diff --git a/data/summaries/tumblr_rbsttoq1ff1yeaczo.txt b/data/summaries/tumblr_rbsttoq1ff1yeaczo.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8384d6420d34dc4cc428c3484ea28d5782aaaed --- /dev/null +++ b/data/summaries/tumblr_rbsttoq1ff1yeaczo.txt @@ -0,0 +1 @@ +Hatsune Miku is concerned about a cardboard box that has the words "important things" written on it. Several people are seen trying to move the box. \ No newline at end of file diff --git a/data/summaries/tumblr_rbyb5a6ayn1y37vow.txt b/data/summaries/tumblr_rbyb5a6ayn1y37vow.txt new file mode 100644 index 0000000000000000000000000000000000000000..39a6961b36b7d431005d84139f7de4df7d0ae188 --- /dev/null +++ b/data/summaries/tumblr_rbyb5a6ayn1y37vow.txt @@ -0,0 +1 @@ +Here is a summary of the video. A kitten is seen playing and jumping in a mirror, and in other scenes, the kitten plays on a toy, jumps, and does other active cat stuff. The videos show the kitten interacting with the mirror, chasing its reflection, and doing other kitten things. \ No newline at end of file diff --git a/data/summaries/tumblr_rbyu202hao1y73t5z.txt b/data/summaries/tumblr_rbyu202hao1y73t5z.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e4495b42f7fea2484ada81551bac2addf0e9b9a --- /dev/null +++ b/data/summaries/tumblr_rbyu202hao1y73t5z.txt @@ -0,0 +1 @@ +The owner of a dog made a TikTok video showing why it is terrifying when their dog opens a door. The dog is shown opening the door very slowly, revealing only its face. The dog’s owner is heard yelling, swearing, and breathing heavily in reaction to the dog opening the door. \ No newline at end of file diff --git a/data/summaries/tumblr_rc1hora2mb1s7k78b.txt b/data/summaries/tumblr_rc1hora2mb1s7k78b.txt new file mode 100644 index 0000000000000000000000000000000000000000..eae5f9e9c8ebc349633fb1fdcff10ebfe40d3490 --- /dev/null +++ b/data/summaries/tumblr_rc1hora2mb1s7k78b.txt @@ -0,0 +1 @@ +A TikTok video titled "Being a guy isn't that bad" features a man peering into what appears to be a drain or pipe. He appears slightly nervous, while asking if everything looks "okay" back there. A person of color responds with a facial expression before the man looks shocked by what he sees. \ No newline at end of file diff --git a/data/summaries/tumblr_rc38dvqyjl1udzxps.txt b/data/summaries/tumblr_rc38dvqyjl1udzxps.txt new file mode 100644 index 0000000000000000000000000000000000000000..f588b2afe1e30eba00ede70800b8bedeb44276e3 --- /dev/null +++ b/data/summaries/tumblr_rc38dvqyjl1udzxps.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +The file is a video of an ad for the app "Flying Gorilla." The ad shows a clip of a SpongeBob SquarePants episode where Sandy and Patrick confront a character that seems to be Patrick in a gorilla suit. The ad then shows the character unzipping the suit to reveal a real gorilla who promotes the app. The ad shows gameplay footage of the app, which appears to be a 3D runner game. The gorilla then mentions that the app is a free download. \ No newline at end of file diff --git a/data/summaries/tumblr_rcax6kgnlp1yhkxjj_720.txt b/data/summaries/tumblr_rcax6kgnlp1yhkxjj_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..731b2c64e7b56da97a9eda20e4952b9f4311493d --- /dev/null +++ b/data/summaries/tumblr_rcax6kgnlp1yhkxjj_720.txt @@ -0,0 +1 @@ +The video shows a man getting a haircut and then dancing in a barbershop. He appears to be having fun and is enjoying the moment. \ No newline at end of file diff --git a/data/summaries/tumblr_rcdlmafq7z1ylx4u7.txt b/data/summaries/tumblr_rcdlmafq7z1ylx4u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c98bca411dc949d0d4256368a829dabcbcccd12 --- /dev/null +++ b/data/summaries/tumblr_rcdlmafq7z1ylx4u7.txt @@ -0,0 +1 @@ +A man is trying to capture a lizard. The lizard is brown, and he says that it is like a Weeping Angel from the television show Dr. Who. He shuts the bathroom light off, and then when he turns it back on the lizard is in a different spot each time. This continues for a few times until the lizard is on the bathroom floor. \ No newline at end of file diff --git a/data/summaries/tumblr_rceke8xnmt1zurqo3.txt b/data/summaries/tumblr_rceke8xnmt1zurqo3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b484e3f9d822ca252cb3b2d52761aa9416b466f --- /dev/null +++ b/data/summaries/tumblr_rceke8xnmt1zurqo3.txt @@ -0,0 +1 @@ +Several turtles are resting on a floating log in a pond. As another turtle climbs onto the log, the log tips and some turtles fall into the water. One turtle is named Gary by the people filming. diff --git a/data/summaries/tumblr_rckhmvwoo91shzk1m_720.txt b/data/summaries/tumblr_rckhmvwoo91shzk1m_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..5840eb3b5d5c88594331dd0f23168e83ac3595f5 --- /dev/null +++ b/data/summaries/tumblr_rckhmvwoo91shzk1m_720.txt @@ -0,0 +1 @@ +A man in a dark suit, presumably Giancarlo Esposito, is seen laughing and looking up in a dimly lit hallway. diff --git a/data/summaries/tumblr_rcq9anb9lc1umyhub.txt b/data/summaries/tumblr_rcq9anb9lc1umyhub.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa46b83c78617c2849115c3d8ccb54e9d82bb9dc --- /dev/null +++ b/data/summaries/tumblr_rcq9anb9lc1umyhub.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +A charming seal is seen lying on a blue surface. It's primarily light gray with dark gray spots. The seal has a small nose, whiskers, and eyes that open and close occasionally. At one point, the seal briefly sticks out its tongue before closing its eyes again. In the background, voices can be heard, adding to the overall pleasant atmosphere. diff --git a/data/summaries/tumblr_rcvdc58ums1znffzm.txt b/data/summaries/tumblr_rcvdc58ums1znffzm.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6da26e60219b350d715d49dd6a43c7b59af3a01 --- /dev/null +++ b/data/summaries/tumblr_rcvdc58ums1znffzm.txt @@ -0,0 +1 @@ +The video shows a black and white kitten who appears to be sitting on a beige carpet. The kitten is looking up and licking its lips. A person asks the kitten if it's hungry, and it meows loudly, with its mouth open, showing its teeth. The person then asks the kitten to say "yeah," and the kitten meows again. \ No newline at end of file diff --git a/data/summaries/tumblr_rd7rfejnup1zuy7pe.txt b/data/summaries/tumblr_rd7rfejnup1zuy7pe.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e80df6727848f8399e020714599524a8d70d34f --- /dev/null +++ b/data/summaries/tumblr_rd7rfejnup1zuy7pe.txt @@ -0,0 +1 @@ +A television playing an episode of the series Breaking Bad is recorded on a phone. The episode is one where Walter White is telling Jesse Pinkman that he intends to park their mobile meth lab disguised as an RV, which he refers to as Pinkman's house, at his home. Pinkman vehemently disagrees with the idea and screams, “Uh uh man not my house.” The person recording the video asks why the volume is loud when Pinkman screams his line. \ No newline at end of file diff --git a/data/summaries/tumblr_rd960hdefi1w5pr9j.txt b/data/summaries/tumblr_rd960hdefi1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..a57ea8a95995c731436196732ebc7bf69ddaf1ce --- /dev/null +++ b/data/summaries/tumblr_rd960hdefi1w5pr9j.txt @@ -0,0 +1 @@ +A colorful macaw is startled when a blanket is repeatedly thrown at it by a person on the floor. The bird then falls backwards onto the floor. \ No newline at end of file diff --git a/data/summaries/tumblr_rda8hw0udk1xq2d9i_720.txt b/data/summaries/tumblr_rda8hw0udk1xq2d9i_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..3efd9cead08d1df18dfabe3ea22f8a3c85f9761c --- /dev/null +++ b/data/summaries/tumblr_rda8hw0udk1xq2d9i_720.txt @@ -0,0 +1 @@ +The video shows a Nintendo 3DS screen playing a video of a shirtless man exercising in a stylized room. Then, the camera moves to a dark cave with a low ceiling, where a person uses the 3DS as a light source. \ No newline at end of file diff --git a/data/summaries/tumblr_rdsnf452wn1smecn2.txt b/data/summaries/tumblr_rdsnf452wn1smecn2.txt new file mode 100644 index 0000000000000000000000000000000000000000..226a1adca33d82f3e2caf32408113b84d867c918 --- /dev/null +++ b/data/summaries/tumblr_rdsnf452wn1smecn2.txt @@ -0,0 +1 @@ +A Shiba Inu puppy is lying on its back and drinking from a bottle. Someone is holding the bottle for the puppy. diff --git a/data/summaries/tumblr_rdzx7787ds1xmebob_720.txt b/data/summaries/tumblr_rdzx7787ds1xmebob_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..923bcd6e51f46ecbd06ca5279e63355a1d47c2bf --- /dev/null +++ b/data/summaries/tumblr_rdzx7787ds1xmebob_720.txt @@ -0,0 +1 @@ +Ash Ketchum starts with Charmander, Squirtle, and Bulbasaur, and they evolve to fight a team rocket character. The team rocket character dies by smashing through a brick wall. \ No newline at end of file diff --git a/data/summaries/tumblr_re1xz9wpzo1xlgs6y.txt b/data/summaries/tumblr_re1xz9wpzo1xlgs6y.txt new file mode 100644 index 0000000000000000000000000000000000000000..41598d5100cbc91057bc7477c8b31c14393e8add --- /dev/null +++ b/data/summaries/tumblr_re1xz9wpzo1xlgs6y.txt @@ -0,0 +1 @@ +A cat with a black and white mask-like pattern on its face lies with its newborn kitten. The caption reads “the bandit”, and a song plays that uses the same word. \ No newline at end of file diff --git a/data/summaries/tumblr_re40idwe2e1yiaof7_7201.txt b/data/summaries/tumblr_re40idwe2e1yiaof7_7201.txt new file mode 100644 index 0000000000000000000000000000000000000000..b80d43521c4aad7e1d9ad0b8833b3596572a810c --- /dev/null +++ b/data/summaries/tumblr_re40idwe2e1yiaof7_7201.txt @@ -0,0 +1 @@ +Two lizards are seen on a tan tiled floor, one lizard grabs the other and throws them into the air. \ No newline at end of file diff --git a/data/summaries/tumblr_re428xx2au1r7mmfh.txt b/data/summaries/tumblr_re428xx2au1r7mmfh.txt new file mode 100644 index 0000000000000000000000000000000000000000..1270f6aa544012cc40d6148066aae08696f11025 --- /dev/null +++ b/data/summaries/tumblr_re428xx2au1r7mmfh.txt @@ -0,0 +1 @@ +Here's a summary: A man in glasses and a purple hoodie passionately debates abortion with someone holding a blank sign at a busy intersection in Toronto. The man is against abortion, citing a hypothetical scenario where a 16-year-old rape victim wants an abortion and another case where a mother killed her three-year-old child. Protesters with signs that read “Abortion kills children” can be seen in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_re53pgvwon1z1f8jq.txt b/data/summaries/tumblr_re53pgvwon1z1f8jq.txt new file mode 100644 index 0000000000000000000000000000000000000000..877acd748d9253f1979c9754b4abf5fca53590c1 --- /dev/null +++ b/data/summaries/tumblr_re53pgvwon1z1f8jq.txt @@ -0,0 +1 @@ +A man sitting alone at a restaurant table notices a friend walking toward him and exclaims that he knew it. As that man walks to the table, it becomes clear that he's wearing the same outfit as the seated man, a blue-and-white striped polo shirt and jeans. As this happens more times, with more people entering the restaurant and approaching the table wearing the same outfit, those at the table find the situation increasingly hilarious. \ No newline at end of file diff --git a/data/summaries/tumblr_re752kfqfj1z93tyx.txt b/data/summaries/tumblr_re752kfqfj1z93tyx.txt new file mode 100644 index 0000000000000000000000000000000000000000..50b937d425f05b8924b57f8440c63432e9bf2b40 --- /dev/null +++ b/data/summaries/tumblr_re752kfqfj1z93tyx.txt @@ -0,0 +1 @@ +A woman wakes up beside a man in bed and asks him his name, then asks him if he wants to stay for breakfast. It turns out he is in a wheelchair. Another man enters the room and asks, “What if I took your place?” The message, “Do not park in a disabled spot,” comes on the screen. \ No newline at end of file diff --git a/data/summaries/tumblr_reefxukmi11z8cf6d.txt b/data/summaries/tumblr_reefxukmi11z8cf6d.txt new file mode 100644 index 0000000000000000000000000000000000000000..576417f291893f5e64b579d7b8369411275f4e70 --- /dev/null +++ b/data/summaries/tumblr_reefxukmi11z8cf6d.txt @@ -0,0 +1 @@ +A person in a monster costume is kneeling next to a bottle of Coke on artificial turf. They unscrew the cap, causing the soda to spray up in an explosion. \ No newline at end of file diff --git a/data/summaries/tumblr_rejytpakhk1qev8ce.txt b/data/summaries/tumblr_rejytpakhk1qev8ce.txt new file mode 100644 index 0000000000000000000000000000000000000000..87bfda07d1ba9a24a158021cb06bc1809ec42668 --- /dev/null +++ b/data/summaries/tumblr_rejytpakhk1qev8ce.txt @@ -0,0 +1 @@ +The TikTok video shows the content creator responding to another TikTok video, where someone says that “You know her kitty stinks if she wears these.” To which the creator says, “Hola. No te conozco de nada. Eh, tampoco sé que estás diciendo ahí porque no sé inglés. I don’t speak English.” However, he states that the man reminds him of an image on Google. He shows the camera a few images of what he found when he searches for the word peasant in Google images. \ No newline at end of file diff --git a/data/summaries/tumblr_renlxvazzu1w5pr9j1.txt b/data/summaries/tumblr_renlxvazzu1w5pr9j1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f0b3b42db3e70281a86abf8a645e9b634a9974a --- /dev/null +++ b/data/summaries/tumblr_renlxvazzu1w5pr9j1.txt @@ -0,0 +1 @@ +A man watches a seal swim underwater in an enclosure with green tinted water. The seal swims horizontally across the screen, away from the man. \ No newline at end of file diff --git a/data/summaries/tumblr_rez0bvrost1zp1oam.txt b/data/summaries/tumblr_rez0bvrost1zp1oam.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d5b55c44752b97e0c7810c84428af60f0bc5b53 --- /dev/null +++ b/data/summaries/tumblr_rez0bvrost1zp1oam.txt @@ -0,0 +1 @@ +A fluffy, cream-colored cat is seen in front of a wire fence. It walks to a black ledge, sniffs, and then stares down at something. \ No newline at end of file diff --git a/data/summaries/tumblr_rf77cpb70a1zbtu7g.txt b/data/summaries/tumblr_rf77cpb70a1zbtu7g.txt new file mode 100644 index 0000000000000000000000000000000000000000..812524272f83567177b0387ee5559a03fdb6822c --- /dev/null +++ b/data/summaries/tumblr_rf77cpb70a1zbtu7g.txt @@ -0,0 +1 @@ +The video features a person acting as a waitress at a family-owned diner in the deep south. She has a cigarette in her mouth and is exhaling smoke as she talks to the customers. She greets them, then asks them what they’d like to order. At the end, she coughs. \ No newline at end of file diff --git a/data/summaries/tumblr_rfkbomp2wj1ylx4u7.txt b/data/summaries/tumblr_rfkbomp2wj1ylx4u7.txt new file mode 100644 index 0000000000000000000000000000000000000000..49ce78dd9e3e0485426319f1e8f16b5a0cb8eeb3 --- /dev/null +++ b/data/summaries/tumblr_rfkbomp2wj1ylx4u7.txt @@ -0,0 +1 @@ +The man in the video is wearing a checkered shirt. In the video, he is imitating what it would be like if a mother met their child's friend who had green hair. Some of the questions that the man asks are, “Did you pay someone to do it, or was it just from a box?” and, “Is this something you were planning on doing?” \ No newline at end of file diff --git a/data/summaries/tumblr_rfluqltsjt1u890nd.txt b/data/summaries/tumblr_rfluqltsjt1u890nd.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e8b7a963349efc5795f4b3ba4d3a9931ece9cfd --- /dev/null +++ b/data/summaries/tumblr_rfluqltsjt1u890nd.txt @@ -0,0 +1 @@ +A person holding a white puppy is shown in this video. The person rotates the puppy to show its face. Dance music plays in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_rfo95kjgiv1s1ddrj.txt b/data/summaries/tumblr_rfo95kjgiv1s1ddrj.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3f2db5b5acb574ccf474871f9ef43305dfe876a --- /dev/null +++ b/data/summaries/tumblr_rfo95kjgiv1s1ddrj.txt @@ -0,0 +1 @@ +In a Walmart store, a woman films herself with a filter to show her boyfriend, but instead, she captures a stranger in a blue shirt who is laughing. She turns to show her actual boyfriend, who is in a black t-shirt, but the same stranger appears behind him. The woman is amused, and the stranger is happy to be in the video. \ No newline at end of file diff --git a/data/summaries/tumblr_rfoctbs4vm1qg690e.txt b/data/summaries/tumblr_rfoctbs4vm1qg690e.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f76254674002c331d387ba12e6a77fff0f5ad0f --- /dev/null +++ b/data/summaries/tumblr_rfoctbs4vm1qg690e.txt @@ -0,0 +1 @@ +The file is a comparison of the alien emoji as rendered on various platforms and brands. Platforms included are Apple, Google, Samsung, Microsoft, WhatsApp, Twitter, Facebook, Skype, Toss Face, JoyPixels, OpenMoji, Noto Emoji, Sony Playstation, emojidex, Messenger, LG, HTC, Mozilla, and SoftBank. They range in color, expression, and design from classic gray to green, happy to serious, and simple to detailed. \ No newline at end of file diff --git a/data/summaries/tumblr_rfsf8w8qtc1qzezhm.txt b/data/summaries/tumblr_rfsf8w8qtc1qzezhm.txt new file mode 100644 index 0000000000000000000000000000000000000000..9122340c045f3a0d57b5719bf0b1a3da6f2f231f --- /dev/null +++ b/data/summaries/tumblr_rfsf8w8qtc1qzezhm.txt @@ -0,0 +1 @@ +A man dressed as a bee stands in front of a field of yellow flowers and stretches out his arms. The view is a fisheye lens. \ No newline at end of file diff --git a/data/summaries/tumblr_rfsx05yqwf1x4pmbc.txt b/data/summaries/tumblr_rfsx05yqwf1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..45e2cef304f40e6374da99dc31a4a59e314f15df --- /dev/null +++ b/data/summaries/tumblr_rfsx05yqwf1x4pmbc.txt @@ -0,0 +1 @@ +The video shows a small, fluffy dog standing on the edge of a blue-tiled swimming pool. It loses its footing and falls into the water. A person is heard saying "Caiu," which means "It fell" in Portuguese, before retrieving the dog from the pool. The dog is then seen back on the poolside, shaking off the water. \ No newline at end of file diff --git a/data/summaries/tumblr_rfsxrptdfe1y54s2v.txt b/data/summaries/tumblr_rfsxrptdfe1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..b27077e7da763e93781bdb184776c7eb719851cb --- /dev/null +++ b/data/summaries/tumblr_rfsxrptdfe1y54s2v.txt @@ -0,0 +1 @@ +A white cat with gray markings on its head and tail walks on a light blue blanket with its front paws and then its back paws, moving back and forth. The sound of a musical instrument plays over the video. The video has a TikTok logo and the handle @emeveland. \ No newline at end of file diff --git a/data/summaries/tumblr_rfv9juthnk1z67npc.txt b/data/summaries/tumblr_rfv9juthnk1z67npc.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d6be1f062a6553d4e7aa44356fc5ee022669eba --- /dev/null +++ b/data/summaries/tumblr_rfv9juthnk1z67npc.txt @@ -0,0 +1,3 @@ +Here is a summary of the file. + +The person in the video is delivering food. At one location, the person presses the “Trades” button on an intercom. He asks for “Mano to Biz” and is buzzed in. At another location, the person buzzes Bubley Bubley, and again is buzzed in. At a third location, the person is asked who he is, and he says that he is a delivery person. Then the door is opened. \ No newline at end of file diff --git a/data/summaries/tumblr_rfyjqglhal1zp4n3d.txt b/data/summaries/tumblr_rfyjqglhal1zp4n3d.txt new file mode 100644 index 0000000000000000000000000000000000000000..69c98ce03cbbc0183be673cc53bf35dad6dd4976 --- /dev/null +++ b/data/summaries/tumblr_rfyjqglhal1zp4n3d.txt @@ -0,0 +1 @@ +Here's a summary of the file: In a split-screen TikTok video, a man in a car comments on gas station hot dogs in a video with another man in a store asking, "Who's buyin' this?" A third man on the right of a split screen responds that he loves gas station hot dogs and says, "That shit tastes good. I don't give a damn what nobody says. That shit yummy. That's yummy hot dogs." \ No newline at end of file diff --git a/data/summaries/tumblr_rg085ptzqa1rc4ohq.txt b/data/summaries/tumblr_rg085ptzqa1rc4ohq.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f31832dc1aeefc55dbe21f89053d81f1a78373e --- /dev/null +++ b/data/summaries/tumblr_rg085ptzqa1rc4ohq.txt @@ -0,0 +1 @@ +The clip depicts a courtroom scene. A lawyer, only his arm is visible, points to the jury and says "white woman." The jurors are depicted in shock. \ No newline at end of file diff --git a/data/summaries/tumblr_rg2f3upmih1zs633i.txt b/data/summaries/tumblr_rg2f3upmih1zs633i.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd799a1e9610d0bea97863f23cabaca6a6e210cb --- /dev/null +++ b/data/summaries/tumblr_rg2f3upmih1zs633i.txt @@ -0,0 +1 @@ +A crying toddler runs toward the camera, but is offered a ladle. He takes it, examines it, and then runs off with the ladle to the living room. \ No newline at end of file diff --git a/data/summaries/tumblr_rg2kjrth0u1yzx85i.txt b/data/summaries/tumblr_rg2kjrth0u1yzx85i.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a2594dfeeb3d0ac126fc742846656c144c2e0c3 --- /dev/null +++ b/data/summaries/tumblr_rg2kjrth0u1yzx85i.txt @@ -0,0 +1 @@ +An older woman and a younger man are arguing about his shorts. The video's caption says, "They're arguing over his shorts." The woman calls the man a "sl*t." The man responds, "That's the point." \ No newline at end of file diff --git a/data/summaries/tumblr_rg2nmkxw511znffzm.txt b/data/summaries/tumblr_rg2nmkxw511znffzm.txt new file mode 100644 index 0000000000000000000000000000000000000000..333481f6189f6a2515ce27188284f6fd1667437d --- /dev/null +++ b/data/summaries/tumblr_rg2nmkxw511znffzm.txt @@ -0,0 +1 @@ +A short video shows a small ginger and white kitten trying to grab its own tail and keep it still. The video includes on-screen captions, the first one reads, “My kitty trying to calm its tail” and the other captions are “Stop,” Relax,” and “Calm down.” diff --git a/data/summaries/tumblr_rg5i9cloie1sjcnrz.txt b/data/summaries/tumblr_rg5i9cloie1sjcnrz.txt new file mode 100644 index 0000000000000000000000000000000000000000..093ca26f28fcca0a5d58ccc1855ff4612f89ee5e --- /dev/null +++ b/data/summaries/tumblr_rg5i9cloie1sjcnrz.txt @@ -0,0 +1 @@ +A can of Argentina corned beef loaf is being heated over an open gas flame using metal tongs to rotate the can. \ No newline at end of file diff --git a/data/summaries/tumblr_rg71tpjwnh1vmobp0_720.txt b/data/summaries/tumblr_rg71tpjwnh1vmobp0_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fc2a02f1554c5d96ea0ba00a0758e4ef5e7d79 --- /dev/null +++ b/data/summaries/tumblr_rg71tpjwnh1vmobp0_720.txt @@ -0,0 +1 @@ +An orange cat jumps into a cardboard box marked with "SINGER." diff --git a/data/summaries/tumblr_rga1nzveec1r5er4w_720.txt b/data/summaries/tumblr_rga1nzveec1r5er4w_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..b869b6cda78054f21fc1d02ba2af8adef0e34085 --- /dev/null +++ b/data/summaries/tumblr_rga1nzveec1r5er4w_720.txt @@ -0,0 +1 @@ +A player recording footage of the game Team Fortress 2 on PC. In the video, the player's character is the Spy, whose weapons are a knife and a pistol. In the chat, one player is roleplaying as a Heavy, spouting absurd, sometimes violent, lines of dialogue. \ No newline at end of file diff --git a/data/summaries/tumblr_rghe3pctik1z5xnal.txt b/data/summaries/tumblr_rghe3pctik1z5xnal.txt new file mode 100644 index 0000000000000000000000000000000000000000..2869a44007877eb27a89f47445c547363920d15c --- /dev/null +++ b/data/summaries/tumblr_rghe3pctik1z5xnal.txt @@ -0,0 +1 @@ +The video shows a man standing in front of his garage. He opens the garage door and walks into a room completely filled with soapy bubbles. He says that all the dirt is gone. \ No newline at end of file diff --git a/data/summaries/tumblr_rgmtuwrgpy1zygiub.txt b/data/summaries/tumblr_rgmtuwrgpy1zygiub.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bfa3bdaa9d1fa1845abcf8ba0ca23fa98baa43c --- /dev/null +++ b/data/summaries/tumblr_rgmtuwrgpy1zygiub.txt @@ -0,0 +1 @@ +The video shows a container of Terro liquid ant bait, surrounded by ants. The content creator encourages the ants to drink until their tummies are full, and to take some back to their queen as a gift. \ No newline at end of file diff --git a/data/summaries/tumblr_rh3ea5jopf1zunae1.txt b/data/summaries/tumblr_rh3ea5jopf1zunae1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9f640a759d91c38b3e6d887c1862c3d9ec1cf28 --- /dev/null +++ b/data/summaries/tumblr_rh3ea5jopf1zunae1.txt @@ -0,0 +1 @@ +This is a jingle with the word "penis" written on top of the image. It's accompanied by a sound wave-like visual. \ No newline at end of file diff --git a/data/summaries/tumblr_rh4jk7bnel1rzpzre.txt b/data/summaries/tumblr_rh4jk7bnel1rzpzre.txt new file mode 100644 index 0000000000000000000000000000000000000000..83136dee30dd046b64a6b3422527393b39b1ac40 --- /dev/null +++ b/data/summaries/tumblr_rh4jk7bnel1rzpzre.txt @@ -0,0 +1 @@ +Here's a summary of the file: The video shows a streamer named Hasan discussing the topic of why people watch streamers. In the video, Hasan addresses those who donate or subscribe to female streamers and claim they do so for educational purposes. He points out that many such individuals donate to streamers who are barely dressed. Hassan emphasizes that people need to be honest about why they watch certain streamers. He is then surprised to find out that one of the subscribers in his channel, who doesn't even type in the chat, pays the highest subscription amount available on the channel. \ No newline at end of file diff --git a/data/summaries/tumblr_rhag8krlr81znffzm.txt b/data/summaries/tumblr_rhag8krlr81znffzm.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a94961cab35235b1334cc7fda0202c3056cc9fe --- /dev/null +++ b/data/summaries/tumblr_rhag8krlr81znffzm.txt @@ -0,0 +1 @@ +A woman performs a social media trend by pretending to bump her cat into the wall to see what it will do. The cat meows like it’s been hurt so the woman then comforts the cat with hugs and reassurance. \ No newline at end of file diff --git a/data/summaries/tumblr_rhm7gqwnqs1vyya9h.txt b/data/summaries/tumblr_rhm7gqwnqs1vyya9h.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf3d46b2018a9f76f1c59ba2530c43ed31ec4fc --- /dev/null +++ b/data/summaries/tumblr_rhm7gqwnqs1vyya9h.txt @@ -0,0 +1 @@ +People line up to meet and greet Kirby. People scream for the pink gaming character as he appears. The crowd is very excited. \ No newline at end of file diff --git a/data/summaries/tumblr_rhoc5ryrs41qjtzkc.txt b/data/summaries/tumblr_rhoc5ryrs41qjtzkc.txt new file mode 100644 index 0000000000000000000000000000000000000000..58984f2aadafd2421a1ce60191a2b492b8615846 --- /dev/null +++ b/data/summaries/tumblr_rhoc5ryrs41qjtzkc.txt @@ -0,0 +1 @@ +The TikTok video shows a dusty landscape, obscuring views of the fields. The person filming is heard exclaiming, "What the heck is happeninggg?". The narrator expresses concern for their laundry hung on a line, questioning if the orange haze is dust. A small pet is seen running, and the narrator shouts, "Cmon! Run!" before the video ends. \ No newline at end of file diff --git a/data/summaries/tumblr_rhswkl3ezj1w5pr9j.txt b/data/summaries/tumblr_rhswkl3ezj1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..df2c1dbf6141cabc5a75d58130e575ae3bb8b205 --- /dev/null +++ b/data/summaries/tumblr_rhswkl3ezj1w5pr9j.txt @@ -0,0 +1 @@ +A video shows a lightning strike near a town from a high vantage point, followed by a fire starting. People in the immediate foreground are heard reacting to the lightning strike and the resulting fire. \ No newline at end of file diff --git a/data/summaries/tumblr_rhtdrj9bxc1rpd0k1.txt b/data/summaries/tumblr_rhtdrj9bxc1rpd0k1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8a3af13f3e65f10748f24dc9628ebfbb45ba164 --- /dev/null +++ b/data/summaries/tumblr_rhtdrj9bxc1rpd0k1.txt @@ -0,0 +1 @@ +Someone is seen clenching their fist and raising their thumb. The video is captioned "How to win a fist fight." The hand appears to be holding a clear axe. \ No newline at end of file diff --git a/data/summaries/tumblr_rhwrcqxscg1vmay6q.txt b/data/summaries/tumblr_rhwrcqxscg1vmay6q.txt new file mode 100644 index 0000000000000000000000000000000000000000..a67d13604fef2e1c334eddd6ce7e8c649a69788d --- /dev/null +++ b/data/summaries/tumblr_rhwrcqxscg1vmay6q.txt @@ -0,0 +1 @@ +A person wearing blue gloves feeds a lobster a fish and then throws it into the ocean. Text overlay reads, "Bro said, 'Sorry for the inconvenience' and gave him free lunch." \ No newline at end of file diff --git a/data/summaries/tumblr_rhyhsmj5rt1z8ckep.txt b/data/summaries/tumblr_rhyhsmj5rt1z8ckep.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca9f29241624d9ede17eb22205f162ae5572c0b3 --- /dev/null +++ b/data/summaries/tumblr_rhyhsmj5rt1z8ckep.txt @@ -0,0 +1 @@ +A man in a green and white striped shirt and a face mask is shown in a short video. The text above him, in both Chinese and English, reads "Using translational motion to leave early," and "As long as I move slowly enough, no one will notice me." In the background, several people are sitting and talking. At the end of the video, the creator's Douyin username, 1353775131, is displayed. \ No newline at end of file diff --git a/data/summaries/tumblr_ri02ogq2lc1zy0blv.txt b/data/summaries/tumblr_ri02ogq2lc1zy0blv.txt new file mode 100644 index 0000000000000000000000000000000000000000..3604bbc42ae5a2d7fe25cdfa9f26865c5456c895 --- /dev/null +++ b/data/summaries/tumblr_ri02ogq2lc1zy0blv.txt @@ -0,0 +1 @@ +A woman dances in front of seven lit white candles. A man then appears, dancing similarly in front of a single lit candle. He abruptly grabs the candle holder and blows it out. \ No newline at end of file diff --git a/data/summaries/tumblr_ri4kwgygrt1qejbir.txt b/data/summaries/tumblr_ri4kwgygrt1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..53a96c4428a96f3f748eb0ca2bd23fc2a8f3bbea --- /dev/null +++ b/data/summaries/tumblr_ri4kwgygrt1qejbir.txt @@ -0,0 +1 @@ +A cat is trying to walk on a bed with a spiked mat on it. The cat does not seem to like the mat. The video is in black and white and has Chinese text overlayed. \ No newline at end of file diff --git a/data/summaries/tumblr_riekbzhgtx1uealtn.txt b/data/summaries/tumblr_riekbzhgtx1uealtn.txt new file mode 100644 index 0000000000000000000000000000000000000000..acc3f6171ea52949b5d6b20b92fc61d144824a8a --- /dev/null +++ b/data/summaries/tumblr_riekbzhgtx1uealtn.txt @@ -0,0 +1 @@ +A black and white cat is sitting in a cat wheel, when a kitten jumps onto its back and rides as it starts running. \ No newline at end of file diff --git a/data/summaries/tumblr_riy9l7ygms1zaldg3.txt b/data/summaries/tumblr_riy9l7ygms1zaldg3.txt new file mode 100644 index 0000000000000000000000000000000000000000..7af993cc16c1cec26db3730e9cb22615adf1bef0 --- /dev/null +++ b/data/summaries/tumblr_riy9l7ygms1zaldg3.txt @@ -0,0 +1 @@ +This is a humorous TikTok video by @nerdierthanthou. The video features a female, chrome-skinned avatar in a purple dress. It appears as though the creator put a face-photo from another person onto the avatar. Then, another avatar shows up wearing a Hawaiian-inspired outfit and a hat. The text overlay reads, "WHO TF WAS THAT AND WHY WAS IT IN MY VIDEO." \ No newline at end of file diff --git a/data/summaries/tumblr_rj0xsn334e1zg81l7.txt b/data/summaries/tumblr_rj0xsn334e1zg81l7.txt new file mode 100644 index 0000000000000000000000000000000000000000..9580bfadfb495f1aff8eb6cef0b9947ba9b797bb --- /dev/null +++ b/data/summaries/tumblr_rj0xsn334e1zg81l7.txt @@ -0,0 +1 @@ +Two boys are playing in what looks like a mall or a large building. One boy throws a roll of paper towels at another boy who is wearing a costume. The area is lit with red light. \ No newline at end of file diff --git a/data/summaries/tumblr_rj12j1bymq1rfm5rk.txt b/data/summaries/tumblr_rj12j1bymq1rfm5rk.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbdaee6436863ec082832b2dee27f33bf7edad05 --- /dev/null +++ b/data/summaries/tumblr_rj12j1bymq1rfm5rk.txt @@ -0,0 +1 @@ +Here's a summary of the file: This video shows a black cat misbehaving around the house. It can be seen climbing furniture, drinking out of a bowl, playing with a plastic bag, scratching furniture, wearing a box on its head, running around a hallway, standing on top of cupboards, licking a bunch of bananas, playing with its reflection, and in a bathtub. A person can be heard in the background scolding the cat for its bad behaviour. \ No newline at end of file diff --git a/data/summaries/tumblr_rj5oejrrt41rs8m6x.txt b/data/summaries/tumblr_rj5oejrrt41rs8m6x.txt new file mode 100644 index 0000000000000000000000000000000000000000..60651a8fe845072642d1bf40c1ef3c6605dc5c0a --- /dev/null +++ b/data/summaries/tumblr_rj5oejrrt41rs8m6x.txt @@ -0,0 +1 @@ +A woman uses another TikTok user's video as a green screen and asks, "Ever wondered what items in your place just give men the ick?" The video cuts to another woman who says, "No," and then begins to dance. \ No newline at end of file diff --git a/data/summaries/tumblr_rj6ggapubd1umyhub.txt b/data/summaries/tumblr_rj6ggapubd1umyhub.txt new file mode 100644 index 0000000000000000000000000000000000000000..053e2679924035d56886fd8dcaf8d6a47d19075c --- /dev/null +++ b/data/summaries/tumblr_rj6ggapubd1umyhub.txt @@ -0,0 +1 @@ +A Harbor Seal at Toba Aquarium Mie Japan comes up on the side of its enclosure to interact with a human. The Seal moves closer so that it can be touched, and also vocalizes at the same time. \ No newline at end of file diff --git a/data/summaries/tumblr_rj8y8ynxwb1x4pmbc.txt b/data/summaries/tumblr_rj8y8ynxwb1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1cc2ce4af742dc1693b816cd670f14b3bdd5782 --- /dev/null +++ b/data/summaries/tumblr_rj8y8ynxwb1x4pmbc.txt @@ -0,0 +1 @@ +The video shows a black and white puppy sitting behind a large orange pumpkin. A hand cuts a circle out of the top of the pumpkin, and then the puppy is put into the pumpkin. He explores the hollowed-out insides of the pumpkin and then settles into it. At the end of the video, a treat is used to lure the puppy out of the pumpkin. \ No newline at end of file diff --git a/data/summaries/tumblr_rj8yacrthu1ujdpk3.txt b/data/summaries/tumblr_rj8yacrthu1ujdpk3.txt new file mode 100644 index 0000000000000000000000000000000000000000..61a2df4490736060cae735813282ea8b9a946651 --- /dev/null +++ b/data/summaries/tumblr_rj8yacrthu1ujdpk3.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +A person is recording video in what appears to be a casino, as they spot someone dressed as Michael Jackson. The "Michael Jackson" impersonator is wearing a black hat, sunglasses, a gold belt, and a blue jacket with gold epaulets. The person recording the video yells out in excitement for Michael Jackson. The "Michael Jackson" impersonator smiles and acts like the singer. \ No newline at end of file diff --git a/data/summaries/tumblr_rje9wxhg4p1zds1bl.txt b/data/summaries/tumblr_rje9wxhg4p1zds1bl.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e5e197af0ae032042810dd87bbfc638e2d41029 --- /dev/null +++ b/data/summaries/tumblr_rje9wxhg4p1zds1bl.txt @@ -0,0 +1 @@ +An orange Among Us plush is seen on a supermarket shelf, surrounded by items like gels and snacks. The TikTok logo is in the lower-left corner. \ No newline at end of file diff --git a/data/summaries/tumblr_rjeedqlc6m1ycf0uc_720.txt b/data/summaries/tumblr_rjeedqlc6m1ycf0uc_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1f6ecd1d3657cbffa119ddccc7dbce3493602e6 --- /dev/null +++ b/data/summaries/tumblr_rjeedqlc6m1ycf0uc_720.txt @@ -0,0 +1 @@ +Two men, Shane and Ryan, are in what appears to be an abandoned, dark, and dirty room, with one man standing next to a wall that has peeling paint. He is wearing a black beanie and a tan jacket with a patch on it and a camera on his chest. The other man is standing off to the side wearing similar attire but also wearing glasses. The man in the beanie suggests using the dictionary mode to get Shane and Ryan to say something. Then, the ghost box emits a voice that says the word "Nerd," and Shane and Ryan start laughing. The audio later includes the phrase, “Fuck you ghost.”  \ No newline at end of file diff --git a/data/summaries/tumblr_rjfa5yx3xv1xlgs6y.txt b/data/summaries/tumblr_rjfa5yx3xv1xlgs6y.txt new file mode 100644 index 0000000000000000000000000000000000000000..a62937437cb6c4192cd4db26a6651168d7e4ea18 --- /dev/null +++ b/data/summaries/tumblr_rjfa5yx3xv1xlgs6y.txt @@ -0,0 +1 @@ +A seal is chilling out underwater surrounded by sea grass and seaweed. It scratches its back on a rock and seems very relaxed. \ No newline at end of file diff --git a/data/summaries/tumblr_rjheuu8tdg1y54s2v.txt b/data/summaries/tumblr_rjheuu8tdg1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..f08bb59482828fd42db52984e760c28da072206d --- /dev/null +++ b/data/summaries/tumblr_rjheuu8tdg1y54s2v.txt @@ -0,0 +1 @@ +The TikTok video features an educational cartoon clip, that explains how to tell if a cat is becoming aggressive. The cartoon shows a cat with its eyes narrowing and ears lowering to demonstrate how to determine if they're becoming aggressive. After this clip, the video shows a cat near a white rabbit, who has its ears back, to display what this cartoon clip explained. \ No newline at end of file diff --git a/data/summaries/tumblr_rjisk5qs4x1yxx4cl.txt b/data/summaries/tumblr_rjisk5qs4x1yxx4cl.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc15e426e9b4e530fe94622ad2375679bd40a748 --- /dev/null +++ b/data/summaries/tumblr_rjisk5qs4x1yxx4cl.txt @@ -0,0 +1 @@ +A person wearing a blue Michigan sweatshirt does an impression of what it would be like if Ariana Grande was cast to play Mario. \ No newline at end of file diff --git a/data/summaries/tumblr_rjne4zikxe1s1ddrj.txt b/data/summaries/tumblr_rjne4zikxe1s1ddrj.txt new file mode 100644 index 0000000000000000000000000000000000000000..3facb62495ea90ba9c50cbf74d24e7d89a42a63b --- /dev/null +++ b/data/summaries/tumblr_rjne4zikxe1s1ddrj.txt @@ -0,0 +1 @@ +A person tries to dribble a basketball while skateboarding in a concrete tube, falls, and says, "Dude, that was close." \ No newline at end of file diff --git a/data/summaries/tumblr_rjz7sjpda81u890nd.txt b/data/summaries/tumblr_rjz7sjpda81u890nd.txt new file mode 100644 index 0000000000000000000000000000000000000000..378f16b7611ac563a0e85dcfcc560ff4d547b023 --- /dev/null +++ b/data/summaries/tumblr_rjz7sjpda81u890nd.txt @@ -0,0 +1 @@ +A brown Labrador Retriever stands in a bedroom, looking toward the camera with its tongue hanging out. A person asks if the dog wants to go outside and it begins to dance in excitement. \ No newline at end of file diff --git a/data/summaries/tumblr_rk41nrdzwd1zwpy2k.txt b/data/summaries/tumblr_rk41nrdzwd1zwpy2k.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e7da2ed0023461626ec8d0343f57c612bfc1b6e --- /dev/null +++ b/data/summaries/tumblr_rk41nrdzwd1zwpy2k.txt @@ -0,0 +1 @@ +A person in a black leather jacket, black glasses, and a black wig squats in a supermarket aisle as they move along the aisle with their left hand on their hip and right hand in the air holding a can. The person moves from a drinks aisle to an aisle with sunkis boxes and other groceries on the shelves. The person moves along squatting as if they are crawling down the aisle. \ No newline at end of file diff --git a/data/summaries/tumblr_rk74ko5it31y54s2v.txt b/data/summaries/tumblr_rk74ko5it31y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3c9044bcf103663c0404c4332723e49b04cfdf9 --- /dev/null +++ b/data/summaries/tumblr_rk74ko5it31y54s2v.txt @@ -0,0 +1 @@ +The video is from TikTok user @alexanderthegreatpnw showing the personalities of his two cats. The first cat is a small Siamese cat who is under a blanket, and the other is a large black and white cat who is lounging on the bed. \ No newline at end of file diff --git a/data/summaries/tumblr_rkbh5ez6dj1zs633i.txt b/data/summaries/tumblr_rkbh5ez6dj1zs633i.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9872ed10c8a0d44142696eaa49bae32e9a0beb3 --- /dev/null +++ b/data/summaries/tumblr_rkbh5ez6dj1zs633i.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +The file is a short video with various scenes edited together for comedic effect. A handheld foghorn makes a sound effect while a cat is getting in trouble for being on the counter. The foghorn is also sounded in tandem with a cartoon spider and Mike Ehrmantraut from “Breaking Bad”. \ No newline at end of file diff --git a/data/summaries/tumblr_rkj8o3yzkc1vg0r9t_720.txt b/data/summaries/tumblr_rkj8o3yzkc1vg0r9t_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b1347c74e360ca3547cdae57768b637c0b639e5 --- /dev/null +++ b/data/summaries/tumblr_rkj8o3yzkc1vg0r9t_720.txt @@ -0,0 +1 @@ +A woman and a dog stand on a dock by a pool. The woman throws a toy, and the dog leaps into the air, diving into the pool after it. The dog lands in the water with a large splash. \ No newline at end of file diff --git a/data/summaries/tumblr_rklwywfir71z8p5jx.txt b/data/summaries/tumblr_rklwywfir71z8p5jx.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ef485147f4dbb5584f418cfa2b1fba3baecabc9 --- /dev/null +++ b/data/summaries/tumblr_rklwywfir71z8p5jx.txt @@ -0,0 +1 @@ +The video shows the things that maintenance freed from behind a dryer. There is a pipe cleaner, a jingle ball, mister fly, two mice, holiday snowflake, mom's contacts, mystery cap, crinkle ball, and several springs. The narrator notes the list for the water fountain piece is for Dad. \ No newline at end of file diff --git a/data/summaries/tumblr_rkuc2uimxu1yhkxjj.txt b/data/summaries/tumblr_rkuc2uimxu1yhkxjj.txt new file mode 100644 index 0000000000000000000000000000000000000000..e62f1d1532d5b3ffe6ad5584e0d758b1e9625548 --- /dev/null +++ b/data/summaries/tumblr_rkuc2uimxu1yhkxjj.txt @@ -0,0 +1 @@ +A dachshund named Herman, with the TikTok handle @herman_the_ween, is looking toward a colorful toy in the adjacent window. A white hand places balls into the top of the toy, where they roll down the wooden structure, eventually hitting a xylophone at the bottom. At that point, Herman runs to investigate the sound. \ No newline at end of file diff --git a/data/summaries/tumblr_rkuytvawjr1vb7ar51.txt b/data/summaries/tumblr_rkuytvawjr1vb7ar51.txt new file mode 100644 index 0000000000000000000000000000000000000000..77eeb7dd2b22f65ba8d649ca3e5697f97588336f --- /dev/null +++ b/data/summaries/tumblr_rkuytvawjr1vb7ar51.txt @@ -0,0 +1 @@ +A person dressed as a superhero squirts whipped cream into their mouth in a Halloween-themed kitchen. \ No newline at end of file diff --git a/data/summaries/tumblr_rkvxyjl9mz1xoyw8p_r1.txt b/data/summaries/tumblr_rkvxyjl9mz1xoyw8p_r1.txt new file mode 100644 index 0000000000000000000000000000000000000000..289c5bbc3d195770a0ca0b3cff53097633029b58 --- /dev/null +++ b/data/summaries/tumblr_rkvxyjl9mz1xoyw8p_r1.txt @@ -0,0 +1 @@ +A pigeon casually walks around on an airplane wing while the plane taxis on a runway. \ No newline at end of file diff --git a/data/summaries/tumblr_rlavouvis01zhk7qu.txt b/data/summaries/tumblr_rlavouvis01zhk7qu.txt new file mode 100644 index 0000000000000000000000000000000000000000..141dfae4e7ceb5030eb3d270c667658cf000a921 --- /dev/null +++ b/data/summaries/tumblr_rlavouvis01zhk7qu.txt @@ -0,0 +1 @@ +A person throws a stuffed snowman against the ceiling, and a cat on the floor is shocked and makes a noise when it hits. \ No newline at end of file diff --git a/data/summaries/tumblr_rlaxy1gwmm1u890nd_720.txt b/data/summaries/tumblr_rlaxy1gwmm1u890nd_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f0dff4ffd7f22fac4efdbc16d042f398137c0b3 --- /dev/null +++ b/data/summaries/tumblr_rlaxy1gwmm1u890nd_720.txt @@ -0,0 +1 @@ +People are dancing and looking up at something at an outdoor event. The camera pans up to the treetops. \ No newline at end of file diff --git a/data/summaries/tumblr_rlbv3qgroe1xoyw8p_720.txt b/data/summaries/tumblr_rlbv3qgroe1xoyw8p_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed4a945689dc537ebb06931fba1d06723ab643ca --- /dev/null +++ b/data/summaries/tumblr_rlbv3qgroe1xoyw8p_720.txt @@ -0,0 +1 @@ +A person is at the beach and buries a black cat in the sand. The person covers the cat's body with the sand, then asks the cat if they want their tail in or out of the sand. The person covers and uncovers parts of the cat, and is left with only the cat's head exposed. The cat looks at the camera. \ No newline at end of file diff --git a/data/summaries/tumblr_rlf77sktus1z67npc.txt b/data/summaries/tumblr_rlf77sktus1z67npc.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d0978c58dc26cd18a46760d3f5fffc90712b242 --- /dev/null +++ b/data/summaries/tumblr_rlf77sktus1z67npc.txt @@ -0,0 +1 @@ +Here's a summary of the file: The video is a first-person shot of someone walking into their bathroom. The speaker explains that they were woken up by a car alarm that has been going off for an hour. They then show that there is a pigeon sitting in their toilet bowl. \ No newline at end of file diff --git a/data/summaries/tumblr_rllsiytctd1t07xg4.txt b/data/summaries/tumblr_rllsiytctd1t07xg4.txt new file mode 100644 index 0000000000000000000000000000000000000000..448f03a2daf8da802bc0782f3c8ec61d1864bb69 --- /dev/null +++ b/data/summaries/tumblr_rllsiytctd1t07xg4.txt @@ -0,0 +1 @@ +An animated man, appearing to be a shop worker, is visibly distraught over shoplifting in his store, expressing his anger and concern. \ No newline at end of file diff --git a/data/summaries/tumblr_rlt72fpdga1udzxps.txt b/data/summaries/tumblr_rlt72fpdga1udzxps.txt new file mode 100644 index 0000000000000000000000000000000000000000..72a825e91d858a8b280210a6cebcbfdf65c9d507 --- /dev/null +++ b/data/summaries/tumblr_rlt72fpdga1udzxps.txt @@ -0,0 +1 @@ +Here is a commercial about expressing yourself on Disney Channel, featuring kids, a globe, and actresses Lalaine and Tia Mowry, and Tamera Mowry. \ No newline at end of file diff --git a/data/summaries/tumblr_rm83zayduk1zvx5ha.txt b/data/summaries/tumblr_rm83zayduk1zvx5ha.txt new file mode 100644 index 0000000000000000000000000000000000000000..9877ff5ba650ff98f081d40396f13a793db2a563 --- /dev/null +++ b/data/summaries/tumblr_rm83zayduk1zvx5ha.txt @@ -0,0 +1 @@ +The video is a humorous mash-up of "Hell's Kitchen" and "Breaking Bad", turning it into the fictional cooking competition, "Breaking Kitchen". Gordon Ramsay hosts, while characters from Breaking Bad, such as Waltuh, Tuco, Lalo, and Gus compete. They are all trying to impress a teen breakfast critic. \ No newline at end of file diff --git a/data/summaries/tumblr_rmahkbya6t1y686sz.txt b/data/summaries/tumblr_rmahkbya6t1y686sz.txt new file mode 100644 index 0000000000000000000000000000000000000000..2551126ac92a40ba271f8d6d41b27ea9b231f474 --- /dev/null +++ b/data/summaries/tumblr_rmahkbya6t1y686sz.txt @@ -0,0 +1 @@ +An employee prank calls their workplace, the Walmart store at #5462, identifies themselves as "my arch nemesis," then threatens a shoplifting spree until every Walmart has had everything stolen. The assistant store manager identifies the caller as "Steven" and says that their scheme is not working. Steven asks if she is trying to incriminate him and get his strategies. The assistant store manager says she already knows his strategies and they aren't working any more. Steven disagrees, claims that his strategies are working, and further accuses the assistant store manager of giving him all the information he needs. \ No newline at end of file diff --git a/data/summaries/tumblr_rmcny1nhjs1sic8bl.txt b/data/summaries/tumblr_rmcny1nhjs1sic8bl.txt new file mode 100644 index 0000000000000000000000000000000000000000..be898d36d886a04782517ef2a00283c8124591e5 --- /dev/null +++ b/data/summaries/tumblr_rmcny1nhjs1sic8bl.txt @@ -0,0 +1 @@ +The meme shows an agitated character shouting "Liquid!" repeatedly while running around, with the text on the screen making a humorous comparison to a TSA agent's reaction when someone tries to bring a 120ml bottle of water past the gate. \ No newline at end of file diff --git a/data/summaries/tumblr_rmdwpjx6yw1ruqtxu.txt b/data/summaries/tumblr_rmdwpjx6yw1ruqtxu.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c13467a60827128a0a62afc3f1b272f1c934fe5 --- /dev/null +++ b/data/summaries/tumblr_rmdwpjx6yw1ruqtxu.txt @@ -0,0 +1 @@ +A man with auburn hair and a beard and wearing a grey hoodie is in the middle of a TikTok video, with a white door behind him and the TikTok icon in the lower left corner. A strange electronic melody plays. He alternately looks directly at the camera and looks upward. At times, the sound seems to distort his face. \ No newline at end of file diff --git a/data/summaries/tumblr_rmg8ewlr1y1yjf3mv.txt b/data/summaries/tumblr_rmg8ewlr1y1yjf3mv.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b57b8a407ef8c3f8dfa336a1ec1c8ec77899556 --- /dev/null +++ b/data/summaries/tumblr_rmg8ewlr1y1yjf3mv.txt @@ -0,0 +1 @@ +The video begins with an up-close view of a motorcycle riding through a water-filled path, followed by a man speaking about life's roadblocks. The video concludes with a shiny, reflective Roblox logo against a dark gray background. \ No newline at end of file diff --git a/data/summaries/tumblr_rmpy2ki4fi1zhr80f_720.txt b/data/summaries/tumblr_rmpy2ki4fi1zhr80f_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc09458ee513ca920edf25aa799ff35d74955f50 --- /dev/null +++ b/data/summaries/tumblr_rmpy2ki4fi1zhr80f_720.txt @@ -0,0 +1 @@ +The video shows a first-person view of a character aiming a bow and arrow at a dragon. The character fires an arrow, which hits the dragon in the head. Afterwards, the character spots a rabbit in the wild. \ No newline at end of file diff --git a/data/summaries/tumblr_rmsewqgvcf1umyhub_720.txt b/data/summaries/tumblr_rmsewqgvcf1umyhub_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..7134542ef2a597dec74534e0063ea084f010c77a --- /dev/null +++ b/data/summaries/tumblr_rmsewqgvcf1umyhub_720.txt @@ -0,0 +1 @@ +A pair of cute seals is seen on and near an ice floe, emitting soft sounds. \ No newline at end of file diff --git a/data/summaries/tumblr_rmx4iq2rln1w7wbpk.txt b/data/summaries/tumblr_rmx4iq2rln1w7wbpk.txt new file mode 100644 index 0000000000000000000000000000000000000000..659511105aeafe126c49a4639dd88be0a5477439 --- /dev/null +++ b/data/summaries/tumblr_rmx4iq2rln1w7wbpk.txt @@ -0,0 +1 @@ +A first-person view of a player in Team Fortress 2. The player is holding a festive-themed pistol, decorated with Christmas lights. The player is in the RED base, specifically in a room with a basketball court and an office. An enemy scout is visible in the office area. The text at the top left indicates that another player has disconnected. The in-game announcement says that "the enemy has dropped our intelligence." \ No newline at end of file diff --git a/data/summaries/tumblr_rn2ddrbzxq1ykp17t.txt b/data/summaries/tumblr_rn2ddrbzxq1ykp17t.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9881edc47882d7b01c7c58fa2a1cd91adf92901 --- /dev/null +++ b/data/summaries/tumblr_rn2ddrbzxq1ykp17t.txt @@ -0,0 +1 @@ +Two cats are seen on a bed. One is a tabby cat and the other is white with brown spots. The tabby cat is hit by the other cat, and then appears to shriek in pain. \ No newline at end of file diff --git a/data/summaries/tumblr_rn5b8tgfho1vwyv80.txt b/data/summaries/tumblr_rn5b8tgfho1vwyv80.txt new file mode 100644 index 0000000000000000000000000000000000000000..615abcd474f53cf838debe2f3eed28c9a59d07a2 --- /dev/null +++ b/data/summaries/tumblr_rn5b8tgfho1vwyv80.txt @@ -0,0 +1 @@ +An orange tabby cat lies on a person and then appears to burp. The person laughs. \ No newline at end of file diff --git a/data/summaries/tumblr_rnhxakeael1y54s2v.txt b/data/summaries/tumblr_rnhxakeael1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..9be4cdbb4945e7141691f28160be253f44f2b022 --- /dev/null +++ b/data/summaries/tumblr_rnhxakeael1y54s2v.txt @@ -0,0 +1 @@ +A TikTok video shows a split screen: on the left, a hand holds a pencil with a dot on it, made to look like eyes, and on the right, a long-nosed dog gets bathed and dried with a towel. In the last scene, the dog is clean, groomed, and sitting in a room. The pencil with the dot is held up for comparison. \ No newline at end of file diff --git a/data/summaries/tumblr_rnj4l7r6a81rrruro.txt b/data/summaries/tumblr_rnj4l7r6a81rrruro.txt new file mode 100644 index 0000000000000000000000000000000000000000..f91a2a2a905d3ad483a76cbc59ea4d023e1c533b --- /dev/null +++ b/data/summaries/tumblr_rnj4l7r6a81rrruro.txt @@ -0,0 +1 @@ +The video shows a man at a bowling alley preparing to bowl. The video is captioned, "never asking my white friend to film me bowling again". The man bowls, and hits all the pins, receiving a strike. The clip closes with the TikTok logo. \ No newline at end of file diff --git a/data/summaries/tumblr_rnwcimxndr1zb1ms9.txt b/data/summaries/tumblr_rnwcimxndr1zb1ms9.txt new file mode 100644 index 0000000000000000000000000000000000000000..7023c6b0ca6ce120cc1fb2852674bd1b4c1b001b --- /dev/null +++ b/data/summaries/tumblr_rnwcimxndr1zb1ms9.txt @@ -0,0 +1 @@ +Twinkle Tackle is a very impressive and powerful Z-Move, but also a very silly one, where the Pokemon Xerneas unleashes its full Z-Move, by surrounding itself with its Z-Power. This attack sends it flying through a dreamlike world of stars and bubbles, culminating in a devastating collision with the enemy. \ No newline at end of file diff --git a/data/summaries/tumblr_rnxeti6gjn1z69592.txt b/data/summaries/tumblr_rnxeti6gjn1z69592.txt new file mode 100644 index 0000000000000000000000000000000000000000..5463f1f565ea1cfa0b3941628e98228c0009d6a0 --- /dev/null +++ b/data/summaries/tumblr_rnxeti6gjn1z69592.txt @@ -0,0 +1 @@ +A man, mostly nude, is running through a building, including down a staircase, eventually falling to the floor. The video ends with him walking toward what appears to be a vending machine. \ No newline at end of file diff --git a/data/summaries/tumblr_ro064ovlr61z7ukda.txt b/data/summaries/tumblr_ro064ovlr61z7ukda.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd9a8e264e558da1a336867ec58a28621fe30377 --- /dev/null +++ b/data/summaries/tumblr_ro064ovlr61z7ukda.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +The TikTok video from @halieoutdoors introduces a dog "weirdly obsessed" with fish. The video shows the dog licking its paws while lounging on a couch and includes text suggesting that a human society warned the owners that the dog was obsessed with fish. The video then cuts to shots of the dog in the water, first licking at a fish, then walking into a lake with a mountainous background while unsuccessfully fishing, then peering into an aquarium full of fish. Finally, the dog is shown walking in shallow water toward a person holding a fish, and then walking into the water while "fishing." diff --git a/data/summaries/tumblr_ro1fdb1fbo1r00k2k.txt b/data/summaries/tumblr_ro1fdb1fbo1r00k2k.txt new file mode 100644 index 0000000000000000000000000000000000000000..5743f797c31d6362ae34322b56438d4052be7841 --- /dev/null +++ b/data/summaries/tumblr_ro1fdb1fbo1r00k2k.txt @@ -0,0 +1 @@ +A tiny kitten with fluffy fur is sitting in a room with polished floors and a row of metal cages. A hand reaches down to pet the kitten, but the kitten doesn't like it and runs away. It then turns to the camera and hisses fiercely. diff --git a/data/summaries/tumblr_ro5rf1q9bo1qjnhqg.txt b/data/summaries/tumblr_ro5rf1q9bo1qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..62572fa372bf7964cbe5ba4f90fbbe6b159d8219 --- /dev/null +++ b/data/summaries/tumblr_ro5rf1q9bo1qjnhqg.txt @@ -0,0 +1 @@ +Two people, disguised as women, meet on the anonymous video chat platform Omegle. They recognize one another immediately. When one of the two is challenged to do a "girl voice," he attempts it badly, both laugh and the connection is cut. \ No newline at end of file diff --git a/data/summaries/tumblr_roc7bxha3a1yd1erx_720.txt b/data/summaries/tumblr_roc7bxha3a1yd1erx_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..df996ce566f5be4a2543cc6f082643af59bb86c6 --- /dev/null +++ b/data/summaries/tumblr_roc7bxha3a1yd1erx_720.txt @@ -0,0 +1 @@ +Puss in Boots and a gnome character are presented in the video. Puss in Boots has a wide smile and is asking the viewer if they want to see something cool. \ No newline at end of file diff --git a/data/summaries/tumblr_rocj60vnxe1zizeiu.txt b/data/summaries/tumblr_rocj60vnxe1zizeiu.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8a94218413b7ac845c1c7b85a2f7508f2d823c2 --- /dev/null +++ b/data/summaries/tumblr_rocj60vnxe1zizeiu.txt @@ -0,0 +1 @@ +The Simpsons are left behind as the Flanders family ascends into heaven, in a scene from The Simpsons. The Simpsons family is standing in front of their house while the Flanders are kneeling in their yard, praying.  A beam of light takes the Flanders family up to the sky. diff --git a/data/summaries/tumblr_roeocqjxeg1z67npc.txt b/data/summaries/tumblr_roeocqjxeg1z67npc.txt new file mode 100644 index 0000000000000000000000000000000000000000..976659ac20de4f635f8f19054f44497a94802bf3 --- /dev/null +++ b/data/summaries/tumblr_roeocqjxeg1z67npc.txt @@ -0,0 +1 @@ +In this TikTok video, a person is shown biting the tips off of green beans before they eat them. The other person in the video thinks this is a strange way of eating them, so they bite all the tips off of a bunch of the beans and hands them to the other person. \ No newline at end of file diff --git a/data/summaries/tumblr_roji3u6ipl1vnghde.txt b/data/summaries/tumblr_roji3u6ipl1vnghde.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d088097dcae8c4bb0546eee4f50c81a1560247b --- /dev/null +++ b/data/summaries/tumblr_roji3u6ipl1vnghde.txt @@ -0,0 +1 @@ +A car pulls into an access ramp and it gets increasingly flooded. The driver wonders how it is possible that the road isn't blocked off to traffic. Another car pulls into the flooded area before the video ends. \ No newline at end of file diff --git a/data/summaries/tumblr_rok05yte9n1stqyka_720.txt b/data/summaries/tumblr_rok05yte9n1stqyka_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..f18f6e101d8c82824c3f085ef19793a6aee63b87 --- /dev/null +++ b/data/summaries/tumblr_rok05yte9n1stqyka_720.txt @@ -0,0 +1,3 @@ +Here’s a summary of the file: + +Two women standing in a kitchen engage in a celebrity identification game. However, all of the photographs are of James Charles in costume. The first woman struggles to identify the celebrity, confusing James Charles in various outfits for Kim Kardashian, Kylie Jenner, Courtney Kardashian, Taylor Swift, Miley Cyrus, Katy Perry, an actress from Stranger Things, and Jeff Bezos. \ No newline at end of file diff --git a/data/summaries/tumblr_rolpdgfehg1x4pmbc.txt b/data/summaries/tumblr_rolpdgfehg1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..17583f5928aa9555baa1ffd20c2095dd3ebbc43a --- /dev/null +++ b/data/summaries/tumblr_rolpdgfehg1x4pmbc.txt @@ -0,0 +1 @@ +The TikTok video shows an orange cat in front of a door. The video shows that a cat can have two different voices; one like a howl when the cat thinks it is alone, and a typical meow when someone approaches. \ No newline at end of file diff --git a/data/summaries/tumblr_roo130db7m1zurqo3.txt b/data/summaries/tumblr_roo130db7m1zurqo3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aa7f3c453caef5d09e250e2f81a6c9199b75dd3 --- /dev/null +++ b/data/summaries/tumblr_roo130db7m1zurqo3.txt @@ -0,0 +1 @@ +A group of men plays an elaborate prank on their friend, Russ. They sneak into the crawl space under his house, and use pipes to plumb the house so that beer comes out of the faucets instead of water. They also install hidden cameras throughout the house. Then, the friends watch on monitors as Russ comes home, tastes the water, and realizes it's beer. The pranksters celebrate, and then they reveal themselves to Russ. They end by raising glasses of beer in a toast. \ No newline at end of file diff --git a/data/summaries/tumblr_rp1iivfpco1y54s2v.txt b/data/summaries/tumblr_rp1iivfpco1y54s2v.txt new file mode 100644 index 0000000000000000000000000000000000000000..a00dc47dfc4fccbf221d44707a48149180701890 --- /dev/null +++ b/data/summaries/tumblr_rp1iivfpco1y54s2v.txt @@ -0,0 +1 @@ +A TikTok video shows a person trying out a filter, but when their uncle walks into the frame, the filter makes him look like he's a thirst trap. The person is wearing a Batman hoodie. \ No newline at end of file diff --git a/data/summaries/tumblr_rp4swrrsgm1r5z507.txt b/data/summaries/tumblr_rp4swrrsgm1r5z507.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a633416fc6a24b2137f210d182e592885044c9d --- /dev/null +++ b/data/summaries/tumblr_rp4swrrsgm1r5z507.txt @@ -0,0 +1 @@ +A woman in a red hoodie tells the viewer to forget everything they know while holding a large dish filled with food. The view then shifts to a man with blond hair who looks directly into the camera. \ No newline at end of file diff --git a/data/summaries/tumblr_rpph80qjag1un8t8y.txt b/data/summaries/tumblr_rpph80qjag1un8t8y.txt new file mode 100644 index 0000000000000000000000000000000000000000..108859d2399d2c328ab80e24fb8460b6185793dd --- /dev/null +++ b/data/summaries/tumblr_rpph80qjag1un8t8y.txt @@ -0,0 +1 @@ +Bryan Cranston, the actor who plays Walter White in Breaking Bad, is seen in a black apron over a white t-shirt, with a bald cap on his head. Cranston turns to a woman sitting next to him and asks her to touch his head, because it looks so real. The woman hesitates and then gently touches his head. \ No newline at end of file diff --git a/data/summaries/tumblr_rpq4lssidp1w5pr9j.txt b/data/summaries/tumblr_rpq4lssidp1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc30400c1cbcbaa1e9a973b93883cb39958e5745 --- /dev/null +++ b/data/summaries/tumblr_rpq4lssidp1w5pr9j.txt @@ -0,0 +1 @@ +A bird is standing on a table. The bird pushes a clear plastic container off the table. The container lands on the floor with a thud. \ No newline at end of file diff --git a/data/summaries/tumblr_rpvq1c2gfw1vmobp0_720.txt b/data/summaries/tumblr_rpvq1c2gfw1vmobp0_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf5be6764d8f915e79967acf5bd7339ac8723123 --- /dev/null +++ b/data/summaries/tumblr_rpvq1c2gfw1vmobp0_720.txt @@ -0,0 +1 @@ +A dog steals a slipper while being recorded. \ No newline at end of file diff --git a/data/summaries/tumblr_rpx3qiewrw1rd9hsl.txt b/data/summaries/tumblr_rpx3qiewrw1rd9hsl.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a32ca9a4b8268c9dcf3a4b2190bebb1259922a5 --- /dev/null +++ b/data/summaries/tumblr_rpx3qiewrw1rd9hsl.txt @@ -0,0 +1 @@ +The clip features three male comedians who appear to be filming a game show segment. The first comedian cracks a joke which prompts one of the other comedians to comment in a strange accent that his 'spaghetti too slippery for little meatball'. They all laugh, and a fourth comedian looks visibly embarrassed. \ No newline at end of file diff --git a/data/summaries/tumblr_rqbois1kz31qejbir.txt b/data/summaries/tumblr_rqbois1kz31qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b10f9830d24706de810cd6a8c06ea46091dac81 --- /dev/null +++ b/data/summaries/tumblr_rqbois1kz31qejbir.txt @@ -0,0 +1 @@ +A cat is measured with a measuring tape and some items are then measured and checked against the cat’s size. The cat is then arrested with pink rubber bands around its paws. \ No newline at end of file diff --git a/data/summaries/tumblr_rqcwoahb431tbb55m_720.txt b/data/summaries/tumblr_rqcwoahb431tbb55m_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed9f9906c3e19b9e6c83aef00ec85e6ecd4dce5b --- /dev/null +++ b/data/summaries/tumblr_rqcwoahb431tbb55m_720.txt @@ -0,0 +1 @@ +Three boys are hanging onto a pull-up bar, practicing what appears to be pull-ups, while one struggles to hold on and yells. \ No newline at end of file diff --git a/data/summaries/tumblr_rqqldgkxz51y51wgl.txt b/data/summaries/tumblr_rqqldgkxz51y51wgl.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2b17e4664e8423e85348c2a9d0d06e96a206f44 --- /dev/null +++ b/data/summaries/tumblr_rqqldgkxz51y51wgl.txt @@ -0,0 +1 @@ +Joe Rogan tells Ben Shapiro that he went to a beach that made him old. Shapiro does not believe him, and challenges Rogan's statement with logic. He says if a beach made you old, other physiological changes would have happened like rapid fingernail growth or the need to pee more frequently. Shapiro says if Rogan wants, he can go to the beach, too, to see for himself, but warns that he, too, will get old. Shapiro doesn't think it's possible and declares that he's not going to get old, and Rogan emphasizes that he will. The video ends with Rogan asking his producer, Jamie, to pull up the directions to the beach that makes you old. Three days later, Shapiro returns, looking much older. \ No newline at end of file diff --git a/data/summaries/tumblr_rr9j0tnc261tvhzlo.txt b/data/summaries/tumblr_rr9j0tnc261tvhzlo.txt new file mode 100644 index 0000000000000000000000000000000000000000..74d3a48fb9b6b1c57865d180cc50687262cf8545 --- /dev/null +++ b/data/summaries/tumblr_rr9j0tnc261tvhzlo.txt @@ -0,0 +1 @@ +Link rides his horse across a platform that launches them up in the air towards the Temple of Time. They land on the roof, and the horse rears up and whinnies, sliding down the roof. Link also slides down the roof as he tries to stay on the horse. \ No newline at end of file diff --git a/data/summaries/tumblr_rraqyvqlqj1w5pr9j.txt b/data/summaries/tumblr_rraqyvqlqj1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..aff8978ee6740c1e11c08216538f000b2bbf00ff --- /dev/null +++ b/data/summaries/tumblr_rraqyvqlqj1w5pr9j.txt @@ -0,0 +1 @@ +An orange tabby cat playfully slaps a white cat sitting on a surface, then nudges its head against the white cat's face in a sweet gesture. \ No newline at end of file diff --git a/data/summaries/tumblr_rrfkr3vkig1xwedvf.txt b/data/summaries/tumblr_rrfkr3vkig1xwedvf.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b0159c886df44f04931e8398694d17f78b24d00 --- /dev/null +++ b/data/summaries/tumblr_rrfkr3vkig1xwedvf.txt @@ -0,0 +1 @@ +In a Half-Life mod, the player navigates a hallway with a black and white tiled floor, then enters a room with vending machines and a microwave. A scientist yells at the player and tells them to stop messing with the microwave. The player then moves down another hallway with a scientist in it. \ No newline at end of file diff --git a/data/summaries/tumblr_rrhrjn7v7n1wgqtvi.txt b/data/summaries/tumblr_rrhrjn7v7n1wgqtvi.txt new file mode 100644 index 0000000000000000000000000000000000000000..be6d4b335623e05cda6f8bf7d619d483ee216eba --- /dev/null +++ b/data/summaries/tumblr_rrhrjn7v7n1wgqtvi.txt @@ -0,0 +1 @@ +The TikTok video starts with a question: "Why do some Disney characters walk on two feet when they should be walking on four?" The video then cuts to a man yelling and gesturing, saying, "Make the workers crawl, make them crawl, put them on the ground! Make them crawl on the ground where they belong!" \ No newline at end of file diff --git a/data/summaries/tumblr_rrp1cubb1w1qejbir.txt b/data/summaries/tumblr_rrp1cubb1w1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..c81f9e468e6d9dd6aa4f8575b0b3ecccbed8b9a1 --- /dev/null +++ b/data/summaries/tumblr_rrp1cubb1w1qejbir.txt @@ -0,0 +1 @@ +A cat is lying on a table. A hand reaches down and tries to pet the cat, which then swats at it and snarls loudly. \ No newline at end of file diff --git a/data/summaries/tumblr_rrpusfk4eh1qjnhqg.txt b/data/summaries/tumblr_rrpusfk4eh1qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..f839af11c86c44165a4b0c9ac8c2696394f9a380 --- /dev/null +++ b/data/summaries/tumblr_rrpusfk4eh1qjnhqg.txt @@ -0,0 +1 @@ +A ginger cat wearing a cone collar jumps out of his bed, gets spooked, and begins a destructive rampage of the cat room. He knocks over his cat bed, rolls into the cat litter box, throws items all over the room, and lets out a frustrated meow at the end of his burst of energy. \ No newline at end of file diff --git a/data/summaries/tumblr_rrq4ratbso1unz71b.txt b/data/summaries/tumblr_rrq4ratbso1unz71b.txt new file mode 100644 index 0000000000000000000000000000000000000000..d389b81ede19e3c38ec5fae93afe2f929b505c1f --- /dev/null +++ b/data/summaries/tumblr_rrq4ratbso1unz71b.txt @@ -0,0 +1 @@ +A woman sits in a chair and watches as a tabby cat stands on its hind legs and bats at a gray and white spotted dog. The dog seems excited, with its tongue hanging out, and takes a step back as the cat claws at its nose. The cat jumps up and down, landing behind a small wooden table. The woman in the chair laughs. \ No newline at end of file diff --git a/data/summaries/tumblr_rrwsd7chye1xoyw8p.txt b/data/summaries/tumblr_rrwsd7chye1xoyw8p.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebe0fbe3f9d0b91c3d47ea884a42c20829eb06e --- /dev/null +++ b/data/summaries/tumblr_rrwsd7chye1xoyw8p.txt @@ -0,0 +1 @@ +The TikTok video compares the expected results of a window bird feeder to the reality. The first scene shows a red cardinal at a similar bird feeder. The next part shows a person installing a bird feeder, putting bird seed in it, and then the scene cuts to the reality: a large rat enjoying the bird seed. \ No newline at end of file diff --git a/data/summaries/tumblr_rs04rudlzc1uoezqw.txt b/data/summaries/tumblr_rs04rudlzc1uoezqw.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bb0d634daad19138ffa998fd6582de637d94d87 --- /dev/null +++ b/data/summaries/tumblr_rs04rudlzc1uoezqw.txt @@ -0,0 +1 @@ +A Valheim player is in the woods and chops down a beech tree. Another tree falls down on top of them and they die. The Valheim loading screen comes up. \ No newline at end of file diff --git a/data/summaries/tumblr_rs376qf4sv1a1i6yy.txt b/data/summaries/tumblr_rs376qf4sv1a1i6yy.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe30ca2d9320b92848bf70ca7dbaafc9a27b0dac --- /dev/null +++ b/data/summaries/tumblr_rs376qf4sv1a1i6yy.txt @@ -0,0 +1 @@ +A woman wearing reindeer antlers and a face mask looks into a structure. She then looks up to see deer walking in a park beyond the structure. She turns to look at the camera, and a deer pops up beside her. \ No newline at end of file diff --git a/data/summaries/tumblr_rsakiajzhp1vbdnor.txt b/data/summaries/tumblr_rsakiajzhp1vbdnor.txt new file mode 100644 index 0000000000000000000000000000000000000000..55a7685f23348875c64fbc2cf17fcf85d6354f43 --- /dev/null +++ b/data/summaries/tumblr_rsakiajzhp1vbdnor.txt @@ -0,0 +1 @@ +A close-up shot shows a sockeye salmon swimming. The salmon has a red head and a greenish-grey body, with menacing teeth visible. Then, a wide shot shows a school of sockeye salmon, with an even mix of brown and red colored fish. The salmon are swimming close together in the water. A voiceover explains that sockeye salmon are ruled by instinct, and that their instinct is to kill themselves. \ No newline at end of file diff --git a/data/summaries/tumblr_rsbmrfhyot1yxv6w4.txt b/data/summaries/tumblr_rsbmrfhyot1yxv6w4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a92a323e9bc98c77c5850acda9048598a0e07be3 --- /dev/null +++ b/data/summaries/tumblr_rsbmrfhyot1yxv6w4.txt @@ -0,0 +1 @@ +Here is a summary of the video file. The video features a split-screen TikTok duet with the text “HELP” on top. The left side of the split screen shows a man with glasses and a beard. He is reacting to the right side of the split screen, which shows a person who puts an ammonia based toilet cleaner, and bleach in the toilet. The man on the left comments that that will make mustard gas. The person on the right continues to put different toilet bowl cleaners in the toilet bowl. At the end of the video, the person on the left screams. \ No newline at end of file diff --git a/data/summaries/tumblr_rscdeylf531w5pr9j.txt b/data/summaries/tumblr_rscdeylf531w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..060acff525b9aa0c2983a408124c1f4b38a593f2 --- /dev/null +++ b/data/summaries/tumblr_rscdeylf531w5pr9j.txt @@ -0,0 +1 @@ +A sand boa pokes its head out of a green glove. The snake's body is orange with brown oval spots. The snake's body is completely inside the glove before it starts to poke its head out. \ No newline at end of file diff --git a/data/summaries/tumblr_rsfddakv9a1vfklhbfff.txt b/data/summaries/tumblr_rsfddakv9a1vfklhbfff.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d196d127d16fab08bc76e670d86fbfb1a40afbc --- /dev/null +++ b/data/summaries/tumblr_rsfddakv9a1vfklhbfff.txt @@ -0,0 +1 @@ +A man holds a large cat mask toward the camera and meows. \ No newline at end of file diff --git a/data/summaries/tumblr_rshdrqv2t11tvhzlo.txt b/data/summaries/tumblr_rshdrqv2t11tvhzlo.txt new file mode 100644 index 0000000000000000000000000000000000000000..0345d1b2fc1858a6fd3a5474ea1d2e1f2d119490 --- /dev/null +++ b/data/summaries/tumblr_rshdrqv2t11tvhzlo.txt @@ -0,0 +1 @@ +Link stands in a grassy field with a ruined stone building behind him. A black flag falls from the top of the ruin and lands near Link. \ No newline at end of file diff --git a/data/summaries/tumblr_rskz58sghe1qhs0m6.txt b/data/summaries/tumblr_rskz58sghe1qhs0m6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec4f58fd035908e1a0925afb17741e5af8bee1c3 --- /dev/null +++ b/data/summaries/tumblr_rskz58sghe1qhs0m6.txt @@ -0,0 +1 @@ +Here's a summary of the file: The video shows a man interviewing other men about their physiques and how they would rate other people's physiques. \ No newline at end of file diff --git a/data/summaries/tumblr_rsmnpwbimy1z43swh_720.txt b/data/summaries/tumblr_rsmnpwbimy1z43swh_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..702ab0bab02f21ddc23362ba5af7f21a436427e1 --- /dev/null +++ b/data/summaries/tumblr_rsmnpwbimy1z43swh_720.txt @@ -0,0 +1 @@ +A room with many cats in it falls into disarray as what sounds like an earthquake strikes. The cats scatter as furniture tips over and is destroyed, yet some of them climb onto higher levels, as if it doesn't faze them. \ No newline at end of file diff --git a/data/summaries/tumblr_rsqsgkntxj1zf1e2z.txt b/data/summaries/tumblr_rsqsgkntxj1zf1e2z.txt new file mode 100644 index 0000000000000000000000000000000000000000..574345bda89d0927fbe3744363a223718ac6cb71 --- /dev/null +++ b/data/summaries/tumblr_rsqsgkntxj1zf1e2z.txt @@ -0,0 +1 @@ +The video shows a damaged white car on the side of a road, then switches to showing a black car with a damaged front bumper on a road. The video goes on to show a small, toy race car driving around a street intersection while the person filming describes what is happening. \ No newline at end of file diff --git a/data/summaries/tumblr_rstul0hbac1y5ejpt.txt b/data/summaries/tumblr_rstul0hbac1y5ejpt.txt new file mode 100644 index 0000000000000000000000000000000000000000..1908b88a0f7b76090f90b6c85346822b8c0e0e8c --- /dev/null +++ b/data/summaries/tumblr_rstul0hbac1y5ejpt.txt @@ -0,0 +1 @@ +On a French TV show called “Flash Debate” a man in a tan suit asks a guest, “You used to be a girl, and now you’re a boy. And you’re happy.” The guest says, “Yes, I’m really happy.” Another guest says, “Sure, but listen…” before being cut off by the host. The host then signs off the show. \ No newline at end of file diff --git a/data/summaries/tumblr_rsu14qwyix1rd9hsl.txt b/data/summaries/tumblr_rsu14qwyix1rd9hsl.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e731f420bf87ca448637b439d93c44dfb0399e3 --- /dev/null +++ b/data/summaries/tumblr_rsu14qwyix1rd9hsl.txt @@ -0,0 +1 @@ +A video of a first-person perspective gaming video with a player on the screen in the top left, saying "So these past few years with you have been incredible, and I truly wouldn't want to game with anyone else. I love you, and since Warzone is the first game we've ever played together, what better place to ask, will you marry me?" The gamer replies "Oh my god, yes! I'll marry you!" Another person says "Oh my god, congratulations guys!" at the end of the video. The video contains a TikTok logo, and a username. \ No newline at end of file diff --git a/data/summaries/tumblr_rszl0h2osr1z7ukda.txt b/data/summaries/tumblr_rszl0h2osr1z7ukda.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e8084255a4ce4af9ca25161500d3249a8d52530 --- /dev/null +++ b/data/summaries/tumblr_rszl0h2osr1z7ukda.txt @@ -0,0 +1 @@ +An orange tabby cat attempts to jump up to the sink cabinet handles but is unsuccessful at first. Once they do manage to grab the handles, they use them to pull themselves up onto the sink. \ No newline at end of file diff --git a/data/summaries/tumblr_rt2rlizwsj1x4pmbc.txt b/data/summaries/tumblr_rt2rlizwsj1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..18b9e1db2a8698310b5786256eaf4fa17af393f0 --- /dev/null +++ b/data/summaries/tumblr_rt2rlizwsj1x4pmbc.txt @@ -0,0 +1 @@ +The TikTok video shows an orange and white cat meowing. The video is split-screen with a drawing of the cat on the left and the real cat on the right. The drawing is changed to look like a singing cartoon character. The TikTok watermark and the uploader's username, @whatstheirface, are displayed in the upper left corner. A TikTok logo is briefly displayed at the end. \ No newline at end of file diff --git a/data/summaries/tumblr_rt31xxqlcs1ujg2ay.txt b/data/summaries/tumblr_rt31xxqlcs1ujg2ay.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9dd44bd7be70af549239730fca7f4bd1b606781 --- /dev/null +++ b/data/summaries/tumblr_rt31xxqlcs1ujg2ay.txt @@ -0,0 +1 @@ +The video shows a man with a bald head, wearing a black zip-up hoodie, asking if he just wrote the song of the summer. The music plays with a carnival, summery sound, while the man dances enthusiastically. \ No newline at end of file diff --git a/data/summaries/tumblr_rtbmiqksae1w5pr9j.txt b/data/summaries/tumblr_rtbmiqksae1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e3501f94a134f5aaffd7a259dba54c5a7f31e01 --- /dev/null +++ b/data/summaries/tumblr_rtbmiqksae1w5pr9j.txt @@ -0,0 +1 @@ +A playful tabby cat with white paws adorned in black and white striped socks walks across a wooden floor, then stops to sniff at one of the socks that has fallen off. \ No newline at end of file diff --git a/data/summaries/tumblr_rtboz01lbt1vmobp0.txt b/data/summaries/tumblr_rtboz01lbt1vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..da8480f06a0d739ccbb512486470970acc0f08dc --- /dev/null +++ b/data/summaries/tumblr_rtboz01lbt1vmobp0.txt @@ -0,0 +1 @@ +A person is petting a brown and white cat on its head, causing the cat to repeatedly open its mouth in a yawn-like manner. The cat looks relaxed and content as it receives affection from the person's hand. \ No newline at end of file diff --git a/data/summaries/tumblr_rtf2rqs3ub1yajgpc.txt b/data/summaries/tumblr_rtf2rqs3ub1yajgpc.txt new file mode 100644 index 0000000000000000000000000000000000000000..a759669073bad9c78c71ef38266995adfd77e49d --- /dev/null +++ b/data/summaries/tumblr_rtf2rqs3ub1yajgpc.txt @@ -0,0 +1 @@ +The TikTok user @punishedfortniter shares a video entitled "signs you are not straight (boy edition)". In the video, the user on the right shows his red-and-black colored hair and facial tattoos as the first sign that someone might be gay. He adds that "you like boys". The user on the left smiles to the statement before saying "No". \ No newline at end of file diff --git a/data/summaries/tumblr_rtju7b98et1t4f51m.txt b/data/summaries/tumblr_rtju7b98et1t4f51m.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0daba949105ad6b3072efa9bbc879183fc1db3e --- /dev/null +++ b/data/summaries/tumblr_rtju7b98et1t4f51m.txt @@ -0,0 +1 @@ +The video features a man excitedly exclaiming "Vierness" (Friday in Spanish) followed by a sequence of emoji overlays on his face. The emojis express happiness, winking, and a range of neutral and skeptical expressions. The background music adds to the energetic and fun vibe. \ No newline at end of file diff --git a/data/summaries/tumblr_rtlk7590yl1zs633i.txt b/data/summaries/tumblr_rtlk7590yl1zs633i.txt new file mode 100644 index 0000000000000000000000000000000000000000..f823dadc1d432ea119db5dbea6cb00378b8c1b76 --- /dev/null +++ b/data/summaries/tumblr_rtlk7590yl1zs633i.txt @@ -0,0 +1 @@ +A knight in armor walks down a stone hallway. He is struck by a falling object and falls unconscious. \ No newline at end of file diff --git a/data/summaries/tumblr_rtu08tdqdk1w4j956.txt b/data/summaries/tumblr_rtu08tdqdk1w4j956.txt new file mode 100644 index 0000000000000000000000000000000000000000..dca4de3ddf304e5d53a9dc481604517c435b9e7b --- /dev/null +++ b/data/summaries/tumblr_rtu08tdqdk1w4j956.txt @@ -0,0 +1 @@ +Lady Gaga is on a talk show and is asked if she likes Katy Perry's song, "I Kissed A Girl." Gaga says she doesn't think Katy Perry has actually kissed a girl. \ No newline at end of file diff --git a/data/summaries/tumblr_ru08mplzbx1ydkkl5.txt b/data/summaries/tumblr_ru08mplzbx1ydkkl5.txt new file mode 100644 index 0000000000000000000000000000000000000000..673e0ed588ded8c3cc9fcbfc1e1cde97ada1e3f6 --- /dev/null +++ b/data/summaries/tumblr_ru08mplzbx1ydkkl5.txt @@ -0,0 +1 @@ +The streamer rates methods of execution with his audience. Guillotine would be his top choice, but not as a public execution with people buying snacks and tomatoes to throw. He also performs an impersonation. \ No newline at end of file diff --git a/data/summaries/tumblr_ru3f7xehbj1yibpma.txt b/data/summaries/tumblr_ru3f7xehbj1yibpma.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d73054b0668fba8f5653df20c1aff746db85931 --- /dev/null +++ b/data/summaries/tumblr_ru3f7xehbj1yibpma.txt @@ -0,0 +1 @@ +A Tesla's autopilot system identifies a horse-drawn carriage as a truck, and upon the driver's intervention, the system correctly recognizes the carriage as a car. \ No newline at end of file diff --git a/data/summaries/tumblr_ruepjvcmnp1yjz13y.txt b/data/summaries/tumblr_ruepjvcmnp1yjz13y.txt new file mode 100644 index 0000000000000000000000000000000000000000..f77e04debb465b2a846908a299c4f35cfd253f21 --- /dev/null +++ b/data/summaries/tumblr_ruepjvcmnp1yjz13y.txt @@ -0,0 +1,3 @@ +Here's a short summary of the file: + +The video is a meme featuring two women onstage at an awards show. Text overlaid on the video reads "seals when the function has fish." As they announce the award, the audience cheers, which sounds like the barking of seals. \ No newline at end of file diff --git a/data/summaries/tumblr_ruewhsjaag1zik2zt_720.txt b/data/summaries/tumblr_ruewhsjaag1zik2zt_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a573f8d5b186589df1f5d13dd7072a36da4b3e5 --- /dev/null +++ b/data/summaries/tumblr_ruewhsjaag1zik2zt_720.txt @@ -0,0 +1 @@ +The video is a recording of a text message exchange where someone claiming to be Lin Manuel Miranda sends a rap audio file to a person named Toby Fox. Toby Fox is immediately wary and asks who this is, then asks what the file is, getting progressively more aggressive. The audio file turns out to be someone rapping about the Undertale character Sans and another character called Papyrus, who rhymes about how he is all bone. The original sender is increasingly frantic and offers $20 not to open the file and then demands if Toby Fox is listening to it and then begs them to stop. \ No newline at end of file diff --git a/data/summaries/tumblr_rufc5eggv91qjnhqg.txt b/data/summaries/tumblr_rufc5eggv91qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..3351123ca67ddc9b4d7bba98b11cc156f439a1a0 --- /dev/null +++ b/data/summaries/tumblr_rufc5eggv91qjnhqg.txt @@ -0,0 +1 @@ +A man plays a crane claw game, winning a gray elephant plushie. The bottom of the game machine then opens up and an orange tabby cat emerges. The cat stretches along the floor in front of the brightly lit machine, then gets picked up by the man. \ No newline at end of file diff --git a/data/summaries/tumblr_run6ts1vnb1w5pr9j.txt b/data/summaries/tumblr_run6ts1vnb1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..72848df1bd7911c88c3a84c294a6de96770d63e7 --- /dev/null +++ b/data/summaries/tumblr_run6ts1vnb1w5pr9j.txt @@ -0,0 +1 @@ +The video shows a person wearing VR goggles and a yellow sweater, sitting in the passenger seat of a car and operating a drone remote. The camera then moves to show the car is in drive, going down a rural road next to a grassy field with hills in the background. The drone flies a short distance and crashes. \ No newline at end of file diff --git a/data/summaries/tumblr_run6wxg0h51w5pr9j.txt b/data/summaries/tumblr_run6wxg0h51w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..75b63c4e4ba19efc19487563509d65925365c74f --- /dev/null +++ b/data/summaries/tumblr_run6wxg0h51w5pr9j.txt @@ -0,0 +1 @@ +A white cockatoo parrot barks like a dog, and the barking intensifies as a man opens the door. As the man exits the house, the parrot follows him and continues barking at his legs, before transitioning to saying "Hi" and "Bye". \ No newline at end of file diff --git a/data/summaries/tumblr_run7c1v0sm1w5pr9j.txt b/data/summaries/tumblr_run7c1v0sm1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b853082b164fe1e3a03d86c925afdefa042f960 --- /dev/null +++ b/data/summaries/tumblr_run7c1v0sm1w5pr9j.txt @@ -0,0 +1 @@ +A group of young men playing soccer on an outdoor court. Some of the balls have ended up on the netting above. \ No newline at end of file diff --git a/data/summaries/tumblr_ruz61u8uwl1zvw9u1.txt b/data/summaries/tumblr_ruz61u8uwl1zvw9u1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f187f55c6e2e06ec314075d5fd93de62a22d6c45 --- /dev/null +++ b/data/summaries/tumblr_ruz61u8uwl1zvw9u1.txt @@ -0,0 +1 @@ +A man in a black cap and jacket performs a dance routine with superimposed dancers, first floating behind him and later appearing to dance on his shoulder and inside his jacket. The background features a blue sky, a rural brick structure, and a cluttered area full of debris. \ No newline at end of file diff --git a/data/summaries/tumblr_rv0et0ffsf1w5pr9j.txt b/data/summaries/tumblr_rv0et0ffsf1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e21f28061966d6fd994b5fdf3d6948d8e66f2e4 --- /dev/null +++ b/data/summaries/tumblr_rv0et0ffsf1w5pr9j.txt @@ -0,0 +1 @@ +A white dog runs into the grass, quickly gets tired, and lays down. diff --git a/data/summaries/tumblr_rv6eyfwjw61yd1erx_720.txt b/data/summaries/tumblr_rv6eyfwjw61yd1erx_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..cda89e5657357918c4240acb7c2c3489b5242aff --- /dev/null +++ b/data/summaries/tumblr_rv6eyfwjw61yd1erx_720.txt @@ -0,0 +1 @@ +A player in the game "The Legend of Zelda: Tears of the Kingdom" is inside a small wooden cart with lit wheels. The player is attacked by a large monster, who swings a weapon at the cart, and the player is killed by the cart wheel, resulting in "Game Over." \ No newline at end of file diff --git a/data/summaries/tumblr_rv9vjneixd1yjf3mv.txt b/data/summaries/tumblr_rv9vjneixd1yjf3mv.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ab829fd5e5bc8d2f43de8e1145c894ec7d9fdf8 --- /dev/null +++ b/data/summaries/tumblr_rv9vjneixd1yjf3mv.txt @@ -0,0 +1 @@ +A crow walks on the snow-covered ground. The sound of a car horn can be heard in the background. The crow then comes closer to the camera. \ No newline at end of file diff --git a/data/summaries/tumblr_rvoq3kn2f51yq0dl2_720.txt b/data/summaries/tumblr_rvoq3kn2f51yq0dl2_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..b488b85153c6e83d631d8f1ac8c7101c66c841a1 --- /dev/null +++ b/data/summaries/tumblr_rvoq3kn2f51yq0dl2_720.txt @@ -0,0 +1 @@ +Two white ducks are outside on a sunny day. One is laying on its back in some leaves, while the other is standing on a concrete surface next to the leaves. \ No newline at end of file diff --git a/data/summaries/tumblr_rvzry4eisi1tjrwu3.txt b/data/summaries/tumblr_rvzry4eisi1tjrwu3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a62cd3feb004c7fb96257b994f00fb017411e66 --- /dev/null +++ b/data/summaries/tumblr_rvzry4eisi1tjrwu3.txt @@ -0,0 +1 @@ +A yellow parrot perched on a bookshelf among stuffed animals is warned not to jump. The parrot doesn't listen and falls off the shelf onto a nearby perch. \ No newline at end of file diff --git a/data/summaries/tumblr_rw1hnnqntm1ucoynk.txt b/data/summaries/tumblr_rw1hnnqntm1ucoynk.txt new file mode 100644 index 0000000000000000000000000000000000000000..89a5d41b29ba43cec01f013c9b50facadc2de830 --- /dev/null +++ b/data/summaries/tumblr_rw1hnnqntm1ucoynk.txt @@ -0,0 +1 @@ +Link is playing The Legend of Zelda: Tears of the Kingdom. He sneaks up behind a Stalkoblin, then climbs over some rocks. He finds an area of the map covered in gloom and three dead trees with the Korok puzzle challenge. He uses bomb flowers to burn the trees and claim the Korok seed. \ No newline at end of file diff --git a/data/summaries/tumblr_rw30fe6mbg1qjnhqg.txt b/data/summaries/tumblr_rw30fe6mbg1qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4d2b92864ce966436f8c64ef0032fa54268d6ef --- /dev/null +++ b/data/summaries/tumblr_rw30fe6mbg1qjnhqg.txt @@ -0,0 +1 @@ +A washing machine with a blue light inside plays barking and crying sounds. Text on the screen says "Neighbours don't believe me it's the washing machine." \ No newline at end of file diff --git a/data/summaries/tumblr_rw4cq9d2rv1z5l7qe.txt b/data/summaries/tumblr_rw4cq9d2rv1z5l7qe.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ab45a048a3aa142c46ec90e3b6fd2a1cf062104 --- /dev/null +++ b/data/summaries/tumblr_rw4cq9d2rv1z5l7qe.txt @@ -0,0 +1 @@ +A bunny wakes up from a nap in its cage. \ No newline at end of file diff --git a/data/summaries/tumblr_rw5fx8nkgl1a1zhk7.txt b/data/summaries/tumblr_rw5fx8nkgl1a1zhk7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4645ea0f0cc75cf82049f295828f13fd8cc63a33 --- /dev/null +++ b/data/summaries/tumblr_rw5fx8nkgl1a1zhk7.txt @@ -0,0 +1 @@ +A pink pig toy with a tie is violently hit and smacked, before being thrown off of a high location and landing with a bounce on the ground. \ No newline at end of file diff --git a/data/summaries/tumblr_rw9i8qloyb1un8t8y.txt b/data/summaries/tumblr_rw9i8qloyb1un8t8y.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbbb0908b5a943dbe41bebe9a84828b8a6b20ebc --- /dev/null +++ b/data/summaries/tumblr_rw9i8qloyb1un8t8y.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +The TikTok video shows a man who is promoting the Versace Eros perfume in a humorous and exaggerated way. He declares himself "the best" and "the champion" while spraying the fragrance liberally. He also shows his workspace. The caption for the video is @jeremyfragrance. \ No newline at end of file diff --git a/data/summaries/tumblr_rwfra8ef391xv4rgy.txt b/data/summaries/tumblr_rwfra8ef391xv4rgy.txt new file mode 100644 index 0000000000000000000000000000000000000000..6afc0db0a1481c0bf78146030a212193515d6025 --- /dev/null +++ b/data/summaries/tumblr_rwfra8ef391xv4rgy.txt @@ -0,0 +1 @@ +A rabbit plays with a roll of toilet paper, followed by an explosion of dirt and debris in a wooded area. \ No newline at end of file diff --git a/data/summaries/tumblr_rwin3zpb181a55lqo.txt b/data/summaries/tumblr_rwin3zpb181a55lqo.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd86296713884450fa4b332c5170903f7d1f47a2 --- /dev/null +++ b/data/summaries/tumblr_rwin3zpb181a55lqo.txt @@ -0,0 +1 @@ +A yellow fish appears to try to eat a grey, puffier-looking fish in an aquarium. There's techno music overlaid on the video. \ No newline at end of file diff --git a/data/summaries/tumblr_rwmvfj1km21qejbir_720.txt b/data/summaries/tumblr_rwmvfj1km21qejbir_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..8561b8fce5ad3839dc72a778c59a6d97b76d374c --- /dev/null +++ b/data/summaries/tumblr_rwmvfj1km21qejbir_720.txt @@ -0,0 +1 @@ +An orange cat stands on its hind legs to try to reach a cat-shaped towel hanging from the oven door. The cat jumps up again but fails to grab the towel. diff --git a/data/summaries/tumblr_rwo1q0udhk1u890nd.txt b/data/summaries/tumblr_rwo1q0udhk1u890nd.txt new file mode 100644 index 0000000000000000000000000000000000000000..fac8b48a0b354963964f32ab7dcc51352b727179 --- /dev/null +++ b/data/summaries/tumblr_rwo1q0udhk1u890nd.txt @@ -0,0 +1 @@ +A deathclaw, the hostile enemy from the video game Fallout 4, appears to be on the scene. A dog’s angry bark can be heard. The player hides inside a yellow vehicle. \ No newline at end of file diff --git a/data/summaries/tumblr_rwu3e8lkaw1rfnzra.txt b/data/summaries/tumblr_rwu3e8lkaw1rfnzra.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5179cd19cb7ccd7680c85ace73d570a2ada0e4b --- /dev/null +++ b/data/summaries/tumblr_rwu3e8lkaw1rfnzra.txt @@ -0,0 +1 @@ +The video shows a woman looking directly at the camera. She asks "Okay, but what's this thing doing here?" She's told the thing is called Yoshi. She responds, "Right...so what's this doing here?" A new woman answers, "He must be getting popular in the Soviet Union." \ No newline at end of file diff --git a/data/summaries/tumblr_rwuqb03ctu1wem4ug.txt b/data/summaries/tumblr_rwuqb03ctu1wem4ug.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e83348bd71a4f9d7933c3971ddb6a5c082a5591 --- /dev/null +++ b/data/summaries/tumblr_rwuqb03ctu1wem4ug.txt @@ -0,0 +1 @@ +Link uses Cryonis to lift a large rock from a lava pool and places it on a grassy ledge. He then uses a Korok leaf to blow a second rock from its perch. With the two rocks in place, a Korok puzzle is solved, spawning a glowing orb which is collected. \ No newline at end of file diff --git a/data/summaries/tumblr_rx385l20h81vx9xi5.txt b/data/summaries/tumblr_rx385l20h81vx9xi5.txt new file mode 100644 index 0000000000000000000000000000000000000000..18d8b780a147b86cd9a4a79155326e3abc73bfc5 --- /dev/null +++ b/data/summaries/tumblr_rx385l20h81vx9xi5.txt @@ -0,0 +1 @@ +In a supermarket aisle, a person in a black hoodie and a blue baseball cap squats in front of a self-checkout kiosk and attempts a split several times, falling during each attempt. Two people are next to them at the kiosk, and other people are walking by in the background of the grocery store. \ No newline at end of file diff --git a/data/summaries/tumblr_rx937l5x1g1qejbir.txt b/data/summaries/tumblr_rx937l5x1g1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..47227ba6039d8e1a0e267e82c2699dd05e69c886 --- /dev/null +++ b/data/summaries/tumblr_rx937l5x1g1qejbir.txt @@ -0,0 +1 @@ +A chubby tabby cat awkwardly jumps from a table to a red floral-print armchair and then clumsily sits down. \ No newline at end of file diff --git a/data/summaries/tumblr_rxpocdpbxu1x41t2d.txt b/data/summaries/tumblr_rxpocdpbxu1x41t2d.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d12c9aea619baf3a578b273e853366aa292f2e5 --- /dev/null +++ b/data/summaries/tumblr_rxpocdpbxu1x41t2d.txt @@ -0,0 +1 @@ +At night, an individual is observed shaking a stop sign and eventually pulling it down. diff --git a/data/summaries/tumblr_rxy7kvjqxh1z2sv3k.txt b/data/summaries/tumblr_rxy7kvjqxh1z2sv3k.txt new file mode 100644 index 0000000000000000000000000000000000000000..70e1d81f06a4c1969c7ccb9e2e9e62b358802dae --- /dev/null +++ b/data/summaries/tumblr_rxy7kvjqxh1z2sv3k.txt @@ -0,0 +1 @@ +An animation features a small, pink, fantasy creature with outstretched arms, set against a black background, accompanied by lively music. \ No newline at end of file diff --git a/data/summaries/tumblr_ry7gioasqv1zxewsp_720.txt b/data/summaries/tumblr_ry7gioasqv1zxewsp_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..24d3595d783884c5078d16ab5a52fcbf530caf71 --- /dev/null +++ b/data/summaries/tumblr_ry7gioasqv1zxewsp_720.txt @@ -0,0 +1 @@ +A person on TikTok reacts to the moment a VTuber concert reveals their eyes, mimicking the reactions of a fan. The person is seen singing and dancing along with the music, showing excitement over the reveal. \ No newline at end of file diff --git a/data/summaries/tumblr_ryb8tv9aru1vmobp0.txt b/data/summaries/tumblr_ryb8tv9aru1vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a391db593ed0e98bd50b52839d85395a7a83902 --- /dev/null +++ b/data/summaries/tumblr_ryb8tv9aru1vmobp0.txt @@ -0,0 +1 @@ +A man in a neon yellow shirt is entering an apartment through the door with a bag, a water bottle, and a jacket when a cat runs up to him and squeezes between his legs. The cat is able to escape through the door and into the hall. The filmer comments "My cats brilliant escape attempt" and she says “be careful babe” and laughs hysterically. \ No newline at end of file diff --git a/data/summaries/tumblr_ryg007debm1qjnhqg.txt b/data/summaries/tumblr_ryg007debm1qjnhqg.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3e54a15bc53d2bda86d83324dad21f7b6382454 --- /dev/null +++ b/data/summaries/tumblr_ryg007debm1qjnhqg.txt @@ -0,0 +1 @@ +Two Italian Greyhound dogs are excited for a treat, jumping up and down. The person holding the treat teases the dogs by waving the treat while they reach out for it on their hind legs. The treat appears to be a green piece of food, perhaps a vegetable. \ No newline at end of file diff --git a/data/summaries/tumblr_ryjx4q1bke1y95toz.txt b/data/summaries/tumblr_ryjx4q1bke1y95toz.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d060d1df4eed90d0a0448acbb62fdce6a42c2c8 --- /dev/null +++ b/data/summaries/tumblr_ryjx4q1bke1y95toz.txt @@ -0,0 +1 @@ +The video shows a piece of raw pork being sliced into thin strips. Some of the pork is cut into cubes. The video then shows someone holding a metal grinder containing ground herbs. \ No newline at end of file diff --git a/data/summaries/tumblr_rz3xo8lkgq1vwyv80.txt b/data/summaries/tumblr_rz3xo8lkgq1vwyv80.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac313e112ebb5d6dc0234822490925dc7967f3f2 --- /dev/null +++ b/data/summaries/tumblr_rz3xo8lkgq1vwyv80.txt @@ -0,0 +1 @@ +A small white dog, possibly a poodle mix, is getting groomed. The dog is standing on a pink surface, likely a grooming table. The dog looks anxious before the grooming but happier afterward. The grooming process involves shaving the dog's fur. \ No newline at end of file diff --git a/data/summaries/tumblr_rznavckbzp1a6wdmz_720.txt b/data/summaries/tumblr_rznavckbzp1a6wdmz_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed7ab912977f9520ec8f246ea128a763136ddcfa --- /dev/null +++ b/data/summaries/tumblr_rznavckbzp1a6wdmz_720.txt @@ -0,0 +1 @@ +A calico cat pushes its way through a screen door to enter a tiled porch or balcony. \ No newline at end of file diff --git a/data/summaries/tumblr_rzpkxhtszi1x4pmbc.txt b/data/summaries/tumblr_rzpkxhtszi1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f2c3d49254fb6801981e5a26c24b705e5b7eb93 --- /dev/null +++ b/data/summaries/tumblr_rzpkxhtszi1x4pmbc.txt @@ -0,0 +1 @@ +At the vet's office, a brown-and-white dog attacks a rolling stool and tries to take bites out of it. diff --git a/data/summaries/tumblr_s03vjpmxba1xfdj5z.txt b/data/summaries/tumblr_s03vjpmxba1xfdj5z.txt new file mode 100644 index 0000000000000000000000000000000000000000..c38c69dc54d5b2a6fc7a47bbd9e4d43f101c7c13 --- /dev/null +++ b/data/summaries/tumblr_s03vjpmxba1xfdj5z.txt @@ -0,0 +1 @@ +A gray rabbit is seen standing on its hind legs at a wire pet gate. A squeaky, trombone-like sound effect is played as the bunny tips the gate over and lays on it, still on its back. \ No newline at end of file diff --git a/data/summaries/tumblr_s07m7vxz231a7joxk_720.txt b/data/summaries/tumblr_s07m7vxz231a7joxk_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc60f1d66c7a5a40536673f3e09cf166904cc700 --- /dev/null +++ b/data/summaries/tumblr_s07m7vxz231a7joxk_720.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +An orange cat plays on a love seat with green cushions with another black and white cat. The orange cat climbs up the back of the seat. \ No newline at end of file diff --git a/data/summaries/tumblr_s09x3pixvj1zl1zrz.txt b/data/summaries/tumblr_s09x3pixvj1zl1zrz.txt new file mode 100644 index 0000000000000000000000000000000000000000..865e995772af68662834ae4985e30115b850c8b0 --- /dev/null +++ b/data/summaries/tumblr_s09x3pixvj1zl1zrz.txt @@ -0,0 +1 @@ +Here's a summary of the file: A TikTok by Mr. Zack123. It is a response to a comment saying “Big brother is watching”. The video shows a person’s face edited into a sphere over a graphic of Las Vegas. The words “scanning for indecent behavior” appears on the screen. The face in the sphere moves and speaks, telling someone that they are participating in public urination. The sphere then becomes a single eye, while the graphic zooms in to a close up. The sphere becomes a face again and says the orb has decided to grant mercy. \ No newline at end of file diff --git a/data/summaries/tumblr_s0gcdamuvq1v5t3ey.txt b/data/summaries/tumblr_s0gcdamuvq1v5t3ey.txt new file mode 100644 index 0000000000000000000000000000000000000000..58a400115a7e6d0b4ad2ac0a7dacb36c62a6f838 --- /dev/null +++ b/data/summaries/tumblr_s0gcdamuvq1v5t3ey.txt @@ -0,0 +1 @@ +Two men are sitting in front of a grey background. The man on the right is holding up a photo of a woman and says, "Take a look at this Sheila, ain't she the tits? I'll tell you, she wouldn't have boy or my eggs." The man on the left looks at the man on the right, who has a perturbed look. The man on the left asks "Does she know how to make a grilled cheese?". diff --git a/data/summaries/tumblr_s0grz74h561xgsqd0.txt b/data/summaries/tumblr_s0grz74h561xgsqd0.txt new file mode 100644 index 0000000000000000000000000000000000000000..31da6fa05163e0913e35eb37b8f83c2abaf58f49 --- /dev/null +++ b/data/summaries/tumblr_s0grz74h561xgsqd0.txt @@ -0,0 +1 @@ +A hand slams a soda can down on a table in front of a dog, and the dog sniffs the can. An electronic beat plays. \ No newline at end of file diff --git a/data/summaries/tumblr_s10h34cmmr1zj07jt.txt b/data/summaries/tumblr_s10h34cmmr1zj07jt.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0f5ad14149cf533a62bc7e39dd75fe50efa8852 --- /dev/null +++ b/data/summaries/tumblr_s10h34cmmr1zj07jt.txt @@ -0,0 +1 @@ +An animated music video features a group of high school students in a hallway, and one girl comments about a beatboxing puppy. A corgi puppy in front of the lockers then beatboxes and raps a song, then runs down the hallway. \ No newline at end of file diff --git a/data/summaries/tumblr_s15t5gfquq1rd9hsl.txt b/data/summaries/tumblr_s15t5gfquq1rd9hsl.txt new file mode 100644 index 0000000000000000000000000000000000000000..46c39e2c80cc30384ca5d643b192f8bed2e79a3a --- /dev/null +++ b/data/summaries/tumblr_s15t5gfquq1rd9hsl.txt @@ -0,0 +1 @@ +Here's a summary of the file: In this TikTok video by subwayoracle, a woman is asked about the message on her shirt, "I love sluts." She says that she's heard that the interviewer likes getting his bootyhole played with. The interviewer jokes that he doesn't. But he does admit that a girl once played with it, and he didn't like it because she used too many fingers. When the woman asks if he wants to join the slut crew, he agrees. She says she will put a leash on him and walk him like a dog, but he says someone did that to his uncle and then lost him. \ No newline at end of file diff --git a/data/summaries/tumblr_s16yqk43g81xddfa0.txt b/data/summaries/tumblr_s16yqk43g81xddfa0.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcb10200b1afcbefe49dfb800b5c0e9ce18d87f6 --- /dev/null +++ b/data/summaries/tumblr_s16yqk43g81xddfa0.txt @@ -0,0 +1 @@ +A man in a suit gives a speech. He makes a shocking statement. He then takes a drink from a glass. \ No newline at end of file diff --git a/data/summaries/tumblr_s1ipcdvlrl1zf1e2z.txt b/data/summaries/tumblr_s1ipcdvlrl1zf1e2z.txt new file mode 100644 index 0000000000000000000000000000000000000000..274f8968653d8fd06eb8472da5f4d46998c69746 --- /dev/null +++ b/data/summaries/tumblr_s1ipcdvlrl1zf1e2z.txt @@ -0,0 +1 @@ +A man opens a bathroom door to reveal a green parrot standing on the edge of the toilet bowl, looking into the toilet. \ No newline at end of file diff --git a/data/summaries/tumblr_s1iyd6p8md1u890nd.txt b/data/summaries/tumblr_s1iyd6p8md1u890nd.txt new file mode 100644 index 0000000000000000000000000000000000000000..042e559f2c9eabb48e411543ec2edf78d67b4db6 --- /dev/null +++ b/data/summaries/tumblr_s1iyd6p8md1u890nd.txt @@ -0,0 +1 @@ +Ada Wong from the video game series Resident Evil says, "Where's Leon when I need him?" The scene cuts to a video game where a male character with silver hair is playing Papa's Freezeria Deluxe. \ No newline at end of file diff --git a/data/summaries/tumblr_s1kzp3zi7k1ykp17t.txt b/data/summaries/tumblr_s1kzp3zi7k1ykp17t.txt new file mode 100644 index 0000000000000000000000000000000000000000..2258a2b1202d7620d46b7e34c4edde13d9a0d050 --- /dev/null +++ b/data/summaries/tumblr_s1kzp3zi7k1ykp17t.txt @@ -0,0 +1 @@ +A tabby cat sitting on a table is caught on camera attempting to eat a plastic straw. The caption on the video claims the cat will try to eat literally anything. diff --git a/data/summaries/tumblr_s1o3mldeot1zrdgct.txt b/data/summaries/tumblr_s1o3mldeot1zrdgct.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7010524a8424f4052d4a81435873d270a9ec49f --- /dev/null +++ b/data/summaries/tumblr_s1o3mldeot1zrdgct.txt @@ -0,0 +1 @@ +A person touches the paw of a gray and white cat with their finger, and the cat closes its eyes. \ No newline at end of file diff --git a/data/summaries/tumblr_s1taj9tehe1a3apju.txt b/data/summaries/tumblr_s1taj9tehe1a3apju.txt new file mode 100644 index 0000000000000000000000000000000000000000..59573590077d2d89546983e44cc79ebf79b43a8e --- /dev/null +++ b/data/summaries/tumblr_s1taj9tehe1a3apju.txt @@ -0,0 +1 @@ +A dog imitates a blonde woman who is talking about a pink Lamborghini. The dog plays the piano, opens luggage, and growls in imitation of the car. \ No newline at end of file diff --git a/data/summaries/tumblr_s1vn9gpnhe1ujg2ay.txt b/data/summaries/tumblr_s1vn9gpnhe1ujg2ay.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f27f344310350ff0f4247eb7b5503d536e8595e --- /dev/null +++ b/data/summaries/tumblr_s1vn9gpnhe1ujg2ay.txt @@ -0,0 +1 @@ +Donald Trump is giving a speech at a 'Commit to Caucus' event in Ottumwa, Iowa. He is talking about a hypothetical situation where he is on top of a battery in a sinking boat. The boat is flooding and he sees a shark. He says he would choose electrocution over a shark attack every time. \ No newline at end of file diff --git a/data/summaries/tumblr_s1zc80t5741z17rfw.txt b/data/summaries/tumblr_s1zc80t5741z17rfw.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ea9d4f1e39e024d2851c26803172184fef00ac9 --- /dev/null +++ b/data/summaries/tumblr_s1zc80t5741z17rfw.txt @@ -0,0 +1 @@ +A man is standing next to the back of a truck with a camel in the bed. The camel has a rope around its neck, and it is making a guttural noise. The man laughs. \ No newline at end of file diff --git a/data/summaries/tumblr_s29dumma4s1z9bbv3.txt b/data/summaries/tumblr_s29dumma4s1z9bbv3.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d6c6f7a64d932beaff984d28339f9fb981c15c --- /dev/null +++ b/data/summaries/tumblr_s29dumma4s1z9bbv3.txt @@ -0,0 +1 @@ +Detective Pikachu eats some macaroni and cheese and has a bad dream about divorce. \ No newline at end of file diff --git a/data/summaries/tumblr_s2co0y6tbw1rd9hsl.txt b/data/summaries/tumblr_s2co0y6tbw1rd9hsl.txt new file mode 100644 index 0000000000000000000000000000000000000000..e20e8ff671708460fce03ad5c102fb0d51c92689 --- /dev/null +++ b/data/summaries/tumblr_s2co0y6tbw1rd9hsl.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +In a TikTok video, the host of the channel “Subway Oracle” interviews a man in a subway. The man is carrying a suitcase, and a backpack stacked on top of it. “Subway Oracle” asks the man where he is going, and the man replies, “home.” “Subway Oracle” then asks him what he has in his bag. The man pulls out a beanie and says that he has had it for four and a half years, and that it’s dirty. The host then asks the man for a condom, and the man obliges. After the host takes a condom, the man pulls out gum, NyQuil, and a Ricola cough drop, which he also offers to “Subway Oracle”. “Subway Oracle” then comments that if he were a woman, he would give himself up to the man. The man then says that he was going to sleep with the host anyway, and slaps him in the face. \ No newline at end of file diff --git a/data/summaries/tumblr_s2cu8meq3t1w6jrbf.txt b/data/summaries/tumblr_s2cu8meq3t1w6jrbf.txt new file mode 100644 index 0000000000000000000000000000000000000000..1699a3b5e5ed5ff98471dd9e6fafc8f9508c573d --- /dev/null +++ b/data/summaries/tumblr_s2cu8meq3t1w6jrbf.txt @@ -0,0 +1 @@ +The video shows a man in a white collared shirt holding a bottle of Perry Ellis 360 Red cologne. He jokingly calls the cologne the "dildo of the fragrance industry" and says he uses it to boost his "raw power type of vibe." He then states that, ultimately, he'd like to have a girlfriend, turn her into a wife, and have great kids.  \ No newline at end of file diff --git a/data/summaries/tumblr_s2dm9o0o1h1w5pr9j.txt b/data/summaries/tumblr_s2dm9o0o1h1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd44822344041891a1218e0eb3775bb5f45ebb11 --- /dev/null +++ b/data/summaries/tumblr_s2dm9o0o1h1w5pr9j.txt @@ -0,0 +1 @@ +The recording features a prominent buzzing sound, potentially indicating the presence of insects or machinery. The sound's intensity varies throughout the recording. diff --git a/data/summaries/tumblr_s2lylwy1qa1z7ukda.txt b/data/summaries/tumblr_s2lylwy1qa1z7ukda.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fb9d0618219bbbe5355c903c97c0c8dffefa6dc --- /dev/null +++ b/data/summaries/tumblr_s2lylwy1qa1z7ukda.txt @@ -0,0 +1 @@ +A white cat is shown meowing in the video. The cat has black and brown fur along the tops of its ears. The cat is shown close up with its mouth wide open. Its fangs can be seen. The cat is also shown sticking its tongue out. \ No newline at end of file diff --git a/data/summaries/tumblr_s2mkythsmv1a970kb.txt b/data/summaries/tumblr_s2mkythsmv1a970kb.txt new file mode 100644 index 0000000000000000000000000000000000000000..34b36c80e293eb8f0fc814cbf47311e233655e38 --- /dev/null +++ b/data/summaries/tumblr_s2mkythsmv1a970kb.txt @@ -0,0 +1 @@ +A man on a street is holding another man’s hand. He tells the man to sing him a song about the moon, which the man does. \ No newline at end of file diff --git a/data/summaries/tumblr_s2pe2uwxq61ylh80v_720.txt b/data/summaries/tumblr_s2pe2uwxq61ylh80v_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce2a10301106a80f6e1afd042038fe270167da9a --- /dev/null +++ b/data/summaries/tumblr_s2pe2uwxq61ylh80v_720.txt @@ -0,0 +1 @@ +A character in a video game succeeds a perception check and identifies a trap on the floor, marked by a glowing red circle. The player character calls out a warning. Another character approaches. \ No newline at end of file diff --git a/data/summaries/tumblr_s2sfrtjsyw1tki7xk.txt b/data/summaries/tumblr_s2sfrtjsyw1tki7xk.txt new file mode 100644 index 0000000000000000000000000000000000000000..13bf4a415813a45ec94615a39b9f82806339898d --- /dev/null +++ b/data/summaries/tumblr_s2sfrtjsyw1tki7xk.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +The video is a TikTok in which a man with tattoos all over his face shows an unpleasant comment he received about his recovery. He begins to respond to it maturely but then reveals that the comment author’s father recently passed away. He then shows himself getting a tattoo of the commenter’s father with The Grim Reaper lurking behind him. The tattoo is captioned “Trouble Maker.” \ No newline at end of file diff --git a/data/summaries/tumblr_s2vv7rs7oy1qa1gsx.txt b/data/summaries/tumblr_s2vv7rs7oy1qa1gsx.txt new file mode 100644 index 0000000000000000000000000000000000000000..97dba4a1fe58782727995c6c47b3fabace06b487 --- /dev/null +++ b/data/summaries/tumblr_s2vv7rs7oy1qa1gsx.txt @@ -0,0 +1 @@ +A stingray is seen swimming in a tank, part of a wall with several other tanks. The tank is transparent, with some water agitation. Other tanks hold horseshoe crabs and other fish. \ No newline at end of file diff --git a/data/summaries/tumblr_s33xdn0jpm1tiu6k1.txt b/data/summaries/tumblr_s33xdn0jpm1tiu6k1.txt new file mode 100644 index 0000000000000000000000000000000000000000..391ae5cd1746d5a5db24e0559ba22ec7b3a03f70 --- /dev/null +++ b/data/summaries/tumblr_s33xdn0jpm1tiu6k1.txt @@ -0,0 +1 @@ +The video shows a collection of handmade clay piggy banks displayed on a counter in an artist's studio. The artist points out the individual piggy banks while saying "Peppy" for each one. The clay piggy banks have a rustic, hand-crafted look. diff --git a/data/summaries/tumblr_s35qu6cgse1yq0dl2.txt b/data/summaries/tumblr_s35qu6cgse1yq0dl2.txt new file mode 100644 index 0000000000000000000000000000000000000000..17ea221e36a499b5251b7d12634cd0be38dc0dfd --- /dev/null +++ b/data/summaries/tumblr_s35qu6cgse1yq0dl2.txt @@ -0,0 +1 @@ +A tabby cat is perched inside the lid of a black trash can, resting its paws on the rim. When surprised by the camera it hisses and pulls back inside. \ No newline at end of file diff --git a/data/summaries/tumblr_s3ag2z5llg1qe2obp.txt b/data/summaries/tumblr_s3ag2z5llg1qe2obp.txt new file mode 100644 index 0000000000000000000000000000000000000000..a40fd11cf27e2c177c5dcc5438fd8a2ee9835f46 --- /dev/null +++ b/data/summaries/tumblr_s3ag2z5llg1qe2obp.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +The first person filming asks "What the f@#% is this thing?" in response to seeing a virtual character that is laying prone on the floor. The character responds, "I'm an anomalocaris." The first person asks "What do you-what do you do?" The character responds "I do my best!" \ No newline at end of file diff --git a/data/summaries/tumblr_s3dmdhyzez1xlgs6y.txt b/data/summaries/tumblr_s3dmdhyzez1xlgs6y.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd471960a4b31a757654a40a55734b95d58cce0f --- /dev/null +++ b/data/summaries/tumblr_s3dmdhyzez1xlgs6y.txt @@ -0,0 +1 @@ +A golden tabby tiger roars. \ No newline at end of file diff --git a/data/summaries/tumblr_s3mb4clkwu1a6j5zl.txt b/data/summaries/tumblr_s3mb4clkwu1a6j5zl.txt new file mode 100644 index 0000000000000000000000000000000000000000..09f9d066dff5fea5ca5936c8926ab69d62077e66 --- /dev/null +++ b/data/summaries/tumblr_s3mb4clkwu1a6j5zl.txt @@ -0,0 +1 @@ +A TikTok video shows a small, black cat trying to scare its owner. The cat jumps from behind a door and then tries to sneak around behind the owner’s legs. The owner pretends to be scared. \ No newline at end of file diff --git a/data/summaries/tumblr_s3un5sbqgh1rd9hsl.txt b/data/summaries/tumblr_s3un5sbqgh1rd9hsl.txt new file mode 100644 index 0000000000000000000000000000000000000000..c547ac69fef1630480e4f4ced4ab1e8b1673b693 --- /dev/null +++ b/data/summaries/tumblr_s3un5sbqgh1rd9hsl.txt @@ -0,0 +1 @@ +An orange cat lying on its side on a scratching post is startled by the sound of a knife being scraped against the cardboard, then cries out when poked with the handle. \ No newline at end of file diff --git a/data/summaries/tumblr_s3wlukobx41sjhdwc.txt b/data/summaries/tumblr_s3wlukobx41sjhdwc.txt new file mode 100644 index 0000000000000000000000000000000000000000..63ffaa136d0504c653a001602c2f05bd9e2db44e --- /dev/null +++ b/data/summaries/tumblr_s3wlukobx41sjhdwc.txt @@ -0,0 +1 @@ +The player in a video game sneaks up on an enemy with a torch and tries to backstab them, but is instead parried and pushed off the edge of the tower, resulting in their death. \ No newline at end of file diff --git a/data/summaries/tumblr_s4cfa4aviy1wjjp2u.txt b/data/summaries/tumblr_s4cfa4aviy1wjjp2u.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c259009dbeaba1c8a04b0d425d9c3b7e9b06c05 --- /dev/null +++ b/data/summaries/tumblr_s4cfa4aviy1wjjp2u.txt @@ -0,0 +1 @@ +The video shows a cat standing on its hind legs, reaching out to grab a sandwich from a small table. The text overlay says "he was FIENDING." \ No newline at end of file diff --git a/data/summaries/tumblr_s4kidk5oi91ush256.txt b/data/summaries/tumblr_s4kidk5oi91ush256.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e45de4f3aca77e4546fbaac21cddb2634758449 --- /dev/null +++ b/data/summaries/tumblr_s4kidk5oi91ush256.txt @@ -0,0 +1 @@ +Jerma sends a message on Thanksgiving wishing the viewers a good holiday. He mentions he almost missed sending this greeting on time. Jerma is thankful for them and had a good Thanksgiving. He hopes everyone ate plenty of turkey, sausage, bacon, and ham. He repeats he is thankful for the viewers, before ending the video by saying "I'll see you soon." \ No newline at end of file diff --git a/data/summaries/tumblr_s4rpwdx4cb1ykp17t_720.txt b/data/summaries/tumblr_s4rpwdx4cb1ykp17t_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8b60c8641551e4e43a2fac2dc9be41981eec131 --- /dev/null +++ b/data/summaries/tumblr_s4rpwdx4cb1ykp17t_720.txt @@ -0,0 +1 @@ +The video shows water spraying up from a hole in a rock formation as waves wash against it. \ No newline at end of file diff --git a/data/summaries/tumblr_s504nwjsye1ziw2k7_720.txt b/data/summaries/tumblr_s504nwjsye1ziw2k7_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bc8888b923fce71475fc4501c80eacef03d8d90 --- /dev/null +++ b/data/summaries/tumblr_s504nwjsye1ziw2k7_720.txt @@ -0,0 +1 @@ +On a grassy field, people are using a custom-made metal rack to line up white lambs lying on their backs. They appear to be vaccinating the animals, one by one. \ No newline at end of file diff --git a/data/summaries/tumblr_s5646eso9h1ziw2k7.txt b/data/summaries/tumblr_s5646eso9h1ziw2k7.txt new file mode 100644 index 0000000000000000000000000000000000000000..98729a0bc4b7e618cf592912e565501d448acdcd --- /dev/null +++ b/data/summaries/tumblr_s5646eso9h1ziw2k7.txt @@ -0,0 +1 @@ +The video shows a streamer who notices that augmented reality has added inappropriate images. He finds the experience unpleasant and removes himself from the screen and out of sight. \ No newline at end of file diff --git a/data/summaries/tumblr_s5bodx4o5b1anwy7r_720.txt b/data/summaries/tumblr_s5bodx4o5b1anwy7r_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e8dab5d0a897df774945e6945efa5dc5b3bd96 --- /dev/null +++ b/data/summaries/tumblr_s5bodx4o5b1anwy7r_720.txt @@ -0,0 +1 @@ +The player in a video game lights a bonfire and Japanese pop music plays. \ No newline at end of file diff --git a/data/summaries/tumblr_s5j2tgzjhd1sic8bl.txt b/data/summaries/tumblr_s5j2tgzjhd1sic8bl.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c634b90c4eadbaaa45fd09797653065580a3f62 --- /dev/null +++ b/data/summaries/tumblr_s5j2tgzjhd1sic8bl.txt @@ -0,0 +1 @@ +A cat is looking through a peephole. The cat is white with black spots, and it meows and sticks its tongue out. The view is distorted due to the lens of the peephole. \ No newline at end of file diff --git a/data/summaries/tumblr_s5llqloh261sskw6c.txt b/data/summaries/tumblr_s5llqloh261sskw6c.txt new file mode 100644 index 0000000000000000000000000000000000000000..f64add1686be21c017791555263e2725d4e2038a --- /dev/null +++ b/data/summaries/tumblr_s5llqloh261sskw6c.txt @@ -0,0 +1 @@ +A young woman with light-brown hair poses for the camera and moves her face in a variety of ways to make humorous expressions. She looks to the side, rolls her eyes, looks up, and makes a smirking face, all while a funky instrumental track plays in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_s5p9pdig6z1a4k8wu.txt b/data/summaries/tumblr_s5p9pdig6z1a4k8wu.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d6031c404b341397827d5c42d5923bb20abced3 --- /dev/null +++ b/data/summaries/tumblr_s5p9pdig6z1a4k8wu.txt @@ -0,0 +1 @@ +Miles, from Spider-Man: Across the Spider-Verse, goes to talk to Gwen. Instead of a conversation, the screen changes to a video game dialogue screen. \ No newline at end of file diff --git a/data/summaries/tumblr_s5qy9jdwpq1xlgs6y.txt b/data/summaries/tumblr_s5qy9jdwpq1xlgs6y.txt new file mode 100644 index 0000000000000000000000000000000000000000..c690535c29e566df54ae08614435ccb8dd2f7355 --- /dev/null +++ b/data/summaries/tumblr_s5qy9jdwpq1xlgs6y.txt @@ -0,0 +1 @@ +A TikTok video depicts a messy kitchen with food packaging and a full trash can. The scene then transitions to a white cat with its head covered in orange powder or sauce. The cat walks across a brown carpet, looking around. \ No newline at end of file diff --git a/data/summaries/tumblr_s66g2dqzma1qejbir.txt b/data/summaries/tumblr_s66g2dqzma1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..95624149c1ec847995b5546be0ce98023d519530 --- /dev/null +++ b/data/summaries/tumblr_s66g2dqzma1qejbir.txt @@ -0,0 +1 @@ +A grey cat on a roof covered in snow tries to get away from the freezing ground. diff --git a/data/summaries/tumblr_s67ox48vij1qejbir.txt b/data/summaries/tumblr_s67ox48vij1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..30b09a9e66decef06210563ab6e743828451bf0b --- /dev/null +++ b/data/summaries/tumblr_s67ox48vij1qejbir.txt @@ -0,0 +1 @@ +In a living room, two cats create a disturbance. One cat jumps from the top of a chair to a cat bed positioned in a window, bothering a brown cat resting there. diff --git a/data/summaries/tumblr_s6lhh2dlea1zkhi0f.txt b/data/summaries/tumblr_s6lhh2dlea1zkhi0f.txt new file mode 100644 index 0000000000000000000000000000000000000000..2407e388872b15f4edec75de1721bc0e4b1ea179 --- /dev/null +++ b/data/summaries/tumblr_s6lhh2dlea1zkhi0f.txt @@ -0,0 +1 @@ +A grey-striped tabby cat stands on its hind legs and uses its front paws to try to remove a childproof lock on a kitchen cabinet. The cat succeeds in removing the lock, and the cabinet door swings open, allowing the cat to enter. \ No newline at end of file diff --git a/data/summaries/tumblr_s6p7z1gmw11yanlki.txt b/data/summaries/tumblr_s6p7z1gmw11yanlki.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f2eeb022dea62cbc0adc1fc80ec81b9cc0c65ff --- /dev/null +++ b/data/summaries/tumblr_s6p7z1gmw11yanlki.txt @@ -0,0 +1 @@ +The game show Family Feud is taking place and a panel of the game board is shown. There are numbers 1 through 6 and the number zero at the top of the display. Two contestants wait behind a divider with Steve Harvey while it is shown. \ No newline at end of file diff --git a/data/summaries/tumblr_s6us53pkxu1rqs4r5.txt b/data/summaries/tumblr_s6us53pkxu1rqs4r5.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd6f19f46a6bb900c7b76b95f650cce251de51e3 --- /dev/null +++ b/data/summaries/tumblr_s6us53pkxu1rqs4r5.txt @@ -0,0 +1 @@ +A man in a work vest dances on a street in a silver, accordion style pipe. The pipe has two openings for the feet and the man’s body fits inside the upper portion of the pipe as he twists and bends his body in the street. In some instances, the shape of the pipe and the dance movements make the pipe look like a large phallus. There is a speaker nearby, and the background includes a building with a restaurant sign, street signs, and cars passing by. \ No newline at end of file diff --git a/data/summaries/tumblr_s74v0x12th1a3m7hi_720.txt b/data/summaries/tumblr_s74v0x12th1a3m7hi_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9b805ca854bb9473481e0d24961ac8022d34eef --- /dev/null +++ b/data/summaries/tumblr_s74v0x12th1a3m7hi_720.txt @@ -0,0 +1 @@ +A YouTube video entitled “I Found a Detroit Warehouse and Played an Insane Set” by Barclay Crenshaw shows a DJ playing electronic music on a mixing board. The video is shot in a dark warehouse, with strobe lights. The video has 34,000 views and 2,000 likes. \ No newline at end of file diff --git a/data/summaries/tumblr_s781ght1bd1wjjp2u.txt b/data/summaries/tumblr_s781ght1bd1wjjp2u.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e514412c649ddd9041bd20cf2176915e565fc5a --- /dev/null +++ b/data/summaries/tumblr_s781ght1bd1wjjp2u.txt @@ -0,0 +1 @@ +A person is making soup, with aromatics such as scallions and garlic being placed into a pot. Then, the video transitions to a clip of a person petting a bed of puppies. The person then picks up a puppy and drops it into the pot. The dog is then seen trying to rescue the puppy from the pot. \ No newline at end of file diff --git a/data/summaries/tumblr_s7f2p6ktml1qa1gsx.txt b/data/summaries/tumblr_s7f2p6ktml1qa1gsx.txt new file mode 100644 index 0000000000000000000000000000000000000000..5aa683b8f73a2fa644c0ec933aca5bbe1fd472ac --- /dev/null +++ b/data/summaries/tumblr_s7f2p6ktml1qa1gsx.txt @@ -0,0 +1 @@ +A tabby kitten sits in someone's lap, gets kissed on the head, then snuggles into their shirt. Electronic music plays in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_s7fy56ckmy1z7uchi.txt b/data/summaries/tumblr_s7fy56ckmy1z7uchi.txt new file mode 100644 index 0000000000000000000000000000000000000000..454285bc1e7162997df2d3f907b36d345bcbdaef --- /dev/null +++ b/data/summaries/tumblr_s7fy56ckmy1z7uchi.txt @@ -0,0 +1 @@ +A fluffy, brown tabby cat is lounging on top of a white duvet cover on a neatly made bed with a blue sheet underneath. The cat meows at the camera and then starts playfully scratching and kicking the duvet cover with its paws. The cat's owner asks the cat if it is messing with the duvet cover. \ No newline at end of file diff --git a/data/summaries/tumblr_s7ozn9ncrx1zfq4a9.txt b/data/summaries/tumblr_s7ozn9ncrx1zfq4a9.txt new file mode 100644 index 0000000000000000000000000000000000000000..47541f2e521705440c7adf62c87611ce61ecb668 --- /dev/null +++ b/data/summaries/tumblr_s7ozn9ncrx1zfq4a9.txt @@ -0,0 +1 @@ +This Minecraft video is an advertisement for Team GRW. The text on the screen states that GRW is recruiting and asks if the viewer is an expert at parkour, PvP, Bedwars, building, or Redstone, or whether the viewer is a novice with the game. The video displays examples of these different game activities. \ No newline at end of file diff --git a/data/summaries/tumblr_s7tmqtomgp1vmobp0.txt b/data/summaries/tumblr_s7tmqtomgp1vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7919eed0a4d2a0cc95538a0bbb6de7a80000ce8 --- /dev/null +++ b/data/summaries/tumblr_s7tmqtomgp1vmobp0.txt @@ -0,0 +1 @@ +A person is shown unraveling a crocheted item on a grey couch. There's text stating they didn't know someone was there. \ No newline at end of file diff --git a/data/summaries/tumblr_s7zfp3npg41vmobp0_720.txt b/data/summaries/tumblr_s7zfp3npg41vmobp0_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..b73e4b522e292aeb437476b0eeca2b21b7697c69 --- /dev/null +++ b/data/summaries/tumblr_s7zfp3npg41vmobp0_720.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +The clip shows someone playing with a white cat's cheeks. The cat has its mouth open and is making an "r" sound, and the text "he's french" is displayed at the bottom of the screen. \ No newline at end of file diff --git a/data/summaries/tumblr_s8564mv19c1x4pmbc.txt b/data/summaries/tumblr_s8564mv19c1x4pmbc.txt new file mode 100644 index 0000000000000000000000000000000000000000..319ace0eabd52a7907fc380f63f511a7df889f70 --- /dev/null +++ b/data/summaries/tumblr_s8564mv19c1x4pmbc.txt @@ -0,0 +1 @@ +A man in a suit and comically large shoes stands amidst the bustle of a street market. The scene captures the vibrant, crowded atmosphere with people passing by, carrying goods on their heads, and engaging in commerce. As the camera pans, it reveals more of the market's activity, including shoppers on motorbikes, vendors selling from stalls, and children capturing the spectacle with their phones. The overall tone is lively, and the juxtaposition of the man's formal attire with the market's chaotic setting creates a humorous contrast. \ No newline at end of file diff --git a/data/summaries/tumblr_s86tvr1x9w1ap2y9o_720.txt b/data/summaries/tumblr_s86tvr1x9w1ap2y9o_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..655294f4d47c3503098837c934001a8ad6afaa06 --- /dev/null +++ b/data/summaries/tumblr_s86tvr1x9w1ap2y9o_720.txt @@ -0,0 +1 @@ +The video shows a black cat sitting in a person's lap while they are listening to the Nyan Cat song on their laptop. The person is apparently a fangirl, and the cat is enjoying the music too. \ No newline at end of file diff --git a/data/summaries/tumblr_s8odyqj51j1sic8bl.txt b/data/summaries/tumblr_s8odyqj51j1sic8bl.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3904fa6fba3af7792b58a85e9df9ac4ad0aff16 --- /dev/null +++ b/data/summaries/tumblr_s8odyqj51j1sic8bl.txt @@ -0,0 +1 @@ +Two orange tabby cats are featured in a brief, humorous TikTok video. One cat, wearing a collar, is shown repeatedly slapping at the image of another orange tabby cat reflected in a mirror. The cat in the mirror appears unfazed by the attacks. diff --git a/data/summaries/tumblr_s96wvmpjyi1yzx85i.txt b/data/summaries/tumblr_s96wvmpjyi1yzx85i.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9563c1bd300bf66f005de4c88f130d13292d686 --- /dev/null +++ b/data/summaries/tumblr_s96wvmpjyi1yzx85i.txt @@ -0,0 +1 @@ +A man attempts to put a harness on a mottled bulldog, but the dog runs away in a dramatic fashion, screaming with each step. \ No newline at end of file diff --git a/data/summaries/tumblr_s9813coagq1wpqb4v.txt b/data/summaries/tumblr_s9813coagq1wpqb4v.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f3c9f279e1f25a9f4a561184245d16c47376e1 --- /dev/null +++ b/data/summaries/tumblr_s9813coagq1wpqb4v.txt @@ -0,0 +1 @@ +A hand holds a yellow string near the edge of a door, dangling it as a playful temptation for a black cat, which swiftly pounces and begins to play with the string on the floor. \ No newline at end of file diff --git a/data/summaries/tumblr_s9orct4uaa1z7uchi.txt b/data/summaries/tumblr_s9orct4uaa1z7uchi.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f8a6d61277f7fbf2fb835df055994c848f81484 --- /dev/null +++ b/data/summaries/tumblr_s9orct4uaa1z7uchi.txt @@ -0,0 +1 @@ +An orange tabby cat reacts to a human pointing a finger at it by twisting around to scratch with its hind legs in a comical fashion. \ No newline at end of file diff --git a/data/summaries/tumblr_s9qtf12ytp1zqsr34_720.txt b/data/summaries/tumblr_s9qtf12ytp1zqsr34_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..2eb6db1a8d74ecbeea178b5902be28eb29f968ce --- /dev/null +++ b/data/summaries/tumblr_s9qtf12ytp1zqsr34_720.txt @@ -0,0 +1 @@ +The video shows an old clip from the first Star Wars movie. The clip includes a scene with Luke and Obi-Wan, but is cut short to include a Cristal beer commercial. This was done to prevent cutting to commercial breaks. \ No newline at end of file diff --git a/data/summaries/tumblr_s9rofeyyoo1api052.txt b/data/summaries/tumblr_s9rofeyyoo1api052.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea61559e83bfe6605661ab7b64c77dac57cd28ab --- /dev/null +++ b/data/summaries/tumblr_s9rofeyyoo1api052.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +A man with a microphone wearing a red do-rag, a blazer and khaki pants asks another man at a subway platform what his best pick-up line is, the man answers with, “look over there” and immediately the train pulls into the station. The man is not impressed and walks away and onto the train. \ No newline at end of file diff --git a/data/summaries/tumblr_s9sa6xfw9g1zohbkd.txt b/data/summaries/tumblr_s9sa6xfw9g1zohbkd.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba9a8c2fc4e6e0dfe42d3d9a99cd89a7cc4dd0c3 --- /dev/null +++ b/data/summaries/tumblr_s9sa6xfw9g1zohbkd.txt @@ -0,0 +1 @@ +The video features a woman, Madison Sinclair, who is telling a joke with a dog used as comedic relief. She starts the joke by saying "so praying mantis walks in the bar and the bartender says 'I'm sorry we don't serve insects.' " This statement is said while she is facing the camera and then the screen cuts to a dog who appears to be squinting his eyes. The rest of the video follows the same pattern, with the dog being a comedic interlude during the joke being told. Eventually, the woman tells the joke and is then holding her dog, saying "Martha you're having a bad dream. It's not real it's okay." At the end of the video, it reads "Directed By: James Cameron." \ No newline at end of file diff --git a/data/summaries/tumblr_sa5vsjcp1a1v7xdh6.txt b/data/summaries/tumblr_sa5vsjcp1a1v7xdh6.txt new file mode 100644 index 0000000000000000000000000000000000000000..af0e70f6b3286a3c88c7d49f85ef9c38e7eeb9e0 --- /dev/null +++ b/data/summaries/tumblr_sa5vsjcp1a1v7xdh6.txt @@ -0,0 +1 @@ +Vegeta is shown shouting with his eyes going white and then performing the "Bring It Around" emote, referencing a Fortnite emote. \ No newline at end of file diff --git a/data/summaries/tumblr_sakae7p0ie1a7lp2h.txt b/data/summaries/tumblr_sakae7p0ie1a7lp2h.txt new file mode 100644 index 0000000000000000000000000000000000000000..c447a80eaea252432191a4ca6af74874ae298d4b --- /dev/null +++ b/data/summaries/tumblr_sakae7p0ie1a7lp2h.txt @@ -0,0 +1 @@ +A cat is jumping toward a desk drawer, pulling it open, and leaping inside. A person then opens a cupboard and finds the cat sitting there. \ No newline at end of file diff --git a/data/summaries/tumblr_sam50zvgby1qijjtj_720.txt b/data/summaries/tumblr_sam50zvgby1qijjtj_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e17ef8fc083b9b7fc6b2d0be83fec5d0b313c24 --- /dev/null +++ b/data/summaries/tumblr_sam50zvgby1qijjtj_720.txt @@ -0,0 +1 @@ +From the cat’s perspective, this TikTok video shows it eating some brown kibble. \ No newline at end of file diff --git a/data/summaries/tumblr_sanbg8usdy1a7lp2h.txt b/data/summaries/tumblr_sanbg8usdy1a7lp2h.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d5c531dc0718dd593ba52a00a1e031a60f3ab3a --- /dev/null +++ b/data/summaries/tumblr_sanbg8usdy1a7lp2h.txt @@ -0,0 +1 @@ +The file shows a trio of cats on a kitchen countertop. The first one is calico, followed by a white cat and a black cat. They stand between the sink and a window, calmly looking around. \ No newline at end of file diff --git a/data/summaries/tumblr_sanw5vgrnw1wz3nj5.txt b/data/summaries/tumblr_sanw5vgrnw1wz3nj5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e363ada81d1baa3c1f5e8d036eff839fae255f59 --- /dev/null +++ b/data/summaries/tumblr_sanw5vgrnw1wz3nj5.txt @@ -0,0 +1 @@ +Here's a summary of the video. The video shows a young woman making funny faces with a string. Then, the video shows an older woman doing the same thing, then stretching out the string to reveal it is connected to lace. The woman laughs. \ No newline at end of file diff --git a/data/summaries/tumblr_sbghtgrttx1rd9hsl.txt b/data/summaries/tumblr_sbghtgrttx1rd9hsl.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b106e156c175edbacc6b58ffbaacba919696024 --- /dev/null +++ b/data/summaries/tumblr_sbghtgrttx1rd9hsl.txt @@ -0,0 +1,3 @@ +Here’s a summary of the file: + +A man is talking about a baby elephant named Shavo, how he knows his name. The baby elephant walks up to the man, and they have a brief interaction. \ No newline at end of file diff --git a/data/summaries/tumblr_sbn13g78ar1u5zg7m.txt b/data/summaries/tumblr_sbn13g78ar1u5zg7m.txt new file mode 100644 index 0000000000000000000000000000000000000000..cadf84b967186636eda37e5844b71ea1a49d1d28 --- /dev/null +++ b/data/summaries/tumblr_sbn13g78ar1u5zg7m.txt @@ -0,0 +1 @@ +This video shows a green moray eel being fed mackerel and capelin in an aquarium. The eel comes to the surface to grab the fish. The video is captioned "Mackerel Day" and "Capelin Day", indicating that the eel is being fed different types of fish. The eel is swimming in a tank with other fish. \ No newline at end of file diff --git a/data/summaries/tumblr_sbrdxcjqvk1uzmmfy.txt b/data/summaries/tumblr_sbrdxcjqvk1uzmmfy.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbf2a8e29dea8e17a2e846e10f9b521cec4fd3bc --- /dev/null +++ b/data/summaries/tumblr_sbrdxcjqvk1uzmmfy.txt @@ -0,0 +1 @@ +A white rat is seen with her litter of baby rats in a glass enclosure with wood shavings as bedding. The mother rat initially stands over a cluster of her babies on a black cloth, then climbs onto the side of the enclosure. She then moves around the enclosure while the litter of pups remains huddled together on the cloth. diff --git a/data/summaries/tumblr_sbsphtzpcs1wz3nj5.txt b/data/summaries/tumblr_sbsphtzpcs1wz3nj5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c96856ce7e20154672f73b7b93e35ad177f5cb7 --- /dev/null +++ b/data/summaries/tumblr_sbsphtzpcs1wz3nj5.txt @@ -0,0 +1 @@ +A compilation of funny cat videos features cats climbing on furniture, trying to get something from a drawer, yawning, and putting their heads in containers. \ No newline at end of file diff --git a/data/summaries/tumblr_sc39bairxa1r5ygmd.txt b/data/summaries/tumblr_sc39bairxa1r5ygmd.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b83c32fe3c9b32765c2f512e7f4da8628a8813a --- /dev/null +++ b/data/summaries/tumblr_sc39bairxa1r5ygmd.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +The video is a short TikTok skit from the user @harald8000 on the topic of meal prepping. A person laying in bed complains about meal prepping being hard, but it's revealed their meal prep is two plastic tubs filled with a can of Monster energy drink, some cigarettes, and a Dorito chip. The video ends with the person walking on a cliff overlooking the ocean holding the meal prepped tubs. \ No newline at end of file diff --git a/data/summaries/tumblr_sc3odbwh9w1xxyguz.txt b/data/summaries/tumblr_sc3odbwh9w1xxyguz.txt new file mode 100644 index 0000000000000000000000000000000000000000..7813c3cc5c2dfa85b9a417f4c50f87f956cade5c --- /dev/null +++ b/data/summaries/tumblr_sc3odbwh9w1xxyguz.txt @@ -0,0 +1 @@ +A red cat jumps out from the side of the ceiling fan onto the camera, filling the screen with red fur, then its face. \ No newline at end of file diff --git a/data/summaries/tumblr_sc9fjwg6sh1rqf6td_720.txt b/data/summaries/tumblr_sc9fjwg6sh1rqf6td_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..c81e9ed6817d27145fc47d765ca9a3c0aac50352 --- /dev/null +++ b/data/summaries/tumblr_sc9fjwg6sh1rqf6td_720.txt @@ -0,0 +1 @@ +A black pig runs towards a large pink ball in a backyard area, playfully bumps into it, briefly falls on its back, and then gets up and nudges the ball again with its snout. \ No newline at end of file diff --git a/data/summaries/tumblr_scedf6cea61rmet4a_720.txt b/data/summaries/tumblr_scedf6cea61rmet4a_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..f090611be3f3d1415b28c60f9be35674c433e996 --- /dev/null +++ b/data/summaries/tumblr_scedf6cea61rmet4a_720.txt @@ -0,0 +1 @@ +A man in a maroon hoodie smashes a car window with a piece of green rebar. The man looks into the camera, saying a lot of people wondered if a piece of rebar found on the side of the road would shatter a car window. He takes the rebar and smashes the window. After breaking the window, he says it can be done, but it might take two shots. \ No newline at end of file diff --git a/data/summaries/tumblr_sd9zzmto5i1vmobp0.txt b/data/summaries/tumblr_sd9zzmto5i1vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..529fab85c59d8703bea41ac07b51e97343faac37 --- /dev/null +++ b/data/summaries/tumblr_sd9zzmto5i1vmobp0.txt @@ -0,0 +1 @@ +At night, on a brightly-lit street, a person in a white hoodie and black pants walks a light-colored dog on a leash. The dog barks and lunges sporadically, causing the person to lose their footing a few times but maintain control of the dog. \ No newline at end of file diff --git a/data/summaries/tumblr_sdc3gd1iwt1sgnr3g_720.txt b/data/summaries/tumblr_sdc3gd1iwt1sgnr3g_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6e0fc398c19570d5c297a9fc0a224d1a113a4d4 --- /dev/null +++ b/data/summaries/tumblr_sdc3gd1iwt1sgnr3g_720.txt @@ -0,0 +1 @@ +The video shows people looking at the Dublin to NYC portal. The image being displayed on the screen of the portal changes and shows different things, including a RIP Pop Smoke message, people in Dublin, and the twin towers under attack on 9/11. People react to the images, with one person screaming when the 9/11 image shows up. The person who posted the video added a caption saying "Passed by the Dublin <> NYC portal today. This is quite literally why we can never have nice things." \ No newline at end of file diff --git a/data/summaries/tumblr_sdenqttafm1uvmvyd_720.txt b/data/summaries/tumblr_sdenqttafm1uvmvyd_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..112c3a8ed0ad2132b863d5ba0418fe3a3d1a2add --- /dev/null +++ b/data/summaries/tumblr_sdenqttafm1uvmvyd_720.txt @@ -0,0 +1 @@ +Someone pours coffee over ice in a cup on a table, with a view of the ocean in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_sdkyheltvd1qa94kp.txt b/data/summaries/tumblr_sdkyheltvd1qa94kp.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b81f51205d79dfd1d63a3fc8662fc57b177e7bb --- /dev/null +++ b/data/summaries/tumblr_sdkyheltvd1qa94kp.txt @@ -0,0 +1 @@ +A black-and-white cat, with its mouth agape, is being fed crunchy treats one by one by a person's hand. The cat is held closely to the chest. diff --git a/data/summaries/tumblr_sdzwy0mmys1z5jfe7.txt b/data/summaries/tumblr_sdzwy0mmys1z5jfe7.txt new file mode 100644 index 0000000000000000000000000000000000000000..aee73738ba13adcb50c4c1714127af5e1da3414d --- /dev/null +++ b/data/summaries/tumblr_sdzwy0mmys1z5jfe7.txt @@ -0,0 +1 @@ +A middle-aged man is outdoors in his driveway, standing in front of his garage, a ladder, and a red, round table. He is reacting to a comment on his video that reads, “It’s on string.” The man juggles two paint-mixing sticks, and then performs various juggling tricks involving a tennis racket, a broom, and his legs. At one point, he’s standing on the table with a very large tennis racket. The man is wearing jeans, a dark hoodie, and Crocs.  \ No newline at end of file diff --git a/data/summaries/tumblr_sfwuavf8ha1w5pr9j.txt b/data/summaries/tumblr_sfwuavf8ha1w5pr9j.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e881c7d6a8867cd60d3592cd9a20b6794eaabe2 --- /dev/null +++ b/data/summaries/tumblr_sfwuavf8ha1w5pr9j.txt @@ -0,0 +1,3 @@ +Sure, here is a summary of the file: + +This video shows a raccoon at a donut shop drive-through. A person in the car recording the video says "Are they going to give him a donut?" She then gets excited when the donut shop employee comes to the window and throws the raccoon a donut. The raccoon catches it and runs off with the donut. \ No newline at end of file diff --git a/data/summaries/tumblr_sh1qcr7cjb1trqggv.txt b/data/summaries/tumblr_sh1qcr7cjb1trqggv.txt new file mode 100644 index 0000000000000000000000000000000000000000..874991c6c388c2a91d86b24f294f71da9affdbd6 --- /dev/null +++ b/data/summaries/tumblr_sh1qcr7cjb1trqggv.txt @@ -0,0 +1 @@ +This video shows a compilation of clips from the video game “The Elder Scrolls IV: Oblivion.” The music playing in the clips is “I'm off that good kush & alcohol” by Future. A twitter post that mentions the game and that song appears at the beginning of the video. diff --git a/data/summaries/tumblr_shec5jdz8y1urgf8d_720.txt b/data/summaries/tumblr_shec5jdz8y1urgf8d_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..47cf57d4fbbbc6a54ebbaeb21869e9ed9b636651 --- /dev/null +++ b/data/summaries/tumblr_shec5jdz8y1urgf8d_720.txt @@ -0,0 +1 @@ +A person dressed as Humpty Dumpty shakes and opens a bottle of liquid foundation, then looks into the camera and smiles. \ No newline at end of file diff --git a/data/summaries/tumblr_shmz6ymp0b1y8aven_720.txt b/data/summaries/tumblr_shmz6ymp0b1y8aven_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..97b702defaeca465e28cf4e93760251e540f6417 --- /dev/null +++ b/data/summaries/tumblr_shmz6ymp0b1y8aven_720.txt @@ -0,0 +1 @@ +The video shows a young boy in overalls and safety goggles assisting an adult who is using a red and black Craftsman drill to mix Nestle Nesquik chocolate powder with milk in a small blue container. The drill is equipped with a spoon attachment. Initially, the adult scoops powder from the Nesquik container using the drill and spoon, then the boy kneels down and holds the drill to mix the powder and milk in the container. \ No newline at end of file diff --git a/data/summaries/tumblr_shwgmx5pew1vmobp0.txt b/data/summaries/tumblr_shwgmx5pew1vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3594c85f0144838f92a28b68b477aa3efb69ae48 --- /dev/null +++ b/data/summaries/tumblr_shwgmx5pew1vmobp0.txt @@ -0,0 +1 @@ +A small orange and white kitten carrying a bowl in its mouth walks across the living room carpet, followed by a black cat that leaps in the air. \ No newline at end of file diff --git a/data/summaries/tumblr_shx8nb9kkb1rsisu2_720.txt b/data/summaries/tumblr_shx8nb9kkb1rsisu2_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ca9318a3290265e919b7aa87eb73de48c417715 --- /dev/null +++ b/data/summaries/tumblr_shx8nb9kkb1rsisu2_720.txt @@ -0,0 +1 @@ +Here's a summary of the file: Two zookeepers stand in front of the enclosure of a walrus. The zookeeper in the blue shirt explains that the walrus eats two kinds of fish, the first is called a Caplin, the second is herring. She feeds the walrus one of those fish. She explains that the zoo staff have designed a tube to demonstrate the walrus' suction power and places a fish in the tube, then puts the tube in front of the walrus, who sucks the fish out. \ No newline at end of file diff --git a/data/summaries/tumblr_shxowi58gb1qc775s.txt b/data/summaries/tumblr_shxowi58gb1qc775s.txt new file mode 100644 index 0000000000000000000000000000000000000000..36a8c5eaec01bfa657efdea219f4884bda9173ad --- /dev/null +++ b/data/summaries/tumblr_shxowi58gb1qc775s.txt @@ -0,0 +1 @@ +A young seal is being hand-fed a fish while floating in blue-tinted water. It makes a strange but cute roaring noise as it grabs the fish and holds on to it in its mouth. Another fish floats in the background. \ No newline at end of file diff --git a/data/summaries/tumblr_si2wq4a2an1rl30t8.txt b/data/summaries/tumblr_si2wq4a2an1rl30t8.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5516fc76abe45856ccbb5109b937c7a0637b460 --- /dev/null +++ b/data/summaries/tumblr_si2wq4a2an1rl30t8.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +A man dressed as a judge in a courtroom setting is giving a speech in front of the camera, when the lower part of the screen glitches and shows an image of a Chihuahua standing on top of stacked burgers. A later glitch reveals a graphic promoting more criminal trials to come. \ No newline at end of file diff --git a/data/summaries/tumblr_siecgnqj0q1ydpti4_r1_72.txt b/data/summaries/tumblr_siecgnqj0q1ydpti4_r1_72.txt new file mode 100644 index 0000000000000000000000000000000000000000..51a07160c9c9498e07bfd37ff269a2b61436c960 --- /dev/null +++ b/data/summaries/tumblr_siecgnqj0q1ydpti4_r1_72.txt @@ -0,0 +1 @@ +Andrew Garfield is sitting on a rocky beach, talking about Spider-Man or woman. He has a camera and is looking around. \ No newline at end of file diff --git a/data/summaries/tumblr_sifk2tuq9i1a83ahu_720.txt b/data/summaries/tumblr_sifk2tuq9i1a83ahu_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..f40e4ace13027f15b13b5bc54f69330ebc494e5b --- /dev/null +++ b/data/summaries/tumblr_sifk2tuq9i1a83ahu_720.txt @@ -0,0 +1 @@ +Kamala Harris gives a commencement speech during which she jokes about how "some day, you will all die," and laughs as she says this. She then tells the crowd, "It's gonna happen. Maybe right now." After saying this, the clip shows a massive explosion. \ No newline at end of file diff --git a/data/summaries/tumblr_simwuepihj1yq0dl2_720.txt b/data/summaries/tumblr_simwuepihj1yq0dl2_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..420dbe1ec093bc5ca777ad669af340f1287629c8 --- /dev/null +++ b/data/summaries/tumblr_simwuepihj1yq0dl2_720.txt @@ -0,0 +1 @@ +A man in a purple shirt and a baseball cap is walking up to a set of bins. He opens the blue bin and looks into the camera, smiling. There is EDM music playing. \ No newline at end of file diff --git a/data/summaries/tumblr_sinb1ryett1zb40j0.txt b/data/summaries/tumblr_sinb1ryett1zb40j0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24b9c86826c993623e1681a4a0cac754cc87d796 --- /dev/null +++ b/data/summaries/tumblr_sinb1ryett1zb40j0.txt @@ -0,0 +1 @@ +A light-blue cube travels through a tunnel-like course. The course walls are labeled with musical notes, and the cube's journey is accompanied by the sound of musical notes being played. The cube turns into a tall column before striking the vertical bars in front of the tunnel walls, and the sound of a child screaming is audible. \ No newline at end of file diff --git a/data/summaries/tumblr_sio3wmehw91y8aven.txt b/data/summaries/tumblr_sio3wmehw91y8aven.txt new file mode 100644 index 0000000000000000000000000000000000000000..b87161c77444de4aeee83f69fa7b09f03e83d08f --- /dev/null +++ b/data/summaries/tumblr_sio3wmehw91y8aven.txt @@ -0,0 +1 @@ +A first person perspective shows a person walking along a crocodile enclosure and poking the crocodiles with a shovel to get them to move into the water. The crocodiles all get into the water, seemingly unharmed. \ No newline at end of file diff --git a/data/summaries/tumblr_sirm24i4jy1yzbs45.txt b/data/summaries/tumblr_sirm24i4jy1yzbs45.txt new file mode 100644 index 0000000000000000000000000000000000000000..17af366bad4792046eecc9c2a463cacbd8a9e9ff --- /dev/null +++ b/data/summaries/tumblr_sirm24i4jy1yzbs45.txt @@ -0,0 +1 @@ +A man spins another man, balancing him horizontally on his shoulders in a move called "helicopter helicopter," while a third person records the scene. This dance is performed on a street with cars parked nearby. diff --git a/data/summaries/tumblr_sj64juhf4t1yzx85i.txt b/data/summaries/tumblr_sj64juhf4t1yzx85i.txt new file mode 100644 index 0000000000000000000000000000000000000000..707c65e1bd0f7bcdb10c852eb21a299bdfdb9d24 --- /dev/null +++ b/data/summaries/tumblr_sj64juhf4t1yzx85i.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +This is a TikTok video that shows the use of a filter that inserts a man in a blue sweater into the background of each scene. The video creator uses this filter to prank her husband, dad, friends, and even random people. diff --git a/data/summaries/tumblr_sj64q4hjok1yzx85i.txt b/data/summaries/tumblr_sj64q4hjok1yzx85i.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b723df4d2869167536927b963c1f4672b3406ef --- /dev/null +++ b/data/summaries/tumblr_sj64q4hjok1yzx85i.txt @@ -0,0 +1 @@ +Three short clips are spliced together. In each clip, a woman walks into a room and pretends to take a phone call to test how nosey her husband is. Her husband shows up at the door immediately after she starts speaking on the phone. \ No newline at end of file diff --git a/data/summaries/tumblr_sj90eoftzy1zqsr34_720.txt b/data/summaries/tumblr_sj90eoftzy1zqsr34_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..88ae04f03493a11585238d65ff9a444f614d436f --- /dev/null +++ b/data/summaries/tumblr_sj90eoftzy1zqsr34_720.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +The file is a screenshot of a tweet by The AI Solopreneur advertising a Chinese company's text-to-video AI, Minimax. The tweet claims that Minimax is like having a Hollywood studio in your pocket and offers ten examples, including how to access the software for free. A short video clip shows Darth Maul and Darth Vader facing off in a desert with red lightsabers in the tweet's visual component. \ No newline at end of file diff --git a/data/summaries/tumblr_sji4ycnwda1wz3nj51.txt b/data/summaries/tumblr_sji4ycnwda1wz3nj51.txt new file mode 100644 index 0000000000000000000000000000000000000000..63fc434c21f2cd626a5a440f51d7879e22157727 --- /dev/null +++ b/data/summaries/tumblr_sji4ycnwda1wz3nj51.txt @@ -0,0 +1 @@ +A woman uses a KitchenAid mixer with a pasta attachment to make pasta noodles. She dries the noodles on a pasta drying rack. A dog peeks over the edge of the counter, apparently interested in the process. \ No newline at end of file diff --git a/data/summaries/tumblr_sjuh1zrokr1sjcnrz.txt b/data/summaries/tumblr_sjuh1zrokr1sjcnrz.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ed1c234d9e3c8a54bc8472fbee8366de47e6208 --- /dev/null +++ b/data/summaries/tumblr_sjuh1zrokr1sjcnrz.txt @@ -0,0 +1 @@ +The video shows a person using a drill with a paint roller attached to it to paint the ceiling. The caption reads "Work smart not hard." \ No newline at end of file diff --git a/data/summaries/tumblr_sjxpenuh7a1zjppxl_720.txt b/data/summaries/tumblr_sjxpenuh7a1zjppxl_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d3d2d63824a00dd00c984c7a5c96c3193e2ff0e --- /dev/null +++ b/data/summaries/tumblr_sjxpenuh7a1zjppxl_720.txt @@ -0,0 +1 @@ +A character from Elden Ring approaches a large turtle in a swamp. The character reads a message left by another player that says "if only I had a dog..." \ No newline at end of file diff --git a/data/summaries/tumblr_sklg9h8jxl1avf4jv.txt b/data/summaries/tumblr_sklg9h8jxl1avf4jv.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4623f86ec4eb1bab8b51c9ebc9f1df5549d3ef9 --- /dev/null +++ b/data/summaries/tumblr_sklg9h8jxl1avf4jv.txt @@ -0,0 +1 @@ +A person is shown holding up a pair of transparent silicone implants, then putting one into their mouth and biting it, making a squishy sound. Another person is shown, who asks what the problem is. \ No newline at end of file diff --git a/data/summaries/tumblr_smxtl1tqpo1r85rfb.txt b/data/summaries/tumblr_smxtl1tqpo1r85rfb.txt new file mode 100644 index 0000000000000000000000000000000000000000..0053f6ef041c6601900d1ffa20f4b0960276ee2c --- /dev/null +++ b/data/summaries/tumblr_smxtl1tqpo1r85rfb.txt @@ -0,0 +1 @@ +A rock band is playing at a venue. The video focuses on the drummer playing and the guitarist singing. The question posed is why sample pads are not allowed anymore. \ No newline at end of file diff --git a/data/summaries/tumblr_snhfuk9ece1a8rzft.txt b/data/summaries/tumblr_snhfuk9ece1a8rzft.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d737b52290b45ee28f66ab51a0672c42b6bf702 --- /dev/null +++ b/data/summaries/tumblr_snhfuk9ece1a8rzft.txt @@ -0,0 +1 @@ +The video shows a cartoon bowling pin walking through a door, finding its bowling pin family in bed, and then its bowling pin father watching TV. Then the bowling pin boy gets pushed down by his father and sees "SPLIT" appear. \ No newline at end of file diff --git a/data/summaries/tumblr_snyan7mwm21sk87qz.txt b/data/summaries/tumblr_snyan7mwm21sk87qz.txt new file mode 100644 index 0000000000000000000000000000000000000000..889475fb2420aeae954b85d43b7beb9affad6e5f --- /dev/null +++ b/data/summaries/tumblr_snyan7mwm21sk87qz.txt @@ -0,0 +1 @@ +An adorable otter held in a person’s hands, appears to yawn widely, showing its pink tongue, before pulling a displeased expression and whimpering. The person gently caresses the otter's cheeks and the otter stares directly into the camera. \ No newline at end of file diff --git a/data/summaries/tumblr_so9gkwgghf1ac5m7s.txt b/data/summaries/tumblr_so9gkwgghf1ac5m7s.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbac6e7ae4e6d7514b7974104212f5bfe3bf4771 --- /dev/null +++ b/data/summaries/tumblr_so9gkwgghf1ac5m7s.txt @@ -0,0 +1 @@ +A person filming a shopping trip is showing artwork from a binder to their dad. The artwork consists of cartoon characters from Spongebob, Sonic, and Among Us, as well as a picture of a hairless cat. The dad seems a bit unamused by the display, but the filmer continues, unfazed. \ No newline at end of file diff --git a/data/summaries/tumblr_spxiuqktsa1ykp17t.txt b/data/summaries/tumblr_spxiuqktsa1ykp17t.txt new file mode 100644 index 0000000000000000000000000000000000000000..c02b686797a86dd3339f108aa591525e3651e8aa --- /dev/null +++ b/data/summaries/tumblr_spxiuqktsa1ykp17t.txt @@ -0,0 +1 @@ +A dachshund is sitting on a bed with a speaker, looking forward as a song by Kendrick Lamar plays. The caption on the video states "Listens to Kendrick Lamar better than he does me." \ No newline at end of file diff --git a/data/summaries/tumblr_sq6rgoimbb1uynlhc.txt b/data/summaries/tumblr_sq6rgoimbb1uynlhc.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ff8bc11a38680d8cbdaa15a946cf82cd60d3d4d --- /dev/null +++ b/data/summaries/tumblr_sq6rgoimbb1uynlhc.txt @@ -0,0 +1,2 @@ +Here's a summary of the file: +A man with a microphone is interviewing a man wearing traditional Saudi Arabian garb. He asks the man which country he's from, and the man responds, "one." The man then tries to guess the interviewee's origin country, asking if he's from Saudi Arabia, the Emirates, Bahrain, or Qatar. He's wrong every time. Finally, the interviewee says he's from Nottingham, England, and that he's learned his fluent Arabic by hanging around with Saudi Arabian students. At the end, the interviewer is shocked and says, "What on earth! Your Arabic is better than mine!" \ No newline at end of file diff --git a/data/summaries/tumblr_sq94v1r8pl1qejbir.txt b/data/summaries/tumblr_sq94v1r8pl1qejbir.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb733bdeab27a89cecdd16a355304c4b471edc93 --- /dev/null +++ b/data/summaries/tumblr_sq94v1r8pl1qejbir.txt @@ -0,0 +1 @@ +The video shows a person holding a small orange tabby cat in their hands. The cat is curled up in a ball, looking around. The cat then starts to clean itself with its hind legs. The person then shows a red bag and gets back to holding the cat again. The cat resumes cleaning. \ No newline at end of file diff --git a/data/summaries/tumblr_sqjyjynlb61vmobp0.txt b/data/summaries/tumblr_sqjyjynlb61vmobp0.txt new file mode 100644 index 0000000000000000000000000000000000000000..db784ac60f4b9a8b35521cb38beabe713a23d464 --- /dev/null +++ b/data/summaries/tumblr_sqjyjynlb61vmobp0.txt @@ -0,0 +1 @@ +A video shows a black cat exploring a new apartment, running, jumping, and briefly climbing on a balcony railing. The video is captioned with the text "pov: you move into a new apartment and your cat is just.... feeling out the space." diff --git a/data/summaries/tumblr_sqkhd7clw61u1sr7e_720.txt b/data/summaries/tumblr_sqkhd7clw61u1sr7e_720.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6ad1562569ac4eb97f2056ac8f8f63e1f39de83 --- /dev/null +++ b/data/summaries/tumblr_sqkhd7clw61u1sr7e_720.txt @@ -0,0 +1,3 @@ +Here's a summary of the file: + +A video of a person watching a Jerma985 stream. A comment points out that both Jerma985 and the anthropomorphic frog in the video are tucking their hair behind their ears at the same time. Jerma985 reacts to this comment by mirroring the frog, tucking his hair behind his ear. diff --git a/data/summaries/tvufz5dw0rjpsg7z.txt b/data/summaries/tvufz5dw0rjpsg7z.txt new file mode 100644 index 0000000000000000000000000000000000000000..d901db995b0c594a4734e70224e21a28ff49d109 --- /dev/null +++ b/data/summaries/tvufz5dw0rjpsg7z.txt @@ -0,0 +1 @@ +The video starts in a hallway. As the videographer walks through the hallway, a white-faced Slender Man is shown in the kitchen. The Slender Man is taking food from the refrigerator and making hot dogs. The videographer then confronts the Slender Man, who hits the videographer twice with a hot dog. The Slender Man then throws potato chips at the videographer. The Slender Man walks out of the shot and down another hallway. \ No newline at end of file diff --git a/data/summaries/u0yi53mnelq2bxct.txt b/data/summaries/u0yi53mnelq2bxct.txt new file mode 100644 index 0000000000000000000000000000000000000000..5da37ff96ab1e05e24ae68f7995e6155143eb1bb --- /dev/null +++ b/data/summaries/u0yi53mnelq2bxct.txt @@ -0,0 +1 @@ +A split-screen video shows a first-person perspective of a Call of Duty game with a person playing a recorder. The player uses a sniper rifle to take out an opponent. The recorder playing continues throughout the game. \ No newline at end of file diff --git a/data/summaries/u61sgsdrmblmoy.txt b/data/summaries/u61sgsdrmblmoy.txt new file mode 100644 index 0000000000000000000000000000000000000000..96d1d2b7b84b071fe4cc1310bb569c9c26abddfc --- /dev/null +++ b/data/summaries/u61sgsdrmblmoy.txt @@ -0,0 +1 @@ +A compilation video featuring a man waving hello and a frog being fed a worm. The worm moves slowly and the frog is placed on different surfaces each time, including what appears to be a bed. The frog is then shown on a pink surface, and as it reaches the worm it begins to open its mouth. \ No newline at end of file diff --git a/data/summaries/u9atm9euatncqz8x.txt b/data/summaries/u9atm9euatncqz8x.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d063ddfab9c0aad23499b4094957bdb756485b9 --- /dev/null +++ b/data/summaries/u9atm9euatncqz8x.txt @@ -0,0 +1 @@ +In a soccer match, a referee in a pink shirt and black shorts issues both a yellow and a red card to two players in a comedic and exaggerated style. The referee appears to playfully dance while handling the cards and interacting with the players. \ No newline at end of file diff --git a/data/summaries/uarlwqafome5rvsy.txt b/data/summaries/uarlwqafome5rvsy.txt new file mode 100644 index 0000000000000000000000000000000000000000..14b762941f2c1dec532a05b0122756799c7bdc4b --- /dev/null +++ b/data/summaries/uarlwqafome5rvsy.txt @@ -0,0 +1 @@ +A clip shows a Scovillain Pokemon running on a wooden platform with a mountain as the background. Two yellow, ball-shaped objects float above the platform. \ No newline at end of file diff --git a/data/summaries/ub48zwha9mglvscf.txt b/data/summaries/ub48zwha9mglvscf.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc16f5f0e4ee9bd4e6e27f08108700ad31bfdd96 --- /dev/null +++ b/data/summaries/ub48zwha9mglvscf.txt @@ -0,0 +1 @@ +Chopped meat and the Queen of England decaying are shown in the video. Someone seasons a piece of meat and grinds spices in a mortar. \ No newline at end of file diff --git a/data/summaries/ubipiysjmtittcub.txt b/data/summaries/ubipiysjmtittcub.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa88353803dc0e19c38af15d9cfb76243b3946d8 --- /dev/null +++ b/data/summaries/ubipiysjmtittcub.txt @@ -0,0 +1 @@ +Two men have an awkward interaction in a supermarket aisle. One man asks another where to find Rice Krispie treats, and the man responds facetiously, assuming the man is asking him based on his large size. The interaction ends with the first man comically rewarding the second. \ No newline at end of file diff --git a/data/summaries/ubks40ejcwx0ltzf.txt b/data/summaries/ubks40ejcwx0ltzf.txt new file mode 100644 index 0000000000000000000000000000000000000000..040eb2181679fba238b82a25ca1f81e6400f2d14 --- /dev/null +++ b/data/summaries/ubks40ejcwx0ltzf.txt @@ -0,0 +1 @@ +A person teases a child by offering chocolate, then pulls their hand back. The child, after realizing the offer was fake, begins to cry. \ No newline at end of file diff --git a/data/summaries/uirkojdhq8grlz66.txt b/data/summaries/uirkojdhq8grlz66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5c25bf64bcb383bd597cee5f45723fd22a7defd --- /dev/null +++ b/data/summaries/uirkojdhq8grlz66.txt @@ -0,0 +1 @@ +The video captures a close-up view of a lar gibbon, also known as a white-handed gibbon, vocalizing with a distinct hooting call. The camera focuses on the gibbon's face as it emits a series of loud, escalating hoots that are characteristic of its species. \ No newline at end of file diff --git a/data/summaries/unknown.txt b/data/summaries/unknown.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa43fc81b35e0e66e21c0728af732ab7f3cf6711 --- /dev/null +++ b/data/summaries/unknown.txt @@ -0,0 +1 @@ +This image displays a meme about the effects of sleep deprivation. With 8 hours of sleep being good, and going down to 1 hour creating a drastic and worsening effect. \ No newline at end of file diff --git a/data/summaries/untitled.txt b/data/summaries/untitled.txt new file mode 100644 index 0000000000000000000000000000000000000000..f97c4bae8208e6458a557689f7bac47840a7e937 --- /dev/null +++ b/data/summaries/untitled.txt @@ -0,0 +1 @@ +The image contains cards from the game "Pretend You're Xyzzy". The black card asks "What do old people smell like?". The white cards include humorous and dark answers such as "Donald J. Trump", "Dying alone and in pain", "England", "Almost giving money to a homeless person", "A bowl of mayonnaise and human teeth", and "Dying". The game seems to be in progress, with a player named "Derpy" winning the round. diff --git a/data/summaries/uucpry6jdxf1bxyy.txt b/data/summaries/uucpry6jdxf1bxyy.txt new file mode 100644 index 0000000000000000000000000000000000000000..93dc1ccb1987c2912bed564050183c342799ce50 --- /dev/null +++ b/data/summaries/uucpry6jdxf1bxyy.txt @@ -0,0 +1 @@ +At a Wawa gas station, the person recording is shocked that the gas prices are so high. Suddenly, he notices someone with a banana and asks for a piece of it. The person with the banana gives him some. \ No newline at end of file diff --git a/data/summaries/v0f044gc0000clad09vog65v4saabt.txt b/data/summaries/v0f044gc0000clad09vog65v4saabt.txt new file mode 100644 index 0000000000000000000000000000000000000000..02bbdd0aface6a5b123bbfc45b85532750273991 --- /dev/null +++ b/data/summaries/v0f044gc0000clad09vog65v4saabt.txt @@ -0,0 +1 @@ +A video shows streamer xQc playing the video game Five Nights at Freddy's: Security Breach. xQc sees an animatronic character and screams in fright. \ No newline at end of file diff --git a/data/summaries/v10044g50000cf92jsbc77u73egs6q.txt b/data/summaries/v10044g50000cf92jsbc77u73egs6q.txt new file mode 100644 index 0000000000000000000000000000000000000000..349f4e21c29c329882e3218bd6557e3cd300068c --- /dev/null +++ b/data/summaries/v10044g50000cf92jsbc77u73egs6q.txt @@ -0,0 +1 @@ +The video shows someone shining a light into a dark, enclosed space, possibly a crawl space or under a building. The light reveals a fat, gray possum sitting motionless and staring directly at the camera. The animal appears unconcerned by the intrusion.  \ No newline at end of file diff --git a/data/summaries/v12044gd0000cc1hfmrc77ud2dqtcs.txt b/data/summaries/v12044gd0000cc1hfmrc77ud2dqtcs.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dcdbae6c7a2c9f83404e8489868e39443a0cad8 --- /dev/null +++ b/data/summaries/v12044gd0000cc1hfmrc77ud2dqtcs.txt @@ -0,0 +1 @@ +Here is a summary of the file: A rat is wrapped in a white towel by a person who is wearing yellow gloves. The person uses both hands to gently grasp the rat around the body and then wrap it in the towel, leaving the nose exposed. \ No newline at end of file diff --git a/data/summaries/v12044gd0000cotrptvog65qirmgnb.txt b/data/summaries/v12044gd0000cotrptvog65qirmgnb.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8a99816c6e430a490b0b2d8ece59a59d4996e31 --- /dev/null +++ b/data/summaries/v12044gd0000cotrptvog65qirmgnb.txt @@ -0,0 +1 @@ +The video shows gameplay from the video game Fallout New Vegas. In the game, the character John Vegas is offered a home in the center of town near the market for 2000 caps by the character Geneva. John Vegas then replies that he doesn't have enough caps. \ No newline at end of file diff --git a/data/summaries/v7lcjujjlkm52a2q.txt b/data/summaries/v7lcjujjlkm52a2q.txt new file mode 100644 index 0000000000000000000000000000000000000000..41bf23762fb9d6502b9747cd323b58552ca0833b --- /dev/null +++ b/data/summaries/v7lcjujjlkm52a2q.txt @@ -0,0 +1 @@ +Two kittens playfully dance and roll on the floor. One kitten is gray, the other is white and gray. The word "movin" is visible on the screen. Upbeat music plays in the background. \ No newline at end of file diff --git a/data/summaries/vid_42990117_003532_950.txt b/data/summaries/vid_42990117_003532_950.txt new file mode 100644 index 0000000000000000000000000000000000000000..d66a2a6f267cf2abfd4bb0dbc20e024cc1f05c9a --- /dev/null +++ b/data/summaries/vid_42990117_003532_950.txt @@ -0,0 +1 @@ +The video shows a gray parrot near a window, repeating the word "suck" and making indistinguishable sounds. The caption, "The things this poor bird has seen," suggests the parrot has learned the offensive language from its environment. \ No newline at end of file diff --git a/data/summaries/vid_50980820_172047_960.txt b/data/summaries/vid_50980820_172047_960.txt new file mode 100644 index 0000000000000000000000000000000000000000..e17ffc36cf8b6e9d1639af2585b16be1b19417c0 --- /dev/null +++ b/data/summaries/vid_50980820_172047_960.txt @@ -0,0 +1 @@ +A frog sitting in the water is offered a turquoise-colored worm-like food. The frog hesitates and asks why it has that color, then lunges at it and eats it, before uttering a sound, and going back under the water. \ No newline at end of file diff --git a/data/summaries/video0.txt b/data/summaries/video0.txt new file mode 100644 index 0000000000000000000000000000000000000000..694fccda4c6d22ba4ef59c361f264cbe94a41011 --- /dev/null +++ b/data/summaries/video0.txt @@ -0,0 +1 @@ +PogChamp saying that Grogg make fire. \ No newline at end of file diff --git a/data/summaries/video1652171674.txt b/data/summaries/video1652171674.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a723ba306de6f63abb5655b406b58d4d9d0ecd8 --- /dev/null +++ b/data/summaries/video1652171674.txt @@ -0,0 +1 @@ +A small black-and-white dog lies on a bed with blue and yellow bedding. The dog is chewing on something and then looks up at the camera. The person filming asks the dog if it peed. The camera pans around to show the floor, which has clothes and other items scattered on it. \ No newline at end of file diff --git a/data/summaries/video8080wwwredditwatch.txt b/data/summaries/video8080wwwredditwatch.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e987cc30f80ca81856b8e9e5ad11a6f9c8ac073 --- /dev/null +++ b/data/summaries/video8080wwwredditwatch.txt @@ -0,0 +1 @@ +Naked individuals are seen on top of a high stone wall. They are hunched over and seem to be defecating. Then one by one, they jump off the wall into the darkness. \ No newline at end of file diff --git a/data/summaries/videoplaybac1k.txt b/data/summaries/videoplaybac1k.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4d1a974cb1346e46cdadaa8cb7eb1f99aea209b --- /dev/null +++ b/data/summaries/videoplaybac1k.txt @@ -0,0 +1 @@ +A scene from a children's show shows a blue house with a porch, which is soon followed by a red bear swearing at a blue mouse. The bear then walks away and is replaced with a yellow bear. \ No newline at end of file diff --git a/data/summaries/videoplayback.txt b/data/summaries/videoplayback.txt new file mode 100644 index 0000000000000000000000000000000000000000..57ed637b2af0eb350bd4393a0d1d67a727aa564d --- /dev/null +++ b/data/summaries/videoplayback.txt @@ -0,0 +1 @@ +A concert stage glows red with bright spotlights on performers. One figure stands on stage, facing the audience, while two figures stand on a raised platform behind them, silhouetted against a large screen. The audience, barely visible, is recording with their phones. \ No newline at end of file diff --git a/data/summaries/vsype_vwowl0wd.txt b/data/summaries/vsype_vwowl0wd.txt new file mode 100644 index 0000000000000000000000000000000000000000..99e2040649e0332b38960bd0ef1a727ebcbb7bd3 --- /dev/null +++ b/data/summaries/vsype_vwowl0wd.txt @@ -0,0 +1 @@ +A teen boy with a cigarette in his mouth poses for the camera and lip-syncs to music. A man can be seen looking in the window behind him, then the boy screams. diff --git a/data/summaries/vyqvemea6drvrxph.txt b/data/summaries/vyqvemea6drvrxph.txt new file mode 100644 index 0000000000000000000000000000000000000000..f785e2948ab28119ad8809e8e3857bd76b7deca3 --- /dev/null +++ b/data/summaries/vyqvemea6drvrxph.txt @@ -0,0 +1 @@ +A man in a tuxedo enters a room shouting "More pricks!" and is promptly hit in the face with what appears to be flour. The man recoils, causing the flour-covered men to disappear, and then he gets hit again. \ No newline at end of file diff --git a/data/summaries/vzribeiplrdtzxh.txt b/data/summaries/vzribeiplrdtzxh.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d123acf22559ab7c97d66a71541057f6b305450 --- /dev/null +++ b/data/summaries/vzribeiplrdtzxh.txt @@ -0,0 +1 @@ +A TikTok video shows a copper pot filled with boiling water on a stovetop. Several small plastic babies are boiling in the water. The video ends with someone adding more water to the pot. The TikTok account name is @longfurbyfam. \ No newline at end of file diff --git a/data/summaries/w4a7s3mbky74eqeu.txt b/data/summaries/w4a7s3mbky74eqeu.txt new file mode 100644 index 0000000000000000000000000000000000000000..062b67883a1854064e1659850e6e618a55d2a0af --- /dev/null +++ b/data/summaries/w4a7s3mbky74eqeu.txt @@ -0,0 +1 @@ +A can of Red Bull is sitting on a round table when the can seemingly sprouts wings and flies around the room. Text on the video says, "Can't even drink red bull in Ohio 💀." \ No newline at end of file diff --git a/data/summaries/w_iimsdt_ziowvjp.txt b/data/summaries/w_iimsdt_ziowvjp.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba38184d218bd5138dd30647129037d8b3f8fb0d --- /dev/null +++ b/data/summaries/w_iimsdt_ziowvjp.txt @@ -0,0 +1 @@ +A man films a Coca-Cola sign, then shows a grandfather clock, which he accidentally breaks. \ No newline at end of file diff --git a/data/summaries/w_siafq3oqdqdn04.txt b/data/summaries/w_siafq3oqdqdn04.txt new file mode 100644 index 0000000000000000000000000000000000000000..5498d7cec0b0b1264bd61754d377ad70e3dc5ccf --- /dev/null +++ b/data/summaries/w_siafq3oqdqdn04.txt @@ -0,0 +1 @@ +At a club, a girl is visibly upset by someone dressed like Michael Jackson dancing and performing in front of her and a group of people. The video caption says that the girl has a phobia of Michael Jackson. \ No newline at end of file diff --git a/data/summaries/wdwwnexzwppomu7i.txt b/data/summaries/wdwwnexzwppomu7i.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ee8a1f916a1003203174feb13be6d24ed310236 --- /dev/null +++ b/data/summaries/wdwwnexzwppomu7i.txt @@ -0,0 +1,3 @@ +Here is a concise summary: + +The video discusses the importance of the Quran in the Islamic faith, comparing it to the Bible in Christianity and the Torah in Judaism. It mentions that the Quran is believed to be the word of God, dictated to the Prophet Muhammad over 23 years, beginning on the 23rd night of the 9th Islamic month. The number 23 holds special significance within Islam. \ No newline at end of file diff --git a/data/summaries/weakestdampweekly_8e8585_10071.txt b/data/summaries/weakestdampweekly_8e8585_10071.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8890b95a7234c5f8531cdf8e3ab5167b0dcfa9d --- /dev/null +++ b/data/summaries/weakestdampweekly_8e8585_10071.txt @@ -0,0 +1 @@ +A black cat stands on its hind legs, meowing and looking out a glass door. It then rolls onto its back and continues to meow. \ No newline at end of file diff --git a/data/summaries/wednesday_d6f4b9_11028578.txt b/data/summaries/wednesday_d6f4b9_11028578.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ffd1ae6da53706dbcc196d009afd57029fb4963 --- /dev/null +++ b/data/summaries/wednesday_d6f4b9_11028578.txt @@ -0,0 +1 @@ +A man is holding a frog and stating that he is not hurting the frog. He points out how the frog has puffed up its body like a balloon, and the frog starts croaking in distress. The man responds to the frog, suggesting that the frog has realized it is captured. The frog makes a distressed sound, and the crew laughs in the background. The man acknowledges the sound and says he doesn't know what that was. \ No newline at end of file diff --git a/data/summaries/whativebidone.txt b/data/summaries/whativebidone.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6a286524a23349264c87ad085fc74b5a253f916 --- /dev/null +++ b/data/summaries/whativebidone.txt @@ -0,0 +1 @@ +Joe Biden walks into a room to give a speech. The video then cuts to the words "Directed by Michael Bay." \ No newline at end of file diff --git a/data/summaries/whenyourmatestartswearingamono.txt b/data/summaries/whenyourmatestartswearingamono.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7456798075f2662a3930f8b2bcd3827991a0462 --- /dev/null +++ b/data/summaries/whenyourmatestartswearingamono.txt @@ -0,0 +1 @@ +A man is approaching another man in a hallway wearing a monocle. The text overlay states, "When your mate starts randomly wearing a monocle:" The man says to the man wearing the monocle, "You better have a good excuse to that little spectacle." \ No newline at end of file diff --git a/data/summaries/whiteguy.txt b/data/summaries/whiteguy.txt new file mode 100644 index 0000000000000000000000000000000000000000..f359769a1b53f8ea0172b6d17859590067839ba2 --- /dev/null +++ b/data/summaries/whiteguy.txt @@ -0,0 +1,2 @@ +Here is a summary of the file: +This video shows a man pretending to act “gangster” and wealthy. He does this with a hat, chain, diamond watch, some cash, and a funny accent. diff --git a/data/summaries/wmt_z2khd1tp6dgg.txt b/data/summaries/wmt_z2khd1tp6dgg.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a281eecfe7c6b45fbd6918a5a7365e8dbbd78ad --- /dev/null +++ b/data/summaries/wmt_z2khd1tp6dgg.txt @@ -0,0 +1 @@ +The video shows a pair of eyeglasses being smashed with a hammer, followed by a pair of supposedly “Turboflex” eyeglasses being positioned to be smashed by a hammer. The video continues with a keyboard being thrown down a flight of stairs, and another keyboard sitting atop a table, followed by a hand tapping the keys. \ No newline at end of file diff --git a/data/summaries/wsu9pgl_ycsyy3f0.txt b/data/summaries/wsu9pgl_ycsyy3f0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca4d8a7fa97215f03f73170fdd0ec49816270d69 --- /dev/null +++ b/data/summaries/wsu9pgl_ycsyy3f0.txt @@ -0,0 +1 @@ +A person is sitting down with a plate of round crackers and ketchup. The person covers their hand in ketchup, and walks over to another person playing video games, asking if they need a napkin, and then puts the ketchup covered hand on their back. The person laying on the bed gets angry and throws the plate towards the camera. \ No newline at end of file diff --git a/data/summaries/x2downloadappdudeturnedintosau.txt b/data/summaries/x2downloadappdudeturnedintosau.txt new file mode 100644 index 0000000000000000000000000000000000000000..25e2fa8fb6172bc784fb344c7b85a79207d00b5b --- /dev/null +++ b/data/summaries/x2downloadappdudeturnedintosau.txt @@ -0,0 +1 @@ +A camera inside of a plane cockpit focuses on a blonde person with headphones. The person appears to be going to sleep as an instrumental song is played. In the background, another person can be seen wearing sunglasses. \ No newline at end of file diff --git a/data/summaries/x2downloadappstarwarscervezacr.txt b/data/summaries/x2downloadappstarwarscervezacr.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e120d541a75ca9ebcdc4a1a9cc1660453a95206 --- /dev/null +++ b/data/summaries/x2downloadappstarwarscervezacr.txt @@ -0,0 +1 @@ +The clip starts with an excerpt from Star Wars, specifically a scene between Luke Skywalker, Darth Vader, and Emperor Palpatine. Palpatine explains that his friends are his weakness. The scene shifts to the Emperor reaching out and using the force to summon a can of “Cerveza Cristal.” \ No newline at end of file diff --git a/data/summaries/x2downloadappthisisthepartwher.txt b/data/summaries/x2downloadappthisisthepartwher.txt new file mode 100644 index 0000000000000000000000000000000000000000..789173c50607b60bca8a7515a0c0916336e1cfc8 --- /dev/null +++ b/data/summaries/x2downloadappthisisthepartwher.txt @@ -0,0 +1 @@ +A character in the video game "The Elder Scrolls IV: Oblivion" is fighting an opponent. After being hit, the character exclaims "This is the part where you fall down and...", before getting interrupted by a door slamming. \ No newline at end of file diff --git a/data/summaries/x2downloadappweneedmoresnow1.txt b/data/summaries/x2downloadappweneedmoresnow1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ff9cc539fb250af0f41a14c304fac361a3f795e --- /dev/null +++ b/data/summaries/x2downloadappweneedmoresnow1.txt @@ -0,0 +1 @@ +The player is traversing a snowy mountain area in the video game Oblivion. One of the game's characters, Honmund, appears and comments on the need for more snow, stating, "Can't have enough snow." Following this, another character, Caenlin, appears and states "Indeed". \ No newline at end of file diff --git a/data/summaries/x3e_bz9d6hkb0ct8.txt b/data/summaries/x3e_bz9d6hkb0ct8.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee476359429e29841117bfe6a6a7239b631387b6 --- /dev/null +++ b/data/summaries/x3e_bz9d6hkb0ct8.txt @@ -0,0 +1,3 @@ +Here is a summary of the file: + +The video contains two clips. In the first clip, a man with blond hair is in front of an open refrigerator, reaching inside to get a drink. A blonde woman walks up and slams the refrigerator door on the back of the man's head. He screams. In the second clip, a man in a striped shirt with a hood is in front of an open refrigerator reaching in to get something, while a redhead is working nearby. As the man has his back turned to the camera, the woman taps a spoon against the top of the refrigerator, startling the man so badly that he falls forward and down to the ground. They both laugh. \ No newline at end of file diff --git a/data/summaries/xj4fdm46nnjvaag.txt b/data/summaries/xj4fdm46nnjvaag.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7eb199ca8ab61d055044c135a537ddc9baa07eb --- /dev/null +++ b/data/summaries/xj4fdm46nnjvaag.txt @@ -0,0 +1 @@ +Three leafhoppers are shown in a split screen. A narrator mentions they are incredible insects, implying the view should watch what they can do. \ No newline at end of file diff --git a/data/summaries/xniu3sdgvbun6dbv.txt b/data/summaries/xniu3sdgvbun6dbv.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b3788f4e726d855f19725938ab9f3c6d1f6444b --- /dev/null +++ b/data/summaries/xniu3sdgvbun6dbv.txt @@ -0,0 +1 @@ +A still image shows a news headline from a purported article titled "New Study Finds Men With Smaller Dicks Make More Money". Beneath the headline is a scene from the TV show "Breaking Bad" with the character Jesse Pinkman standing outside a dilapidated building, looking distressed and asking, "Where's my money, bitch?" The text "Dean Norris" appears at the bottom of the image, possibly in reference to the actor. \ No newline at end of file diff --git a/data/summaries/ykikapnx0vah_hhy.txt b/data/summaries/ykikapnx0vah_hhy.txt new file mode 100644 index 0000000000000000000000000000000000000000..6744855a4ba41014ef3744991104769d22fc7752 --- /dev/null +++ b/data/summaries/ykikapnx0vah_hhy.txt @@ -0,0 +1 @@ +A tortoise moves on a patterned carpet, avoiding the legs of a dog standing nearby. The dog is black and white, and the tortoise is brown and green. The tortoise looks toward the camera. \ No newline at end of file diff --git a/data/summaries/youtube_wlrqjgxd8_608x1080_h26.txt b/data/summaries/youtube_wlrqjgxd8_608x1080_h26.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3c121a124d082f7d90e1f0ae0343c603a4ad3d3 --- /dev/null +++ b/data/summaries/youtube_wlrqjgxd8_608x1080_h26.txt @@ -0,0 +1,2 @@ +Here is a summary of the file: +A TikTok video shows a woman singing the beginning of a song, and then challenges another person to continue it. The second person sings a rap verse that is sexual in nature. At the end, the woman sings the ending of the song. The video is captioned "Nobody's safe from the duet." \ No newline at end of file diff --git a/data/summaries/yqbm1ibqiq6xrxvf.txt b/data/summaries/yqbm1ibqiq6xrxvf.txt new file mode 100644 index 0000000000000000000000000000000000000000..ded40df65a7f33446f5d2ca17f728c72b19fdcca --- /dev/null +++ b/data/summaries/yqbm1ibqiq6xrxvf.txt @@ -0,0 +1 @@ +A man at a car wash is filming a man in a purple polo shirt and patterned shorts, who is pressure washing his car. The filmer expresses confusion, as the other man sprays himself with the pressure washer. \ No newline at end of file diff --git a/data/summaries/yt5scomkirbyenjoysmacaroniwith.txt b/data/summaries/yt5scomkirbyenjoysmacaroniwith.txt new file mode 100644 index 0000000000000000000000000000000000000000..355de4d4dfb59a9554705db92a97fa82d1e60b01 --- /dev/null +++ b/data/summaries/yt5scomkirbyenjoysmacaroniwith.txt @@ -0,0 +1 @@ +A cartoon pink blob with a simple face peaks up over a black line and looks at a plate of fried chicken strips and a bowl of macaroni and cheese. The blob seems excited about the food. \ No newline at end of file diff --git a/data/summaries/yt5scomkirbylemon360p.txt b/data/summaries/yt5scomkirbylemon360p.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c2df8319bfa672f02b0ec6321c8b26b650e428b --- /dev/null +++ b/data/summaries/yt5scomkirbylemon360p.txt @@ -0,0 +1 @@ +A cartoon-like animation of Kirby swallowing a yellow sphere, followed by the sound of chewing and crunching. \ No newline at end of file diff --git a/data/summaries/yt5scommacaroni360p.txt b/data/summaries/yt5scommacaroni360p.txt new file mode 100644 index 0000000000000000000000000000000000000000..100d6b30b265cdd848af6e1921208c1b50364535 --- /dev/null +++ b/data/summaries/yt5scommacaroni360p.txt @@ -0,0 +1 @@ +A short animation depicts a purple cartoon character looking over a brown table. The character is first looking at a bowl of macaroni and cheese. When a second bowl of beans appears beside the macaroni and cheese, the character makes a face, and states "Macaroni with the beans, what the f-". \ No newline at end of file diff --git a/data/summaries/zjwk14phnkl6iudf.txt b/data/summaries/zjwk14phnkl6iudf.txt new file mode 100644 index 0000000000000000000000000000000000000000..af018e084c2426728b7fd74d10880fa01f5bc45a --- /dev/null +++ b/data/summaries/zjwk14phnkl6iudf.txt @@ -0,0 +1 @@ +A man is hysterically laughing at himself for accidentally typing out laughing emoji. He then is seen with a hardhat, not laughing anymore. He goes back to laughing as he's laughing about the mishap again. \ No newline at end of file diff --git a/data/summaries/zozfmexdhd4fnxhg.txt b/data/summaries/zozfmexdhd4fnxhg.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce8fced23c05addcb86346cbc15242bfde60eca0 --- /dev/null +++ b/data/summaries/zozfmexdhd4fnxhg.txt @@ -0,0 +1 @@ +The video asserts that our stomach acids are strong enough to digest most metals. The first portion of the video shows a spoon stirring a grey chunk of metal into a glass of green liquid. The next portion of the video shows an ear of corn still on the stalk. \ No newline at end of file diff --git a/data/summaries/zp4v_kg_4vgplvwp.txt b/data/summaries/zp4v_kg_4vgplvwp.txt new file mode 100644 index 0000000000000000000000000000000000000000..57576eab02468ae6bb7d30ddb5b46b8a97bc4ee4 --- /dev/null +++ b/data/summaries/zp4v_kg_4vgplvwp.txt @@ -0,0 +1 @@ +Joe Biden and Kamala Harris are standing among a crowd of people, clapping their hands and smiling. There is music playing in the background. Many of the attendees are African American. \ No newline at end of file diff --git a/data/summaries/zumzy8e0zyorqpkz.txt b/data/summaries/zumzy8e0zyorqpkz.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1da5e7c15d85176123d688fbb624bd5ef326577 --- /dev/null +++ b/data/summaries/zumzy8e0zyorqpkz.txt @@ -0,0 +1 @@ +A cartoon rat in a suit and fedora is performing a dance while a song plays. The rat is center frame with a dark background. Text at the bottom reads, "this song just hits different at 1am." There are fire emojis to the right of the text. \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index cfc5b09a68217c6eba8d711a8c995c765049d339..c2d0489834bea58459781a5662bb86c718235c9e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,4 @@ -huggingface_hub==0.25.2 \ No newline at end of file +huggingface_hub==0.25.2 +agno==1.1.7 +google-genai==1.3.0 +sentence-transformers==3.4.1 \ No newline at end of file