ai-research-survey

Systematic scan of agentic development research. What's signal, what's noise.
git clone https://git.shiptheloop.com/ai-research-survey.git
Log | Files | Refs

scan-v5.json (26170B)


      1 {
      2   "scan_version": 5,
      3   "paper_type": "empirical",
      4   "paper": {
      5     "title": "Following the Autoregressive Nature of LLM Embeddings via Compression and Alignment",
      6     "authors": [
      7       "Jingcheng Deng",
      8       "Zhongtao Jiang",
      9       "Liang Pang",
     10       "Zihao Wei",
     11       "Liwei Chen",
     12       "Kun Xu",
     13       "Yang Song",
     14       "Huawei Shen",
     15       "Xueqi Cheng"
     16     ],
     17     "year": 2025,
     18     "venue": "Conference on Empirical Methods in Natural Language Processing",
     19     "arxiv_id": "2502.11401",
     20     "doi": "10.48550/arXiv.2502.11401"
     21   },
     22   "checklist": {
     23     "claims_and_evidence": {
     24       "abstract_claims_supported": {
     25         "applies": true,
     26         "answer": true,
     27         "justification": "All abstract claims (compression captures global semantics, distribution alignment achieves alignment/uniformity, outperforms traditional contrastive learning, comparable to SOTA with less data) are directly supported by ablation results in Table 3 and benchmark results in Tables 1–2.",
     28         "source": "haiku"
     29       },
     30       "causal_claims_justified": {
     31         "applies": true,
     32         "answer": true,
     33         "justification": "The paper makes causal claims via ablation studies (Section 4.4) that isolate each component; removing conditional distribution alignment drops performance by 9.17% and removing information compression by 16.99%, supporting the attribution.",
     34         "source": "haiku"
     35       },
     36       "generalization_bounded": {
     37         "applies": true,
     38         "answer": false,
     39         "justification": "The paper broadly claims AutoRegEmbed is 'a highly efficient and scalable solution' and 'outperforms traditional contrastive learning approaches' without bounding this to the specific STS and retrieval tasks evaluated; it does not address other embedding tasks (classification, clustering) that are part of MTEB.",
     40         "source": "haiku"
     41       },
     42       "alternative_explanations_discussed": {
     43         "applies": true,
     44         "answer": false,
     45         "justification": "The paper does not consider whether the improvement stems from the additional information compression pre-training step providing extra compute/data exposure rather than the proposed autoregressive alignment objective itself; no alternative explanations are discussed.",
     46         "source": "haiku"
     47       },
     48       "proxy_outcome_distinction": {
     49         "applies": true,
     50         "answer": true,
     51         "justification": "The paper uses standard embedding quality metrics (Spearman correlation for STS, nDCG@10 for retrieval) that directly measure what is claimed — text embedding similarity quality — without conflating proxies.",
     52         "source": "haiku"
     53       }
     54     },
     55     "limitations_and_scope": {
     56       "limitations_section_present": {
     57         "applies": true,
     58         "answer": true,
     59         "justification": "Section 6 is a dedicated Limitations section, though it focuses on safety/bias concerns rather than methodological or experimental limitations.",
     60         "source": "haiku"
     61       },
     62       "threats_to_validity_specific": {
     63         "applies": true,
     64         "answer": false,
     65         "justification": "The limitations section discusses only potential bias from training data and lack of harmful content filtering; it contains no specific methodological threats such as limited task coverage, single-model family tested, or evaluation on only 10 STS datasets.",
     66         "source": "haiku"
     67       },
     68       "scope_boundaries_stated": {
     69         "applies": true,
     70         "answer": false,
     71         "justification": "The paper does not explicitly state what its results do not show — e.g., that results may not transfer to other MTEB tasks beyond STS and three retrieval benchmarks, or that findings are limited to 7B-scale decoder models.",
     72         "source": "haiku"
     73       }
     74     },
     75     "conflicts_of_interest": {
     76       "funding_disclosed": {
     77         "applies": true,
     78         "answer": true,
     79         "justification": "The Acknowledgments section discloses multiple funding sources: CAS Strategic Priority Research Program (XDB0680302), NSFC (62276248), Xinjiang Key R&D Program, Beijing Nova Program, and Youth Innovation Promotion Association CAS.",
     80         "source": "haiku"
     81       },
     82       "affiliations_disclosed": {
     83         "applies": true,
     84         "answer": true,
     85         "justification": "Author affiliations are stated on the title page: ICT/Chinese Academy of Sciences, University of Chinese Academy of Sciences, and Kuaishou Technology.",
     86         "source": "haiku"
     87       },
     88       "funder_independent_of_outcome": {
     89         "applies": true,
     90         "answer": true,
     91         "justification": "Funders are government and academic agencies (CAS, NSFC, provincial programs) with no direct commercial interest in the specific embedding method's results.",
     92         "source": "haiku"
     93       },
     94       "financial_interests_declared": {
     95         "applies": true,
     96         "answer": false,
     97         "justification": "There is no competing interests statement or declaration of financial interests (patents, equity, consulting) anywhere in the paper.",
     98         "source": "haiku"
     99       }
    100     },
    101     "scope_and_framing": {
    102       "key_terms_defined": {
    103         "applies": true,
    104         "answer": true,
    105         "justification": "Key terms are defined: 'autoregressive nature' is explained via next-token prediction, 'alignment and uniformity' is defined via Wang and Isola (2020), 'information compression' and 'conditional distribution alignment' are formally defined in Section 3.",
    106         "source": "haiku"
    107       },
    108       "intended_contribution_clear": {
    109         "applies": true,
    110         "answer": true,
    111         "justification": "The contribution is explicitly stated: AutoRegEmbed, a new contrastive learning method based on conditional probability distributions that aligns with LLM autoregressive nature, requiring fewer training samples.",
    112         "source": "haiku"
    113       },
    114       "engagement_with_prior_work": {
    115         "applies": true,
    116         "answer": true,
    117         "justification": "Section 2 systematically reviews three categories of prior work (early models, LLMs with fine-tuning, LLMs without fine-tuning) and Section 3 explicitly positions AutoRegEmbed relative to LLM2Vec, Llama2Vec, and contrastive learning conventions.",
    118         "source": "haiku"
    119       }
    120     }
    121   },
    122   "type_checklist": {
    123     "empirical": {
    124       "artifacts": {
    125         "code_released": {
    126           "applies": true,
    127           "answer": true,
    128           "justification": "The paper states 'Our code is available at https://github.com/TrustedLLM/AutoRegEmbed' — this is an actual release, not a promise.",
    129           "source": "haiku"
    130         },
    131         "data_released": {
    132           "applies": true,
    133           "answer": true,
    134           "justification": "All training data used (MEDI, BGE, PWC, MS MARCO) are standard publicly available datasets; no proprietary data is used.",
    135           "source": "haiku"
    136         },
    137         "environment_specified": {
    138           "applies": true,
    139           "answer": false,
    140           "justification": "Appendix A mentions bfloat16, FlashAttention 2, four A100-80G GPUs, and DeepSpeed Zero-2, but no requirements.txt, Dockerfile, or versioned dependency list is provided.",
    141           "source": "haiku"
    142         },
    143         "reproduction_instructions": {
    144           "applies": true,
    145           "answer": false,
    146           "justification": "Appendix A provides hyperparameters and GPU setup but no step-by-step instructions for downloading data, running preprocessing, and executing training commands.",
    147           "source": "haiku"
    148         }
    149       },
    150       "statistical_methodology": {
    151         "confidence_intervals_or_error_bars": {
    152           "applies": true,
    153           "answer": false,
    154           "justification": "All results in Tables 1–7 are single-point estimates with no confidence intervals or error bars reported.",
    155           "source": "haiku"
    156         },
    157         "significance_tests": {
    158           "applies": true,
    159           "answer": false,
    160           "justification": "No statistical significance tests are applied to any comparative claims; differences are reported numerically without tests.",
    161           "source": "haiku"
    162         },
    163         "effect_sizes_reported": {
    164           "applies": true,
    165           "answer": true,
    166           "justification": "Effect sizes are reported as percentage improvements (e.g., 'Conditional Distribution Alignment improves performance by 9.17%, Information Compression contributes a 16.99% improvement') with baseline context.",
    167           "source": "haiku"
    168         },
    169         "sample_size_justified": {
    170           "applies": true,
    171           "answer": false,
    172           "justification": "Training data sizes are stated (50,000 or 274,951 samples) but there is no justification or power analysis for why these quantities are sufficient.",
    173           "source": "haiku"
    174         },
    175         "variance_reported": {
    176           "applies": true,
    177           "answer": false,
    178           "justification": "No standard deviation or variance across runs is reported; all results are single-run point estimates.",
    179           "source": "haiku"
    180         }
    181       },
    182       "evaluation_design": {
    183         "baselines_included": {
    184           "applies": true,
    185           "answer": true,
    186           "justification": "Three categories of baselines are included: no-contrastive-training models (Echo, PromptEOL, MetaEOL, GenEOL), unsupervised contrastive (LLM2Vec), and supervised contrastive (NV-Embed, SFR-Embedding-2_R, gte-Qwen2, LLM2Vec).",
    187           "source": "haiku"
    188         },
    189         "baselines_contemporary": {
    190           "applies": true,
    191           "answer": true,
    192           "justification": "Baselines include 2024 state-of-the-art models (NV-Embed 2024, LLM2Vec 2024, gte-Qwen2 2024, SFR-Embedding-2_R 2024) that represent current SOTA on MTEB.",
    193           "source": "haiku"
    194         },
    195         "ablation_study": {
    196           "applies": true,
    197           "answer": true,
    198           "justification": "Section 4.4 presents ablation removing Conditional Distribution Alignment and Information Compression independently, plus variants of the loss function (Log_sigmoid, KL divergence, JS divergence).",
    199           "source": "haiku"
    200         },
    201         "multiple_metrics": {
    202           "applies": true,
    203           "answer": true,
    204           "justification": "Spearman correlation is used for STS tasks and nDCG@10 for retrieval tasks across 13 datasets total.",
    205           "source": "haiku"
    206         },
    207         "human_evaluation": {
    208           "applies": false,
    209           "answer": false,
    210           "justification": "This is an automated benchmark evaluation of text embedding quality; human evaluation of model outputs is not relevant to this work.",
    211           "source": "haiku"
    212         },
    213         "held_out_test_set": {
    214           "applies": true,
    215           "answer": true,
    216           "justification": "The MTEB STS benchmarks and retrieval datasets (MS MARCO test, NFcorpus, SCIDOCS) are standard held-out evaluation sets not used during training.",
    217           "source": "haiku"
    218         },
    219         "per_category_breakdown": {
    220           "applies": true,
    221           "answer": true,
    222           "justification": "Tables 1–2 provide per-dataset breakdowns across all 10 STS datasets individually and across 3 retrieval datasets, not just aggregate scores.",
    223           "source": "haiku"
    224         },
    225         "failure_cases_discussed": {
    226           "applies": true,
    227           "answer": false,
    228           "justification": "No failure cases are shown or discussed; the paper only presents favorable comparisons and ablations without analyzing where or why AutoRegEmbed underperforms (e.g., NFcorpus and SCIDOCS where it trails gte-Qwen2).",
    229           "source": "haiku"
    230         },
    231         "negative_results_reported": {
    232           "applies": true,
    233           "answer": true,
    234           "justification": "The ablation section reports that KL divergence (79.82) and JS divergence (79.02) variants perform substantially worse than the proposed loss (83.24), and Section E shows that more complex alignment strategies fail to improve over the simple baseline.",
    235           "source": "haiku"
    236         }
    237       },
    238       "setup_transparency": {
    239         "model_versions_specified": {
    240           "applies": true,
    241           "answer": true,
    242           "justification": "Models are identified as LLaMA2-7B and Mistral-v0.1, which are specific versioned releases; LLaMA3-8B is also mentioned for PromptEOL baseline.",
    243           "source": "haiku"
    244         },
    245         "prompts_provided": {
    246           "applies": true,
    247           "answer": true,
    248           "justification": "Appendix D provides the exact instruction prompts used for both retrieval (Inext, Iself) and STS tasks, with the full text of each prompt.",
    249           "source": "haiku"
    250         },
    251         "hyperparameters_reported": {
    252           "applies": true,
    253           "answer": true,
    254           "justification": "Appendix A reports learning rates (2e-5, 5e-6), batch sizes (32), epochs (2, 4), temperature parameters (τ=0.05, β=0.1), max token length (512), and compressed token count (k=5).",
    255           "source": "haiku"
    256         },
    257         "scaffolding_described": {
    258           "applies": false,
    259           "answer": false,
    260           "justification": "There is no agentic scaffolding; this paper trains a text embedding model without LLM agent scaffolding.",
    261           "source": "haiku"
    262         },
    263         "data_preprocessing_documented": {
    264           "applies": true,
    265           "answer": true,
    266           "justification": "The preprocessing is documented: the PWC dataset was deduplicated from 241,564 to 16,382 samples to remove repeated contexts; hard negative mining uses NV-Embed to sample 7 negatives from ranks 30–210.",
    267           "source": "haiku"
    268         }
    269       },
    270       "data_integrity": {
    271         "raw_data_available": {
    272           "applies": true,
    273           "answer": false,
    274           "justification": "The processed training sets (PWC-Unique, NLI subsets) are not separately released; only the original source datasets are publicly available, and the paper's exact preprocessing is only partially documented.",
    275           "source": "haiku"
    276         },
    277         "data_collection_described": {
    278           "applies": true,
    279           "answer": true,
    280           "justification": "Section 4.1 describes which datasets are used for each training stage, their sizes, and the deduplication step applied to PWC; the sources are cited.",
    281           "source": "haiku"
    282         },
    283         "recruitment_methods_described": {
    284           "applies": false,
    285           "answer": false,
    286           "justification": "No human participants; standard benchmark datasets are used.",
    287           "source": "haiku"
    288         },
    289         "data_pipeline_documented": {
    290           "applies": true,
    291           "answer": false,
    292           "justification": "The pipeline mentions deduplication of PWC and hard negative mining with NV-Embed, but does not fully document how the NLI subsets were extracted from MEDI and BGE or provide scripts for the full data preparation pipeline.",
    293           "source": "haiku"
    294         }
    295       },
    296       "contamination": {
    297         "training_cutoff_stated": {
    298           "applies": false,
    299           "answer": false,
    300           "justification": "This paper fine-tunes LLMs for embedding rather than evaluating LLM capabilities on benchmarks; contamination of the LLM pre-training data with STS benchmark sentences is not the relevant evaluation concern here.",
    301           "source": "haiku"
    302         },
    303         "train_test_overlap_discussed": {
    304           "applies": false,
    305           "answer": false,
    306           "justification": "Not applicable; training data is explicitly separate from evaluation benchmarks and the concern is fine-tuning data, not pre-training contamination.",
    307           "source": "haiku"
    308         },
    309         "benchmark_contamination_addressed": {
    310           "applies": false,
    311           "answer": false,
    312           "justification": "Not applicable; the STS and retrieval benchmarks are held-out from fine-tuning, and LLM pre-training contamination is a general concern not addressed by this type of embedding paper.",
    313           "source": "haiku"
    314         }
    315       },
    316       "human_studies": {
    317         "pre_registered": {
    318           "applies": false,
    319           "answer": false,
    320           "justification": "No human participants in this study.",
    321           "source": "haiku"
    322         },
    323         "irb_or_ethics_approval": {
    324           "applies": false,
    325           "answer": false,
    326           "justification": "No human participants.",
    327           "source": "haiku"
    328         },
    329         "demographics_reported": {
    330           "applies": false,
    331           "answer": false,
    332           "justification": "No human participants.",
    333           "source": "haiku"
    334         },
    335         "inclusion_exclusion_criteria": {
    336           "applies": false,
    337           "answer": false,
    338           "justification": "No human participants.",
    339           "source": "haiku"
    340         },
    341         "randomization_described": {
    342           "applies": false,
    343           "answer": false,
    344           "justification": "No human participants.",
    345           "source": "haiku"
    346         },
    347         "blinding_described": {
    348           "applies": false,
    349           "answer": false,
    350           "justification": "No human participants.",
    351           "source": "haiku"
    352         },
    353         "attrition_reported": {
    354           "applies": false,
    355           "answer": false,
    356           "justification": "No human participants.",
    357           "source": "haiku"
    358         }
    359       },
    360       "cost_and_practicality": {
    361         "inference_cost_reported": {
    362           "applies": true,
    363           "answer": false,
    364           "justification": "No inference cost or latency is reported; training times are given (20 min + 1 hour) but not inference speed, which is relevant for practical deployment.",
    365           "source": "haiku"
    366         },
    367         "compute_budget_stated": {
    368           "applies": true,
    369           "answer": true,
    370           "justification": "Appendix A states training on four A100-80G GPUs using DeepSpeed Zero-2, with 20 minutes for information compression and approximately 1 hour for conditional distribution alignment with 50,000 samples.",
    371           "source": "haiku"
    372         }
    373       }
    374     }
    375   },
    376   "claims": [
    377     {
    378       "claim": "AutoRegEmbed outperforms traditional contrastive learning approaches while using the same computational resources.",
    379       "evidence": "Table 1 shows AutoRegEmbed-LLaMA2 at 84.89 avg (10 STS) vs fair baselines using same 50k data at 76.34–81.90; Figure 3 shows consistent superiority at all training sizes.",
    380       "supported": "strong"
    381     },
    382     {
    383       "claim": "With only 66,382 training samples, AutoRegEmbed achieves performance comparable to SOTA models requiring millions of samples.",
    384       "evidence": "Table 1 shows AutoRegEmbed-LLaMA2 at 83.24 vs LLM2Vec-Mistral (supervised) at 84.01 using 544,000 samples; gte-Qwen2 uses ~791M samples. The gap is 0.77 points.",
    385       "supported": "moderate"
    386     },
    387     {
    388       "claim": "Information compression contributes 16.99% performance improvement and conditional distribution alignment contributes 9.17%.",
    389       "evidence": "Table 3 ablation: without CDA drops from 83.24 to 73.90 (9.17% reported), without IC (base model) at 56.91 (16.99% reported).",
    390       "supported": "moderate"
    391     },
    392     {
    393       "claim": "The proposed loss function (Equation 2) outperforms more intuitive alternatives like KL divergence and JS divergence.",
    394       "evidence": "Table 3: Equation 2 achieves 83.24; KL divergence 79.82; JS divergence 79.02; Log_sigmoid 82.93.",
    395       "supported": "strong"
    396     },
    397     {
    398       "claim": "AutoRegEmbed achieves superior learning efficiency, surpassing the maximum performance of other contrastive models with just 15,000 samples.",
    399       "evidence": "Figure 3 shows AutoRegEmbed's learning curve crossing the performance ceiling of baseline contrastive methods at ~15,000 samples.",
    400       "supported": "moderate"
    401     },
    402     {
    403       "claim": "AutoRegEmbed performs competitively on retrieval tasks, outperforming most prior SOTA on MS MARCO.",
    404       "evidence": "Table 2: AutoRegEmbed achieves 42.49 nDCG@10 on MS MARCO vs LLM2Vec-Supervised 41.45, SFR-Embedding 42.18, but below gte-Qwen2 (45.98). Second place on MS MARCO.",
    405       "supported": "moderate"
    406     }
    407   ],
    408   "methodology_tags": [
    409     "benchmark-eval"
    410   ],
    411   "key_findings": "AutoRegEmbed reformulates contrastive learning for LLM embeddings by replacing cosine-based similarity with conditional probability distribution alignment, paired with an information compression pre-training task that forces global semantic capture. On 10 STS benchmarks, it achieves 84.31–85.82 average Spearman correlation using only 66,382 training samples, matching or exceeding supervised SOTA models trained on 544,000–791M samples. Ablation confirms both components are necessary, with information compression accounting for ~17% and distribution alignment for ~9% of the improvement. The method also transfers competitively to retrieval tasks (42.49 nDCG@10 on MS MARCO), though it trails gte-Qwen2 which was trained on far more diverse data.",
    412   "red_flags": [
    413     {
    414       "flag": "No statistical significance testing",
    415       "detail": "All comparative claims are made without significance tests or confidence intervals; small differences (e.g., 0.58 over LLM2Vec) are presented as definitive superiority."
    416     },
    417     {
    418       "flag": "Single-run results, no variance",
    419       "detail": "No standard deviation or multiple experimental runs are reported for any result in Tables 1–7."
    420     },
    421     {
    422       "flag": "Limitations section is boilerplate safety text",
    423       "detail": "Section 6 discusses only bias/harmful content concerns, not methodological scope limitations (e.g., only STS + 3 retrieval datasets, only 7B models, no clustering/classification tasks)."
    424     },
    425     {
    426       "flag": "Retrieval requires additional contrastive fine-tuning",
    427       "detail": "The paper notes 'we perform an additional epoch of contrastive fine-tuning' for retrieval tasks, which partially contradicts the claim that AutoRegEmbed avoids traditional cosine-based contrastive training."
    428     },
    429     {
    430       "flag": "Generalization claims exceed tested scope",
    431       "detail": "Claims of 'highly efficient and scalable solution' are based on only 10 STS and 3 retrieval datasets; MTEB includes ~56 tasks spanning clustering, classification, pair classification, etc., none of which are evaluated."
    432     }
    433   ],
    434   "cited_papers": [
    435     {
    436       "title": "LLM2Vec: Large Language Models Are Secretly Powerful Text Encoders",
    437       "relevance": "Direct baseline for LLM-based text embedding via contrastive learning with bidirectional attention modification"
    438     },
    439     {
    440       "title": "NV-Embed: Improved Techniques for Training LLMs as Generalist Embedding Models",
    441       "relevance": "Key SOTA baseline and source of hard negatives for AutoRegEmbed training"
    442     },
    443     {
    444       "title": "MTEB: Massive Text Embedding Benchmark",
    445       "relevance": "Primary evaluation framework used throughout the paper"
    446     },
    447     {
    448       "title": "Improving Text Embeddings with Large Language Models",
    449       "relevance": "Key prior work on synthetic data for LLM embedding fine-tuning; MEDI dataset source"
    450     },
    451     {
    452       "title": "SimCSE: Simple Contrastive Learning of Sentence Embeddings",
    453       "relevance": "Foundational baseline for contrastive sentence embedding that AutoRegEmbed improves upon"
    454     },
    455     {
    456       "title": "In-Context Autoencoder for Context Compression in a Large Language Model",
    457       "relevance": "Direct inspiration for the information compression task and PWC dataset"
    458     },
    459     {
    460       "title": "Direct Preference Optimization: Your Language Model is Secretly a Reward Model",
    461       "relevance": "Inspiration for the S2 similarity function and temperature coefficient β design"
    462     },
    463     {
    464       "title": "Llama2Vec: Unsupervised Adaptation of Large Language Models for Dense Retrieval",
    465       "relevance": "Most closely related prior work; AutoRegEmbed differs by not using traditional cosine-based contrastive fine-tuning"
    466     },
    467     {
    468       "title": "Scaling Sentence Embeddings with Large Language Models (PromptEOL)",
    469       "relevance": "Baseline prompt-based embedding method without contrastive training"
    470     },
    471     {
    472       "title": "Understanding Contrastive Representation Learning through Alignment and Uniformity on the Hypersphere",
    473       "relevance": "Theoretical foundation for the alignment and uniformity criteria used to evaluate embedding quality"
    474     }
    475   ],
    476   "engagement_factors": {
    477     "practical_relevance": {
    478       "score": 2,
    479       "justification": "Reduces training data requirements for high-quality LLM embeddings by 10–1000x, with released code — directly usable by practitioners building RAG or retrieval systems."
    480     },
    481     "surprise_contrarian": {
    482       "score": 2,
    483       "justification": "Challenges the dominant assumption that contrastive learning (InfoNCE with cosine similarity) is the right objective for LLM embeddings, arguing it fundamentally conflicts with autoregressive pre-training."
    484     },
    485     "fear_safety": {
    486       "score": 0,
    487       "justification": "No AI safety or risk concerns raised; the limitations section mentions bias but this is not the paper's focus."
    488     },
    489     "drama_conflict": {
    490       "score": 0,
    491       "justification": "No controversy or adversarial framing; standard incremental NLP methods paper."
    492     },
    493     "demo_ability": {
    494       "score": 2,
    495       "justification": "Code is publicly released at GitHub and the method can be applied to standard public datasets; someone could reproduce results with access to A100 GPUs."
    496     },
    497     "brand_recognition": {
    498       "score": 1,
    499       "justification": "Chinese Academy of Sciences is well-known in NLP but not a top Western lab; Kuaishou Technology has limited Western recognition."
    500     }
    501   },
    502   "hn_data": {
    503     "threads": [
    504       {
    505         "hn_id": "43311133",
    506         "title": "Natural Language Queries for NoSQL Databases Through Text-to-NoSQL Translation",
    507         "points": 1,
    508         "comments": 0,
    509         "url": "https://news.ycombinator.com/item?id=43311133"
    510       }
    511     ],
    512     "top_points": 1,
    513     "total_points": 1,
    514     "total_comments": 0
    515   }
    516 }

Impressum · Datenschutz